OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:btVector3Array
(Results
1 - 3
of
3
) sorted by null
/external/libgdx/extensions/gdx-bullet/jni/swig-src/collision/com/badlogic/gdx/physics/bullet/collision/
btPolyhedralContactClipping.java
65
public static void clipFaceAgainstHull(Vector3 separatingNormal, btConvexPolyhedron hullA, Matrix4 transA,
btVector3Array
worldVertsB1, float minDist, float maxDist, btDiscreteCollisionDetectorInterface.Result resultOut) {
66
CollisionJNI.btPolyhedralContactClipping_clipFaceAgainstHull(separatingNormal, btConvexPolyhedron.getCPtr(hullA), hullA, transA,
btVector3Array
.getCPtr(worldVertsB1), worldVertsB1, minDist, maxDist, btDiscreteCollisionDetectorInterface.Result.getCPtr(resultOut), resultOut);
73
public static void clipFace(
btVector3Array
pVtxIn,
btVector3Array
ppVtxOut, Vector3 planeNormalWS, float planeEqWS) {
74
CollisionJNI.btPolyhedralContactClipping_clipFace(
btVector3Array
.getCPtr(pVtxIn), pVtxIn,
btVector3Array
.getCPtr(ppVtxOut), ppVtxOut, planeNormalWS, planeEqWS);
/external/libgdx/extensions/gdx-bullet/jni/swig-src/linearmath/com/badlogic/gdx/physics/bullet/linearmath/
btGeometryUtil.java
60
public static void getPlaneEquationsFromVertices(
btVector3Array
vertices,
btVector3Array
planeEquationsOut) {
61
LinearMathJNI.btGeometryUtil_getPlaneEquationsFromVertices(
btVector3Array
.getCPtr(vertices), vertices,
btVector3Array
.getCPtr(planeEquationsOut), planeEquationsOut);
64
public static void getVerticesFromPlaneEquations(
btVector3Array
planeEquations,
btVector3Array
verticesOut) {
65
LinearMathJNI.btGeometryUtil_getVerticesFromPlaneEquations(
btVector3Array
.getCPtr(planeEquations), planeEquations,
btVector3Array
.getCPtr(verticesOut), verticesOut);
68
public static boolean isInside(
btVector3Array
vertices, Vector3 planeNormal, float margin) {
69
return LinearMathJNI.btGeometryUtil_isInside(
btVector3Array
.getCPtr(vertices), vertices, planeNormal, margin)
[
all
...]
btVector3Array.java
17
public class
btVector3Array
extends BulletBase {
20
protected
btVector3Array
(final String className, long cPtr, boolean cMemoryOwn) {
25
/** Construct a new
btVector3Array
, normally you should not need this constructor it's intended for low-level usage. */
26
public
btVector3Array
(long cPtr, boolean cMemoryOwn) {
27
this("
btVector3Array
", cPtr, cMemoryOwn);
38
public static long getCPtr(
btVector3Array
obj) {
60
public
btVector3Array
() {
64
public
btVector3Array
(
btVector3Array
otherArray) {
65
this(LinearMathJNI.new_btVector3Array__SWIG_1(
btVector3Array
.getCPtr(otherArray), otherArray), true)
[
all
...]
Completed in 405 milliseconds