Added a proper toString() to CollisionResult.
git-svn-id: https://jmonkeyengine.googlecode.com/svn/trunk@10790 75d07b2b-3a1a-0410-a2c5-0572b91ccdca
This commit is contained in:
parent
0ee9f53c27
commit
d70174d91a
@ -38,9 +38,9 @@ import com.jme3.scene.Mesh;
|
||||
|
||||
/**
|
||||
* A <code>CollisionResult</code> represents a single collision instance
|
||||
* between two {@link Collidable}. A collision check can result in many
|
||||
* between two {@link Collidable}. A collision check can result in many
|
||||
* collision instances (places where collision has occured).
|
||||
*
|
||||
*
|
||||
* @author Kirill Vainer
|
||||
*/
|
||||
public class CollisionResult implements Comparable<CollisionResult> {
|
||||
@ -108,7 +108,7 @@ public class CollisionResult implements Comparable<CollisionResult> {
|
||||
}
|
||||
return super.equals(obj);
|
||||
}
|
||||
|
||||
|
||||
public Vector3f getContactPoint() {
|
||||
return contactPoint;
|
||||
}
|
||||
@ -129,4 +129,12 @@ public class CollisionResult implements Comparable<CollisionResult> {
|
||||
return triangleIndex;
|
||||
}
|
||||
|
||||
public String toString() {
|
||||
return "CollisionResult[geometry=" + geometry
|
||||
+ ", contactPoint=" + contactPoint
|
||||
+ ", contactNormal=" + contactNormal
|
||||
+ ", distance=" + distance
|
||||
+ ", triangleIndex=" + triangleIndex
|
||||
+ "]";
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user