OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:btPlane
(Results
1 - 6
of
6
) sorted by null
/external/libgdx/extensions/gdx-bullet/jni/swig-src/linearmath/com/badlogic/gdx/physics/bullet/linearmath/
btPlane.java
17
public class
btPlane
extends BulletBase {
20
protected
btPlane
(final String className, long cPtr, boolean cMemoryOwn) {
25
/** Construct a new
btPlane
, normally you should not need this constructor it's intended for low-level usage. */
26
public
btPlane
(long cPtr, boolean cMemoryOwn) {
27
this("
btPlane
", cPtr, cMemoryOwn);
38
public static long getCPtr(
btPlane
obj) {
77
public
btPlane
(Vector3 n, float d) {
81
public
btPlane
() {
LinearMathJNI.java
[
all
...]
/external/libgdx/extensions/gdx-bullet/jni/src/bullet/LinearMath/
btConvexHull.h
114
class
btPlane
119
btPlane
(const btVector3 &n,btScalar d):normal(n),dist(d){}
120
btPlane
():normal(),dist(0){}
146
btAlignedObjectArray<
btPlane
> facets;
218
class ConvexH* ConvexHCrop(ConvexH& convex,const
btPlane
& slice);
btConvexHull.cpp
40
//-------
btPlane
----------
43
inline
btPlane
PlaneFlip(const
btPlane
&plane){return
btPlane
(-plane.normal,-plane.dist);}
44
inline int operator==( const
btPlane
&a, const
btPlane
&b ) { return (a.normal==b.normal && a.dist==b.dist); }
45
inline int coplanar( const
btPlane
&a, const
btPlane
&b ) { return (a==b || a==PlaneFlip(b)); }
50
btVector3 PlaneLineIntersection(const
btPlane
&plane, const btVector3 &p0, const btVector3 &p1);
51
btVector3 PlaneProject(const
btPlane
&plane, const btVector3 &point)
[
all
...]
/external/libgdx/extensions/gdx-bullet/jni/swig-src/linearmath/
classes.i
37
SPECIFY_CLASS(
btPlane
, com.badlogic.gdx.physics.bullet.linearmath)
linearmath_wrap.cpp
[
all
...]
Completed in 912 milliseconds