Skip to content

Commit

Permalink
javadoc
Browse files Browse the repository at this point in the history
  • Loading branch information
stephengold committed May 15, 2024
1 parent b018a4b commit b258f82
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions src/main/java/com/jme3/bullet/CollisionConfiguration.java
Original file line number Diff line number Diff line change
Expand Up @@ -82,8 +82,8 @@ public CollisionConfiguration(
// new methods exposed

/**
* Return the size of the persistent-manifold pool (native field:
* m_defaultMaxPersistentManifoldPoolSize).
* Return the size of the persistent-manifold pool. (native field:
* m_defaultMaxPersistentManifoldPoolSize)
*
* @return the count (>0)
*/
Expand All @@ -94,8 +94,8 @@ public int maxManifolds() {
}

/**
* Return which penetration-depth solver is used (native field:
* m_useEpaPenetrationAlgorithm).
* Return which penetration-depth solver is used. (native field:
* m_useEpaPenetrationAlgorithm)
*
* @return 0 for {@code btMinkowskiPenetrationDepthSolver} or 1 for
* {@code btGjkEpaPenetrationDepthSolver}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -290,7 +290,7 @@ public int collisionFlags() {
/**
* Copy common properties from another collision object.
*
* @param old (not null, unaffected)
* @param old the instance to copy from (not null, unaffected)
*/
final public void copyPcoProperties(PhysicsCollisionObject old) {
assert old.hasAssignedNativeObject();
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/jme3/bullet/util/DebugShapeFactory.java
Original file line number Diff line number Diff line change
Expand Up @@ -370,7 +370,7 @@ private static FloatBuffer createCompoundVertices(
* specified PlaneCollisionShape.
*
* @param shape (not null, unaffected) units, >0)
* @return a new Transform with scale=1
* @return a new Transform with scale=(1,1,1)
*/
private static Transform planeTransform(PlaneCollisionShape shape) {
Transform result = new Transform();
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/vhacd/VHACDParameters.java
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ public ACDMode getACDMode() {
}

/**
* Return the bias toward clipping along symmetry planes (native field:
* Return the bias toward clipping along symmetry planes. (native field:
* m_alpha).
*
* @return alpha (≥0, ≤1)
Expand Down

0 comments on commit b258f82

Please sign in to comment.