2011-05-03 14:27:00 +00:00
|
|
|
/*
|
2018-09-16 19:59:45 -07:00
|
|
|
* Copyright (c) 2009-2018 jMonkeyEngine
|
2011-05-03 14:27:00 +00:00
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions are
|
|
|
|
* met:
|
|
|
|
*
|
|
|
|
* * Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
*
|
|
|
|
* * Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
*
|
|
|
|
* * Neither the name of 'jMonkeyEngine' nor the names of its contributors
|
|
|
|
* may be used to endorse or promote products derived from this software
|
|
|
|
* without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
|
|
|
|
* TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
|
|
|
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
|
|
|
|
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
|
|
|
|
* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
|
|
|
|
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
|
|
|
|
* PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
|
|
|
|
* LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
|
|
|
|
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
|
|
|
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
package com.jme3.bullet.collision;
|
|
|
|
|
|
|
|
import com.jme3.math.Vector3f;
|
|
|
|
import com.jme3.scene.Spatial;
|
|
|
|
import java.util.EventObject;
|
|
|
|
|
|
|
|
/**
|
2018-09-16 19:59:45 -07:00
|
|
|
* An event that describes a collision in the physics world.
|
|
|
|
* <p>
|
|
|
|
* Do not retain this object, as it will be reused after the collision() method
|
|
|
|
* returns. Copy any data you need during the collide() method.
|
|
|
|
*
|
2011-05-03 14:27:00 +00:00
|
|
|
* @author normenhansen
|
|
|
|
*/
|
|
|
|
public class PhysicsCollisionEvent extends EventObject {
|
|
|
|
|
2018-09-16 19:59:45 -07:00
|
|
|
/**
|
|
|
|
* type value to indicate a new event
|
|
|
|
*/
|
2011-05-03 14:27:00 +00:00
|
|
|
public static final int TYPE_ADDED = 0;
|
2018-09-16 19:59:45 -07:00
|
|
|
/**
|
|
|
|
* type value to indicate an event that has been added to a PhysicsSpace
|
|
|
|
* queue
|
|
|
|
*/
|
2011-05-03 14:27:00 +00:00
|
|
|
public static final int TYPE_PROCESSED = 1;
|
2018-09-16 19:59:45 -07:00
|
|
|
/**
|
|
|
|
* type value to indicate a cleaned/destroyed event
|
|
|
|
*/
|
2011-05-03 14:27:00 +00:00
|
|
|
public static final int TYPE_DESTROYED = 2;
|
2018-09-16 19:59:45 -07:00
|
|
|
/**
|
|
|
|
* type value that indicates the event's status
|
|
|
|
*/
|
2011-05-03 14:27:00 +00:00
|
|
|
private int type;
|
2018-09-16 19:59:45 -07:00
|
|
|
/**
|
|
|
|
* 1st involved object
|
|
|
|
*/
|
2011-05-03 14:27:00 +00:00
|
|
|
private PhysicsCollisionObject nodeA;
|
2018-09-16 19:59:45 -07:00
|
|
|
/**
|
|
|
|
* 2nd involved object
|
|
|
|
*/
|
2011-05-03 14:27:00 +00:00
|
|
|
private PhysicsCollisionObject nodeB;
|
2018-09-16 19:59:45 -07:00
|
|
|
/**
|
|
|
|
* Bullet identifier of the btManifoldPoint
|
|
|
|
*/
|
2011-10-15 14:27:28 +00:00
|
|
|
private long manifoldPointObjectId = 0;
|
2011-05-03 14:27:00 +00:00
|
|
|
|
2018-09-16 19:59:45 -07:00
|
|
|
/**
|
|
|
|
* Instantiate a collision event.
|
|
|
|
*
|
|
|
|
* @param type event type (0=added/1=processed/2=destroyed)
|
|
|
|
* @param nodeA 1st involved object (alias created)
|
|
|
|
* @param nodeB 2nd involved object (alias created)
|
|
|
|
* @param manifoldPointObjectId Bullet identifier of the btManifoldPoint
|
|
|
|
*/
|
2011-10-15 14:27:28 +00:00
|
|
|
public PhysicsCollisionEvent(int type, PhysicsCollisionObject nodeA, PhysicsCollisionObject nodeB, long manifoldPointObjectId) {
|
2011-05-03 14:27:00 +00:00
|
|
|
super(nodeA);
|
2012-04-02 20:03:54 +00:00
|
|
|
this.type = type;
|
|
|
|
this.nodeA = nodeA;
|
|
|
|
this.nodeB = nodeB;
|
2011-10-15 14:27:28 +00:00
|
|
|
this.manifoldPointObjectId = manifoldPointObjectId;
|
2011-05-03 14:27:00 +00:00
|
|
|
}
|
2018-09-16 19:59:45 -07:00
|
|
|
|
2011-05-03 14:27:00 +00:00
|
|
|
/**
|
2018-09-16 19:59:45 -07:00
|
|
|
* Destroy this event.
|
2011-05-03 14:27:00 +00:00
|
|
|
*/
|
|
|
|
public void clean() {
|
|
|
|
source = null;
|
|
|
|
this.type = 0;
|
|
|
|
this.nodeA = null;
|
|
|
|
this.nodeB = null;
|
2011-10-15 14:27:28 +00:00
|
|
|
this.manifoldPointObjectId = 0;
|
2011-05-03 14:27:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2018-09-16 19:59:45 -07:00
|
|
|
* Reuse this event.
|
|
|
|
*
|
|
|
|
* @param type event type (added/processed/destroyed)
|
|
|
|
* @param source 1st involved object (alias created)
|
|
|
|
* @param nodeB 2nd involved object (alias created)
|
|
|
|
* @param manifoldPointObjectId Bullet identifier
|
2011-05-03 14:27:00 +00:00
|
|
|
*/
|
2011-10-15 14:27:28 +00:00
|
|
|
public void refactor(int type, PhysicsCollisionObject source, PhysicsCollisionObject nodeB, long manifoldPointObjectId) {
|
2011-05-03 14:27:00 +00:00
|
|
|
this.source = source;
|
|
|
|
this.type = type;
|
|
|
|
this.nodeA = source;
|
|
|
|
this.nodeB = nodeB;
|
2011-10-15 14:27:28 +00:00
|
|
|
this.manifoldPointObjectId = manifoldPointObjectId;
|
2011-05-03 14:27:00 +00:00
|
|
|
}
|
|
|
|
|
2018-09-16 19:59:45 -07:00
|
|
|
/**
|
|
|
|
* Read the type of event.
|
|
|
|
*
|
|
|
|
* @return added/processed/destroyed
|
|
|
|
*/
|
2011-05-03 14:27:00 +00:00
|
|
|
public int getType() {
|
|
|
|
return type;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2018-09-16 19:59:45 -07:00
|
|
|
* Access the user object of collision object A, provided it's a Spatial.
|
|
|
|
*
|
|
|
|
* @return the pre-existing Spatial, or null if none
|
2011-05-03 14:27:00 +00:00
|
|
|
*/
|
|
|
|
public Spatial getNodeA() {
|
|
|
|
if (nodeA.getUserObject() instanceof Spatial) {
|
|
|
|
return (Spatial) nodeA.getUserObject();
|
|
|
|
}
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2018-09-16 19:59:45 -07:00
|
|
|
* Access the user object of collision object B, provided it's a Spatial.
|
|
|
|
*
|
|
|
|
* @return the pre-existing Spatial, or null if none
|
2011-05-03 14:27:00 +00:00
|
|
|
*/
|
|
|
|
public Spatial getNodeB() {
|
|
|
|
if (nodeB.getUserObject() instanceof Spatial) {
|
|
|
|
return (Spatial) nodeB.getUserObject();
|
|
|
|
}
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
2018-09-16 19:59:45 -07:00
|
|
|
/**
|
|
|
|
* Access collision object A.
|
|
|
|
*
|
|
|
|
* @return the pre-existing object (not null)
|
|
|
|
*/
|
2011-05-03 14:27:00 +00:00
|
|
|
public PhysicsCollisionObject getObjectA() {
|
|
|
|
return nodeA;
|
|
|
|
}
|
|
|
|
|
2018-09-16 19:59:45 -07:00
|
|
|
/**
|
|
|
|
* Access collision object B.
|
|
|
|
*
|
|
|
|
* @return the pre-existing object (not null)
|
|
|
|
*/
|
2011-05-03 14:27:00 +00:00
|
|
|
public PhysicsCollisionObject getObjectB() {
|
|
|
|
return nodeB;
|
|
|
|
}
|
|
|
|
|
2018-09-16 19:59:45 -07:00
|
|
|
/**
|
|
|
|
* Read the collision's applied impulse.
|
|
|
|
*
|
|
|
|
* @return impulse
|
|
|
|
*/
|
2011-05-03 14:27:00 +00:00
|
|
|
public float getAppliedImpulse() {
|
2011-10-15 14:27:28 +00:00
|
|
|
return getAppliedImpulse(manifoldPointObjectId);
|
2011-05-03 14:27:00 +00:00
|
|
|
}
|
2011-10-15 14:27:28 +00:00
|
|
|
private native float getAppliedImpulse(long manifoldPointObjectId);
|
2011-05-03 14:27:00 +00:00
|
|
|
|
2018-09-16 19:59:45 -07:00
|
|
|
/**
|
|
|
|
* Read the collision's applied lateral impulse #1.
|
|
|
|
*
|
|
|
|
* @return impulse
|
|
|
|
*/
|
2011-05-03 14:27:00 +00:00
|
|
|
public float getAppliedImpulseLateral1() {
|
2011-10-15 14:27:28 +00:00
|
|
|
return getAppliedImpulseLateral1(manifoldPointObjectId);
|
2011-05-03 14:27:00 +00:00
|
|
|
}
|
2011-10-15 14:27:28 +00:00
|
|
|
private native float getAppliedImpulseLateral1(long manifoldPointObjectId);
|
2011-05-03 14:27:00 +00:00
|
|
|
|
2018-09-16 19:59:45 -07:00
|
|
|
/**
|
|
|
|
* Read the collision's applied lateral impulse #2.
|
|
|
|
*
|
|
|
|
* @return impulse
|
|
|
|
*/
|
2011-05-03 14:27:00 +00:00
|
|
|
public float getAppliedImpulseLateral2() {
|
2011-10-15 14:27:28 +00:00
|
|
|
return getAppliedImpulseLateral2(manifoldPointObjectId);
|
2011-05-03 14:27:00 +00:00
|
|
|
}
|
2011-10-15 14:27:28 +00:00
|
|
|
private native float getAppliedImpulseLateral2(long manifoldPointObjectId);
|
2011-05-03 14:27:00 +00:00
|
|
|
|
2018-09-16 19:59:45 -07:00
|
|
|
/**
|
|
|
|
* Read the collision's combined friction.
|
|
|
|
*
|
|
|
|
* @return friction
|
|
|
|
*/
|
2011-05-03 14:27:00 +00:00
|
|
|
public float getCombinedFriction() {
|
2011-10-15 14:27:28 +00:00
|
|
|
return getCombinedFriction(manifoldPointObjectId);
|
2011-05-03 14:27:00 +00:00
|
|
|
}
|
2011-10-15 14:27:28 +00:00
|
|
|
private native float getCombinedFriction(long manifoldPointObjectId);
|
2011-05-03 14:27:00 +00:00
|
|
|
|
2018-09-16 19:59:45 -07:00
|
|
|
/**
|
|
|
|
* Read the collision's combined restitution.
|
|
|
|
*
|
|
|
|
* @return restitution
|
|
|
|
*/
|
2011-05-03 14:27:00 +00:00
|
|
|
public float getCombinedRestitution() {
|
2011-10-15 14:27:28 +00:00
|
|
|
return getCombinedRestitution(manifoldPointObjectId);
|
2011-05-03 14:27:00 +00:00
|
|
|
}
|
2011-10-15 14:27:28 +00:00
|
|
|
private native float getCombinedRestitution(long manifoldPointObjectId);
|
2011-05-03 14:27:00 +00:00
|
|
|
|
2018-09-16 19:59:45 -07:00
|
|
|
/**
|
|
|
|
* Read the collision's distance #1.
|
|
|
|
*
|
|
|
|
* @return distance
|
|
|
|
*/
|
2011-05-03 14:27:00 +00:00
|
|
|
public float getDistance1() {
|
2011-10-15 14:27:28 +00:00
|
|
|
return getDistance1(manifoldPointObjectId);
|
2011-05-03 14:27:00 +00:00
|
|
|
}
|
2011-10-15 14:27:28 +00:00
|
|
|
private native float getDistance1(long manifoldPointObjectId);
|
2011-05-03 14:27:00 +00:00
|
|
|
|
2018-09-16 19:59:45 -07:00
|
|
|
/**
|
|
|
|
* Read the collision's index 0.
|
|
|
|
*
|
|
|
|
* @return index
|
|
|
|
*/
|
2011-05-03 14:27:00 +00:00
|
|
|
public int getIndex0() {
|
2011-10-15 14:27:28 +00:00
|
|
|
return getIndex0(manifoldPointObjectId);
|
2011-05-03 14:27:00 +00:00
|
|
|
}
|
2011-10-15 14:27:28 +00:00
|
|
|
private native int getIndex0(long manifoldPointObjectId);
|
2011-05-03 14:27:00 +00:00
|
|
|
|
2018-09-16 19:59:45 -07:00
|
|
|
/**
|
|
|
|
* Read the collision's index 1.
|
|
|
|
*
|
|
|
|
* @return index
|
|
|
|
*/
|
2011-05-03 14:27:00 +00:00
|
|
|
public int getIndex1() {
|
2011-10-15 14:27:28 +00:00
|
|
|
return getIndex1(manifoldPointObjectId);
|
2011-05-03 14:27:00 +00:00
|
|
|
}
|
2011-10-15 14:27:28 +00:00
|
|
|
private native int getIndex1(long manifoldPointObjectId);
|
2011-05-03 14:27:00 +00:00
|
|
|
|
2018-09-16 19:59:45 -07:00
|
|
|
/**
|
|
|
|
* Copy the collision's lateral friction direction #1.
|
|
|
|
*
|
|
|
|
* @return a new vector (not null)
|
|
|
|
*/
|
2011-10-15 21:30:42 +00:00
|
|
|
public Vector3f getLateralFrictionDir1() {
|
|
|
|
return getLateralFrictionDir1(new Vector3f());
|
|
|
|
}
|
|
|
|
|
2018-09-16 19:59:45 -07:00
|
|
|
/**
|
|
|
|
* Copy the collision's lateral friction direction #1.
|
|
|
|
*
|
|
|
|
* @param lateralFrictionDir1 storage for the result (not null, modified)
|
|
|
|
* @return direction vector (not null)
|
|
|
|
*/
|
2011-10-15 14:27:28 +00:00
|
|
|
public Vector3f getLateralFrictionDir1(Vector3f lateralFrictionDir1) {
|
|
|
|
getLateralFrictionDir1(manifoldPointObjectId, lateralFrictionDir1);
|
2011-05-03 14:27:00 +00:00
|
|
|
return lateralFrictionDir1;
|
|
|
|
}
|
2011-10-15 14:27:28 +00:00
|
|
|
private native void getLateralFrictionDir1(long manifoldPointObjectId, Vector3f lateralFrictionDir1);
|
2011-05-03 14:27:00 +00:00
|
|
|
|
2018-09-16 19:59:45 -07:00
|
|
|
/**
|
|
|
|
* Copy the collision's lateral friction direction #2.
|
|
|
|
*
|
|
|
|
* @return a new vector
|
|
|
|
*/
|
2011-10-15 21:30:42 +00:00
|
|
|
public Vector3f getLateralFrictionDir2() {
|
|
|
|
return getLateralFrictionDir2(new Vector3f());
|
|
|
|
}
|
|
|
|
|
2018-09-16 19:59:45 -07:00
|
|
|
/**
|
|
|
|
* Copy the collision's lateral friction direction #2.
|
|
|
|
*
|
|
|
|
* @param lateralFrictionDir2 storage for the result (not null, modified)
|
|
|
|
* @return direction vector (not null)
|
|
|
|
*/
|
2011-10-15 14:27:28 +00:00
|
|
|
public Vector3f getLateralFrictionDir2(Vector3f lateralFrictionDir2) {
|
|
|
|
getLateralFrictionDir2(manifoldPointObjectId, lateralFrictionDir2);
|
2011-05-03 14:27:00 +00:00
|
|
|
return lateralFrictionDir2;
|
|
|
|
}
|
2011-10-15 14:27:28 +00:00
|
|
|
private native void getLateralFrictionDir2(long manifoldPointObjectId, Vector3f lateralFrictionDir2);
|
2011-05-03 14:27:00 +00:00
|
|
|
|
2018-09-16 19:59:45 -07:00
|
|
|
/**
|
|
|
|
* Test whether the collision's lateral friction is initialized.
|
|
|
|
*
|
|
|
|
* @return true if initialized, otherwise false
|
|
|
|
*/
|
2011-05-03 14:27:00 +00:00
|
|
|
public boolean isLateralFrictionInitialized() {
|
2011-10-15 14:27:28 +00:00
|
|
|
return isLateralFrictionInitialized(manifoldPointObjectId);
|
2011-05-03 14:27:00 +00:00
|
|
|
}
|
2011-10-15 14:27:28 +00:00
|
|
|
private native boolean isLateralFrictionInitialized(long manifoldPointObjectId);
|
2011-05-03 14:27:00 +00:00
|
|
|
|
2018-09-16 19:59:45 -07:00
|
|
|
/**
|
|
|
|
* Read the collision's lifetime.
|
|
|
|
*
|
|
|
|
* @return lifetime
|
|
|
|
*/
|
2011-05-03 14:27:00 +00:00
|
|
|
public int getLifeTime() {
|
2011-10-15 14:27:28 +00:00
|
|
|
return getLifeTime(manifoldPointObjectId);
|
2011-05-03 14:27:00 +00:00
|
|
|
}
|
2011-10-15 14:27:28 +00:00
|
|
|
private native int getLifeTime(long manifoldPointObjectId);
|
2011-05-03 14:27:00 +00:00
|
|
|
|
2018-09-16 19:59:45 -07:00
|
|
|
/**
|
|
|
|
* Copy the collision's location in the local coordinates of object A.
|
|
|
|
*
|
|
|
|
* @return a new location vector (in local coordinates, not null)
|
|
|
|
*/
|
2011-10-15 21:30:42 +00:00
|
|
|
public Vector3f getLocalPointA() {
|
|
|
|
return getLocalPointA(new Vector3f());
|
|
|
|
}
|
|
|
|
|
2018-09-16 19:59:45 -07:00
|
|
|
/**
|
|
|
|
* Copy the collision's location in the local coordinates of object A.
|
|
|
|
*
|
|
|
|
* @param localPointA storage for the result (not null, modified)
|
|
|
|
* @return a location vector (in local coordinates, not null)
|
|
|
|
*/
|
2011-10-15 14:27:28 +00:00
|
|
|
public Vector3f getLocalPointA(Vector3f localPointA) {
|
|
|
|
getLocalPointA(manifoldPointObjectId, localPointA);
|
2011-05-03 14:27:00 +00:00
|
|
|
return localPointA;
|
|
|
|
}
|
2011-10-15 14:27:28 +00:00
|
|
|
private native void getLocalPointA(long manifoldPointObjectId, Vector3f localPointA);
|
2011-05-03 14:27:00 +00:00
|
|
|
|
2018-09-16 19:59:45 -07:00
|
|
|
/**
|
|
|
|
* Copy the collision's location in the local coordinates of object B.
|
|
|
|
*
|
|
|
|
* @return a new location vector (in local coordinates, not null)
|
|
|
|
*/
|
2011-10-15 21:30:42 +00:00
|
|
|
public Vector3f getLocalPointB() {
|
|
|
|
return getLocalPointB(new Vector3f());
|
|
|
|
}
|
|
|
|
|
2018-09-16 19:59:45 -07:00
|
|
|
/**
|
|
|
|
* Copy the collision's location in the local coordinates of object B.
|
|
|
|
*
|
|
|
|
* @param localPointB storage for the result (not null, modified)
|
|
|
|
* @return a location vector (in local coordinates, not null)
|
|
|
|
*/
|
2011-10-15 14:27:28 +00:00
|
|
|
public Vector3f getLocalPointB(Vector3f localPointB) {
|
|
|
|
getLocalPointB(manifoldPointObjectId, localPointB);
|
2011-05-03 14:27:00 +00:00
|
|
|
return localPointB;
|
|
|
|
}
|
2011-10-15 14:27:28 +00:00
|
|
|
private native void getLocalPointB(long manifoldPointObjectId, Vector3f localPointB);
|
2011-05-03 14:27:00 +00:00
|
|
|
|
2018-09-16 19:59:45 -07:00
|
|
|
/**
|
|
|
|
* Copy the collision's normal on object B.
|
|
|
|
*
|
|
|
|
* @return a new normal vector (in physics-space coordinates, not null)
|
|
|
|
*/
|
2011-10-15 21:30:42 +00:00
|
|
|
public Vector3f getNormalWorldOnB() {
|
|
|
|
return getNormalWorldOnB(new Vector3f());
|
|
|
|
}
|
|
|
|
|
2018-09-16 19:59:45 -07:00
|
|
|
/**
|
|
|
|
* Copy the collision's normal on object B.
|
|
|
|
*
|
|
|
|
* @param normalWorldOnB storage for the result (not null, modified)
|
|
|
|
* @return a normal vector (in physics-space coordinates, not null)
|
|
|
|
*/
|
2011-10-15 14:27:28 +00:00
|
|
|
public Vector3f getNormalWorldOnB(Vector3f normalWorldOnB) {
|
|
|
|
getNormalWorldOnB(manifoldPointObjectId, normalWorldOnB);
|
2011-05-03 14:27:00 +00:00
|
|
|
return normalWorldOnB;
|
|
|
|
}
|
2011-10-15 14:27:28 +00:00
|
|
|
private native void getNormalWorldOnB(long manifoldPointObjectId, Vector3f normalWorldOnB);
|
2011-05-03 14:27:00 +00:00
|
|
|
|
2018-09-16 19:59:45 -07:00
|
|
|
/**
|
|
|
|
* Read part identifier 0.
|
|
|
|
*
|
|
|
|
* @return identifier
|
|
|
|
*/
|
2011-05-03 14:27:00 +00:00
|
|
|
public int getPartId0() {
|
2011-10-15 14:27:28 +00:00
|
|
|
return getPartId0(manifoldPointObjectId);
|
2011-05-03 14:27:00 +00:00
|
|
|
}
|
2011-10-15 14:27:28 +00:00
|
|
|
private native int getPartId0(long manifoldPointObjectId);
|
2011-05-03 14:27:00 +00:00
|
|
|
|
2018-09-16 19:59:45 -07:00
|
|
|
/**
|
|
|
|
* Read part identifier 1.
|
|
|
|
*
|
|
|
|
* @return identifier
|
|
|
|
*/
|
2011-05-03 14:27:00 +00:00
|
|
|
public int getPartId1() {
|
2011-10-15 14:27:28 +00:00
|
|
|
return getPartId1(manifoldPointObjectId);
|
2011-05-03 14:27:00 +00:00
|
|
|
}
|
|
|
|
|
2011-10-15 14:27:28 +00:00
|
|
|
private native int getPartId1(long manifoldPointObjectId);
|
|
|
|
|
2018-09-16 19:59:45 -07:00
|
|
|
/**
|
|
|
|
* Copy the collision's location.
|
|
|
|
*
|
|
|
|
* @return a new vector (in physics-space coordinates, not null)
|
|
|
|
*/
|
2011-10-15 21:30:42 +00:00
|
|
|
public Vector3f getPositionWorldOnA() {
|
|
|
|
return getPositionWorldOnA(new Vector3f());
|
|
|
|
}
|
|
|
|
|
2018-09-16 19:59:45 -07:00
|
|
|
/**
|
|
|
|
* Copy the collision's location.
|
|
|
|
*
|
|
|
|
* @param positionWorldOnA storage for the result (not null, modified)
|
|
|
|
* @return a location vector (in physics-space coordinates, not null)
|
|
|
|
*/
|
2011-10-15 14:27:28 +00:00
|
|
|
public Vector3f getPositionWorldOnA(Vector3f positionWorldOnA) {
|
2014-10-04 02:07:52 +02:00
|
|
|
getPositionWorldOnA(manifoldPointObjectId, positionWorldOnA);
|
2011-05-03 14:27:00 +00:00
|
|
|
return positionWorldOnA;
|
|
|
|
}
|
2011-10-15 14:27:28 +00:00
|
|
|
private native void getPositionWorldOnA(long manifoldPointObjectId, Vector3f positionWorldOnA);
|
2011-05-03 14:27:00 +00:00
|
|
|
|
2018-09-16 19:59:45 -07:00
|
|
|
/**
|
|
|
|
* Copy the collision's location.
|
|
|
|
*
|
|
|
|
* @return a new location vector (in physics-space coordinates, not null)
|
|
|
|
*/
|
2011-10-15 21:30:42 +00:00
|
|
|
public Vector3f getPositionWorldOnB() {
|
|
|
|
return getPositionWorldOnB(new Vector3f());
|
|
|
|
}
|
|
|
|
|
2018-09-16 19:59:45 -07:00
|
|
|
/**
|
|
|
|
* Copy the collision's location.
|
|
|
|
*
|
|
|
|
* @param positionWorldOnB storage for the result (not null, modified)
|
|
|
|
* @return a location vector (in physics-space coordinates, not null)
|
|
|
|
*/
|
2011-10-15 14:27:28 +00:00
|
|
|
public Vector3f getPositionWorldOnB(Vector3f positionWorldOnB) {
|
|
|
|
getPositionWorldOnB(manifoldPointObjectId, positionWorldOnB);
|
2011-05-03 14:27:00 +00:00
|
|
|
return positionWorldOnB;
|
|
|
|
}
|
2011-10-15 14:27:28 +00:00
|
|
|
private native void getPositionWorldOnB(long manifoldPointObjectId, Vector3f positionWorldOnB);
|
2011-05-03 14:27:00 +00:00
|
|
|
|
2011-10-15 14:27:28 +00:00
|
|
|
// public Object getUserPersistentData() {
|
|
|
|
// return userPersistentData;
|
|
|
|
// }
|
2011-05-03 14:27:00 +00:00
|
|
|
}
|