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

  /external/jmonkeyengine/engine/src/bullet-native/
com_jme3_bullet_util_DebugShapeFactory.cpp 101 // Check there is a hull shape to render
103 // create a hull approximation
104 btShapeHull* hull = new btShapeHull(convexShape); local
106 hull->buildHull(margin);
107 convexShape->setUserPointer(hull);
110 btShapeHull* hull = (btShapeHull*) convexShape->getUserPointer(); local
112 int numberOfTriangles = hull->numTriangles();
117 const unsigned int* hullIndices = hull->getIndexPointer();
118 const btVector3* hullVertices = hull->getVertexPointer();
123 // Grab the data for this triangle from the hull
    [all...]
  /external/jmonkeyengine/engine/src/jbullet/com/jme3/bullet/util/
DebugShapeFactory.java 159 // Check there is a hull shape to render
161 // create a hull approximation
162 ShapeHull hull = new ShapeHull(convexShape); local
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(); local
173 assert hull.numTriangles() > 0 : "Expecting the Hull shape to have triangles";
174 int numberOfTriangles = hull.numTriangles()
    [all...]
  /external/opencv/cv/src/
cvconvhull.cpp 231 union { CvContour* c; CvSeq* s; } hull; local
238 hull.s = 0;
298 "The hull matrix should be continuous and have a single row or a single column" );
301 CV_ERROR( CV_StsBadSize, "The hull matrix size might be not enough to fit the hull" );
306 "The hull matrix must have the same type as input or 32sC1 (integers)" );
397 /* gather upper part of convex hull to output */
452 the bottom part of the convex hull is the mirrored top part
496 hull.s = hullseq;
497 hull.c->rect = cvBoundingRect( ptseq
536 CvSeq *ptseq = (CvSeq*)array, *hull = (CvSeq*)hullarray; local
    [all...]
cvcalibinit.cpp 1084 CvSeq *hull = cvConvexHull2( &pointMat, temp_storage, CV_CLOCKWISE, 1 ); local
    [all...]
  /frameworks/base/libs/hwui/
SpotShadow.cpp 156 * compute the convex hull of a collection of Points
163 int SpotShadow::hull(Vector2* points, int pointsLength, Vector2* retPoly) { function in class:android::uirenderer::SpotShadow
219 // TODO: Add test harness which verify that all the points are inside the hull.
590 int finalUmbraLength = hull(umbra, umbraLength, finalUmbra);
591 int finalPenumbraLength = hull(penumbra, penumbraLength, finalPenumbra);
    [all...]
  /external/chromium-trace/trace-viewer/tracing/third_party/d3/
d3.min.js     [all...]
  /cts/apps/CtsVerifier/libs/
opencv-android.jar 

Completed in 218 milliseconds