HomeSort by relevance Sort by last modified time
    Searched refs:numSpheres (Results 1 - 8 of 8) sorted by null

  /external/libgdx/extensions/gdx-bullet/jni/src/bullet/BulletCollision/CollisionShapes/
btMultiSphereShape.cpp 25 btMultiSphereShape::btMultiSphereShape (const btVector3* positions,const btScalar* radi,int numSpheres)
31 m_localPositionArray.resize(numSpheres);
32 m_radiArray.resize(numSpheres);
33 for (int i=0;i<numSpheres;i++)
70 int numSpheres = m_localPositionArray.size();
72 for( int k = 0; k < numSpheres; k+= 128 )
75 int inner_count = MIN( numSpheres - k, 128 );
108 int numSpheres = m_localPositionArray.size();
110 for( int k = 0; k < numSpheres; k+= 128 )
113 int inner_count = MIN( numSpheres - k, 128 )
    [all...]
btMultiSphereShape.h 37 btMultiSphereShape (const btVector3* positions,const btScalar* radi,int numSpheres);
  /external/libgdx/extensions/gdx-bullet/jni/swig-src/collision/com/badlogic/gdx/physics/bullet/collision/
btMultiSphereShape.java 61 public btMultiSphereShape(Vector3[] positions, float[] radi, int numSpheres) {
62 this(CollisionJNI.new_btMultiSphereShape(positions, radi, numSpheres), true);
  /external/libgdx/extensions/gdx-bullet/jni/src/bullet/BulletCollision/CollisionDispatch/
btCollisionWorldImporter.cpp 448 int numSpheres = mss->m_localPositionArraySize;
452 radii.resize(numSpheres);
453 tmpPos.resize(numSpheres);
455 for ( i=0;i<numSpheres;i++)
460 shape = createMultiSphereShape(&tmpPos[0],&radii[0],numSpheres);
1077 btMultiSphereShape* btCollisionWorldImporter::createMultiSphereShape(const btVector3* positions,const btScalar* radi,int numSpheres)
1079 btMultiSphereShape* shape = new btMultiSphereShape(positions, radi, numSpheres);
    [all...]
btCollisionWorldImporter.h 176 virtual class btMultiSphereShape* createMultiSphereShape(const btVector3* positions,const btScalar* radi,int numSpheres);
  /external/libgdx/extensions/gdx-bullet/jni/src/extras/Serialize/BulletWorldImporter/
btWorldImporter.h 185 virtual class btMultiSphereShape* createMultiSphereShape(const btVector3* positions,const btScalar* radi,int numSpheres);
btWorldImporter.cpp 337 int numSpheres = mss->m_localPositionArraySize;
341 radii.resize(numSpheres);
342 tmpPos.resize(numSpheres);
344 for ( i=0;i<numSpheres;i++)
349 shape = createMultiSphereShape(&tmpPos[0],&radii[0],numSpheres);
    [all...]
  /external/libgdx/extensions/gdx-bullet/jni/swig-src/extras/com/badlogic/gdx/physics/bullet/extras/
btWorldImporter.java 253 public btMultiSphereShape createMultiSphereShape(btVector3 positions, java.nio.FloatBuffer radi, int numSpheres) {
256 long cPtr = ExtrasJNI.btWorldImporter_createMultiSphereShape(swigCPtr, this, btVector3.getCPtr(positions), positions, radi, numSpheres);

Completed in 72 milliseconds