HomeSort by relevance Sort by last modified time
    Searched defs:getVertex (Results 1 - 25 of 41) sorted by null

1 2

  /external/libgdx/extensions/gdx-bullet/jni/src/bullet/BulletCollision/CollisionShapes/
btTetrahedronShape.cpp 177 void btBU_Simplex1to4::getVertex(int i,btVector3& vtx) const
btConvexPointCloudShape.cpp 117 void btConvexPointCloudShape::getVertex(int i,btVector3& vtx) const
btHeightfieldTerrainShape.cpp 187 void btHeightfieldTerrainShape::getVertex(int x,int y,btVector3& vertex) const
365 getVertex(x,j,vertices[0]);
366 getVertex(x, j + 1, vertices[1]);
367 getVertex(x + 1, j + 1, vertices[2]);
370 // getVertex(x,j,vertices[0]);//already got this vertex before, thanks to Danny Chapman
371 getVertex(x+1,j+1,vertices[1]);
372 getVertex(x + 1, j, vertices[2]);
378 getVertex(x,j,vertices[0]);
379 getVertex(x,j+1,vertices[1]);
380 getVertex(x+1,j,vertices[2])
    [all...]
btBoxShape.h 142 virtual void getVertex(int i,btVector3& vtx) const
246 getVertex(edgeVert0,pa );
247 getVertex(edgeVert1,pb );
btBox2dShape.h 200 virtual void getVertex(int i,btVector3& vtx) const
304 getVertex(edgeVert0,pa );
305 getVertex(edgeVert1,pb );
btConvexHullShape.cpp 152 void btConvexHullShape::getVertex(int i,btVector3& vtx) const
btTriangleShape.h 46 virtual void getVertex(int index,btVector3& vert) const
58 getVertex(i,pa);
59 getVertex((i+1)%3,pb);
btConvexTriangleMeshShape.cpp 172 void btConvexTriangleMeshShape::getVertex(int ,btVector3& ) const
  /external/libgdx/extensions/gdx-box2d/gdx-box2d/src/com/badlogic/gdx/physics/box2d/
PolygonShape.java 122 public void getVertex (int index, Vector2 vertex) {
130 const b2Vec2 v = poly->GetVertex( index );
ChainShape.java 145 public void getVertex (int index, Vector2 vertex) {
153 const b2Vec2 v = chain->GetVertex( index );
Box2DDebugRenderer.java 169 shape.getVertex(0, vertices[0]);
173 shape.getVertex(i, vertices[i]);
217 chain.getVertex(i, vertices[i]);
228 chain.getVertex(i, vertices[i]);
  /external/libgdx/extensions/gdx-box2d/gdx-box2d-gwt/src/com/badlogic/gdx/physics/box2d/gwt/emu/com/badlogic/gdx/physics/box2d/
PolygonShape.java 111 public void getVertex (int index, Vector2 vertex) {
ChainShape.java 110 public void getVertex (int index, Vector2 vertex) {
Box2DDebugRenderer.java 175 shape.getVertex(0, vertices[0]);
179 shape.getVertex(i, vertices[i]);
221 chain.getVertex(i, vertices[i]);
231 chain.getVertex(i, vertices[i]);
  /external/opencv3/samples/cpp/tutorial_code/calib3d/real_time_pose_estimation/src/
Mesh.h 68 cv::Point3f getVertex(int pos) const { return list_vertex_[pos]; }
  /libcore/ojluni/src/main/java/sun/security/provider/certpath/
BuildStep.java 98 public Vertex getVertex() {
  /external/libgdx/extensions/gdx-box2d/gdx-box2d-gwt/src/com/badlogic/gdx/physics/box2d/gwt/emu/org/jbox2d/collision/
TimeOfImpact.java 354 * Vec2 localPointA = m_proxyA.GetVertex(cache.indexA[0]); Vec2 localPointB =
355 * m_proxyB.GetVertex(cache.indexB[0]); Vec2 pointA = Mul(transformA, localPointA); Vec2
358 localPointA.set(m_proxyA.getVertex(cache.indexA[0]));
359 localPointB.set(m_proxyB.getVertex(cache.indexB[0]));
369 localPointB1.set(m_proxyB.getVertex(cache.indexB[0]));
370 localPointB2.set(m_proxyB.getVertex(cache.indexB[1]));
381 localPointA.set(proxyA.getVertex(cache.indexA[0]));
395 localPointA1.set(m_proxyA.getVertex(cache.indexA[0]));
396 localPointA2.set(m_proxyA.getVertex(cache.indexA[1]));
407 localPointB.set(m_proxyB.getVertex(cache.indexB[0]))
    [all...]
Distance.java 123 Vec2 wALocal = proxyA.getVertex(v.indexA);
124 Vec2 wBLocal = proxyB.getVertex(v.indexB);
147 Vec2 wALocal = proxyA.getVertex(0);
148 Vec2 wBLocal = proxyB.getVertex(0);
596 public final Vec2 getVertex(int index) {
699 * proxyA.GetVertex(vertex.indexA)); Vec2 wBLocal; vertex.indexB =
701 * proxyB.GetVertex(vertex.indexB)); vertex.w = vertex.wB - vertex.wA;
709 Transform.mulToOutUnsafe(transformA, proxyA.getVertex(vertex.indexA), vertex.wA);
713 Transform.mulToOutUnsafe(transformB, proxyB.getVertex(vertex.indexB), vertex.wB);
  /external/libgdx/extensions/gdx-bullet/jni/swig-src/collision/com/badlogic/gdx/physics/bullet/collision/
btPolyhedralConvexShape.java 86 public void getVertex(int i, Vector3 vtx) {
btGImpactMeshShapePart.java 276 public void getVertex(int vertex_index, Vector3 vertex) {
  /external/libgdx/extensions/gdx-box2d/gdx-box2d-gwt/src/com/badlogic/gdx/physics/box2d/gwt/emu/org/jbox2d/collision/shapes/
CircleShape.java 96 public final Vec2 getVertex(final int index) {
PolygonShape.java 371 public final Vec2 getVertex(final int index) {
  /external/opencv3/modules/java/src/
imgproc+Subdiv2D.java 102 // C++: Point2f getVertex(int vertex, int* firstEdge = 0)
105 //javadoc: Subdiv2D::getVertex(vertex, firstEdge)
106 public Point getVertex(int vertex, int[] firstEdge)
114 //javadoc: Subdiv2D::getVertex(vertex)
115 public Point getVertex(int vertex)
340 // C++: Point2f getVertex(int vertex, int* firstEdge = 0)
  /external/libgdx/extensions/gdx-bullet/jni/src/bullet/BulletCollision/Gimpact/
btGImpactShape.h 865 SIMD_FORCE_INLINE void getVertex(int vertex_index, btVector3 & vertex) const
  /external/opencv3/modules/imgproc/src/
subdivision2d.cpp 94 Point2f Subdiv2D::getVertex(int vertex, CV_OUT int* firstEdge) const

Completed in 628 milliseconds

1 2