HomeSort by relevance Sort by last modified time
    Searched defs:rayTo (Results 1 - 4 of 4) sorted by null

  /external/libgdx/extensions/gdx-bullet/jni/src/bullet/BulletCollision/Gimpact/
btCompoundFromGimpact.h 56 btVector3 rayTo = centroid-normal*m_depth;
58 MyCallback cb(rayFrom,rayTo,partId,triangleIndex);
60 m_gimpactShape->processAllTrianglesRay(&cb,rayFrom, rayTo);
63 rayTo.setInterpolate3(cb.m_from,cb.m_to,cb.m_hitFraction);
64 //rayTo = cb.m_from;
65 //rayTo = rayTo.lerp(cb.m_to,cb.m_hitFraction);
71 btBU_Simplex1to4* tet = new btBU_Simplex1to4(v0,v1,v2,rayTo);
  /external/libgdx/tests/gdx-tests/src/com/badlogic/gdx/tests/bullet/
RayCastTest.java 42 Vector3 rayTo = new Vector3();
76 rayTo.set(ray.direction).scl(50f).add(rayFrom); // 50 meters max from the origin
82 rayTestCB.setRayToWorld(rayTo);
84 world.collisionWorld.rayTest(rayFrom, rayTo, rayTestCB);
TriangleRaycastTest.java 104 private Vector3 rayTo = new Vector3();
154 rayTo.set(ray.direction).scl(100).add(rayFrom);
160 triangleRaycastCallback.setTo(rayTo);
164 triangleShape.performRaycast(triangleRaycastCallback, rayFrom, rayTo);
  /external/libgdx/extensions/gdx-bullet/jni/swig-src/collision/com/badlogic/gdx/physics/bullet/collision/
btDbvt.java 613 public static void rayTest(btDbvtNode root, Vector3 rayFrom, Vector3 rayTo, ICollide policy) {
614 CollisionJNI.btDbvt_rayTest(btDbvtNode.getCPtr(root), root, rayFrom, rayTo, ICollide.getCPtr(policy), policy);
617 public void rayTestInternal(btDbvtNode root, Vector3 rayFrom, Vector3 rayTo, Vector3 rayDirectionInverse, long[] signs, float lambda_max, Vector3 aabbMin, Vector3 aabbMax, ICollide policy) {
618 CollisionJNI.btDbvt_rayTestInternal(swigCPtr, this, btDbvtNode.getCPtr(root), root, rayFrom, rayTo, rayDirectionInverse, signs, lambda_max, aabbMin, aabbMax, ICollide.getCPtr(policy), policy);

Completed in 134 milliseconds