Home | History | Annotate | Download | only in util

Lines Matching refs:hull

159         // Check there is a hull shape to render
161 // create a hull approximation
162 ShapeHull hull = new ShapeHull(convexShape);
164 hull.buildHull(margin);
165 convexShape.setUserPointer(hull);
168 // Assert state - should have a pointer to a hull (shape) that'll be drawn
170 ShapeHull hull = (ShapeHull) convexShape.getUserPointer();
173 assert hull.numTriangles() > 0 : "Expecting the Hull shape to have triangles";
174 int numberOfTriangles = hull.numTriangles();
184 final IntArrayList hullIndicies = hull.getIndexPointer();
185 final List<Vector3f> hullVertices = hull.getVertexPointer();
190 // Grab the data for this triangle from the hull