Home | History | Annotate | Download | only in ragdoll

Lines Matching defs:vertices

60         FloatBuffer vertices = mesh.getFloatBuffer(Type.Position);
64 vertices.rewind();
90 points.add(vertices.get(i));
91 points.add(vertices.get(i + 1));
92 points.add(vertices.get(i + 2));
98 * Create a hull collision shape from linked vertices to this bone.
99 * Vertices have to be previoulsly gathered in a map using buildPointMap method
150 * Create a hull collision shape from linked vertices to this bone.
195 FloatBuffer vertices = mesh.getFloatBuffer(Type.Position);
199 vertices.rewind();
220 pos.x = vertices.get(i);
221 pos.y = vertices.get(i + 1);
222 pos.z = vertices.get(i + 2);