/external/libgdx/extensions/gdx-bullet/jni/src/bullet/LinearMath/ |
D | btIDebugDraw.h | 306 virtual void drawBox(const btVector3& bbMin, const btVector3& bbMax, const btVector3& color) in drawBox() argument 308 drawLine(btVector3(bbMin[0], bbMin[1], bbMin[2]), btVector3(bbMax[0], bbMin[1], bbMin[2]), color); in drawBox() 309 drawLine(btVector3(bbMax[0], bbMin[1], bbMin[2]), btVector3(bbMax[0], bbMax[1], bbMin[2]), color); in drawBox() 310 drawLine(btVector3(bbMax[0], bbMax[1], bbMin[2]), btVector3(bbMin[0], bbMax[1], bbMin[2]), color); in drawBox() 311 drawLine(btVector3(bbMin[0], bbMax[1], bbMin[2]), btVector3(bbMin[0], bbMin[1], bbMin[2]), color); in drawBox() 312 drawLine(btVector3(bbMin[0], bbMin[1], bbMin[2]), btVector3(bbMin[0], bbMin[1], bbMax[2]), color); in drawBox() 313 drawLine(btVector3(bbMax[0], bbMin[1], bbMin[2]), btVector3(bbMax[0], bbMin[1], bbMax[2]), color); in drawBox() 314 drawLine(btVector3(bbMax[0], bbMax[1], bbMin[2]), btVector3(bbMax[0], bbMax[1], bbMax[2]), color); in drawBox() 315 drawLine(btVector3(bbMin[0], bbMax[1], bbMin[2]), btVector3(bbMin[0], bbMax[1], bbMax[2]), color); in drawBox() 316 drawLine(btVector3(bbMin[0], bbMin[1], bbMax[2]), btVector3(bbMax[0], bbMin[1], bbMax[2]), color); in drawBox() [all …]
|
/external/libgdx/extensions/gdx-bullet/jni/swig-src/linearmath/com/badlogic/gdx/physics/bullet/linearmath/ |
D | btIDebugDraw.java | 267 public void drawBox(Vector3 bbMin, Vector3 bbMax, Vector3 color) { in drawBox() argument 268 …_0(swigCPtr, this, bbMin, bbMax, color); else LinearMathJNI.btIDebugDraw_drawBoxSwigExplicitbtIDeb… in drawBox() 271 public void drawBox(Vector3 bbMin, Vector3 bbMax, Matrix4 trans, Vector3 color) { in drawBox() argument 272 …wigCPtr, this, bbMin, bbMax, trans, color); else LinearMathJNI.btIDebugDraw_drawBoxSwigExplicitbtI… in drawBox()
|
D | LinearMathJNI.java | 635 …public static void SwigDirector_btIDebugDraw_drawBox__SWIG_0(btIDebugDraw jself, Vector3 bbMin, Ve… in SwigDirector_btIDebugDraw_drawBox__SWIG_0() argument 636 jself.drawBox(bbMin, bbMax, color); in SwigDirector_btIDebugDraw_drawBox__SWIG_0() 638 …public static void SwigDirector_btIDebugDraw_drawBox__SWIG_1(btIDebugDraw jself, Vector3 bbMin, Ve… in SwigDirector_btIDebugDraw_drawBox__SWIG_1() argument 639 jself.drawBox(bbMin, bbMax, trans, color); in SwigDirector_btIDebugDraw_drawBox__SWIG_1()
|
/external/libgdx/extensions/gdx-bullet/jni/swig-src/linearmath/ |
D | linearmath_wrap.h | 37 virtual void drawBox(btVector3 const &bbMin, btVector3 const &bbMax, btVector3 const &color); 38 …virtual void drawBox(btVector3 const &bbMin, btVector3 const &bbMax, btTransform const &trans, btV…
|
D | linearmath_wrap.cpp | 2617 void SwigDirector_btIDebugDraw::drawBox(btVector3 const &bbMin, btVector3 const &bbMax, btVector3 c… in drawBox() argument 2626 btIDebugDraw::drawBox(bbMin,bbMax,color); in drawBox() 2632 gdx_setVector3FrombtVector3(jenv, jbbMin, bbMin); in drawBox() 2653 void SwigDirector_btIDebugDraw::drawBox(btVector3 const &bbMin, btVector3 const &bbMax, btTransform… in drawBox() argument 2663 btIDebugDraw::drawBox(bbMin,bbMax,trans,color); in drawBox() 2669 gdx_setVector3FrombtVector3(jenv, jbbMin, bbMin); in drawBox()
|
/external/libgdx/extensions/gdx-bullet/jni/src/bullet/BulletDynamics/Dynamics/ |
D | btDiscreteDynamicsWorld.cpp | 1304 btVector3 bbMin = p6DOF->getTranslationalLimitMotor()->m_lowerLimit; in debugDrawConstraint() local 1306 getDebugDrawer()->drawBox(bbMin, bbMax, tr, btVector3(0,0,0)); in debugDrawConstraint() 1354 btVector3 bbMin = p6DOF->getTranslationalLimitMotor()->m_lowerLimit; in debugDrawConstraint() local 1356 getDebugDrawer()->drawBox(bbMin, bbMax, tr, btVector3(0, 0, 0)); in debugDrawConstraint()
|