Searched refs:clockwise (Results 1 - 7 of 7) sorted by relevance
/external/skia/experimental/docs/ |
H A D | svgBackend.js | 144 var clockwise = 1; // to do; work in general case 145 dString += " A" + v[4] + "," + v[4] + " 0 0," + clockwise + " "
|
/external/mesa3d/docs/OLD/ |
H A D | MESA_sprite_point.spec | 88 quadrilaterals are always defined in counter-clockwise order in 124 counter-clockwise around the quadrilateral, then the vertex and
|
/external/opencv3/modules/imgproc/src/ |
H A D | convhull.cpp | 129 void convexHull( InputArray _points, OutputArray _hull, bool clockwise, bool returnPoints ) argument 202 if( !clockwise ) 224 if( clockwise )
|
/external/opencv3/modules/imgproc/test/ |
H A D | test_convhull.cpp | 509 bool clockwise = orientation == CV_CLOCKWISE; local 514 cv::convexHull(_points, _hull, clockwise); 521 cv::convexHull(_points, _hull, clockwise); 528 cv::convexHull(_points, _hull, clockwise);
|
/external/opencv3/modules/imgproc/include/opencv2/ |
H A D | imgproc.hpp | 2107 @param angle Rotation angle in degrees. Positive values mean counter-clockwise rotation (the 3487 depending on the contour orientation (clockwise or counter-clockwise). Using this feature you can 3580 @param clockwise Orientation flag. If it is true, the output convex hull is oriented clockwise. 3581 Otherwise, it is oriented counter-clockwise. The assumed coordinate system has its X axis pointing 3590 bool clockwise = false, bool returnPoints = true );
|
/external/opencv3/modules/java/src/ |
H A D | imgproc+Imgproc.java | 2325 // C++: void convexHull(vector_Point points, vector_int& hull, bool clockwise = false, _hidden_ returnPoints = true) 2328 //javadoc: convexHull(points, hull, clockwise) 2329 public static void convexHull(MatOfPoint points, MatOfInt hull, boolean clockwise) argument 2333 convexHull_0(points_mat.nativeObj, hull_mat.nativeObj, clockwise); 3198 // C++: void convexHull(vector_Point points, vector_int& hull, bool clockwise = false, _hidden_ returnPoints = true) 3199 private static native void convexHull_0(long points_mat_nativeObj, long hull_mat_nativeObj, boolean clockwise); argument
|
H A D | imgproc.cpp | 4841 // void convexHull(vector_Point points, vector_int& hull, bool clockwise = false, _hidden_ returnPoints = true) 4847 (JNIEnv* env, jclass , jlong points_mat_nativeObj, jlong hull_mat_nativeObj, jboolean clockwise) 4857 cv::convexHull( points, hull, (bool)clockwise, true ); 4846 Java_org_opencv_imgproc_Imgproc_convexHull_10(JNIEnv* env, jclass , jlong points_mat_nativeObj, jlong hull_mat_nativeObj, jboolean clockwise) argument
|
Completed in 247 milliseconds