HomeSort by relevance Sort by last modified time
    Searched refs:ellipse (Results 1 - 25 of 53) sorted by null

1 2 3

  /external/libgdx/gdx/src/com/badlogic/gdx/maps/objects/
EllipseMapObject.java 20 import com.badlogic.gdx.math.Ellipse;
23 /** @brief Represents {@link Ellipse} map objects. */
26 private Ellipse ellipse; field in class:EllipseMapObject
28 /** @return ellipse shape */
29 public Ellipse getEllipse () {
30 return ellipse;
33 /** Creates an {@link Ellipse} object whose lower left corner is at (0, 0) with width=1 and height=1 */
38 /** Creates an {@link Ellipse} object with the given X and Y coordinates along with a specified width and height.
46 ellipse = new Ellipse(x, y, width, height)
    [all...]
  /external/opencv3/samples/cpp/
contours2.cpp 64 ellipse( img, Point(dx+150, dy+100), Size(100,70), 0, 0, 360, white, -1, 8, 0 );
65 ellipse( img, Point(dx+115, dy+70), Size(30,20), 0, 0, 360, black, -1, 8, 0 );
66 ellipse( img, Point(dx+185, dy+70), Size(30,20), 0, 0, 360, black, -1, 8, 0 );
67 ellipse( img, Point(dx+115, dy+70), Size(15,15), 0, 0, 360, white, -1, 8, 0 );
68 ellipse( img, Point(dx+185, dy+70), Size(15,15), 0, 0, 360, white, -1, 8, 0 );
69 ellipse( img, Point(dx+115, dy+70), Size(5,5), 0, 0, 360, black, -1, 8, 0 );
70 ellipse( img, Point(dx+185, dy+70), Size(5,5), 0, 0, 360, black, -1, 8, 0 );
71 ellipse( img, Point(dx+150, dy+100), Size(10,5), 0, 0, 360, black, -1, 8, 0 );
72 ellipse( img, Point(dx+150, dy+150), Size(40,10), 0, 0, 360, black, -1, 8, 0 );
73 ellipse( img, Point(dx+27, dy+100), Size(20,35), 0, 0, 360, white, -1, 8, 0 )
    [all...]
fitellipse.cpp 4 * This program is demonstration for ellipse fitting. Program finds
27 // "\nThis program is demonstration for ellipse fitting. The program finds\n"
86 ellipse(cimage, box, Scalar(0,0,255), 1, LINE_AA);
87 ellipse(cimage, box.center, box.size*0.5f, box.angle, 0, 360, Scalar(0,255,255), 1, LINE_AA);
camshiftdemo.cpp 169 ellipse( image, trackBox, Scalar(0,0,255), 3, LINE_AA );
drawing.cpp 75 ellipse( image, center, axes, angle, angle - 100, angle + 200,
  /external/opencv3/samples/python2/
contours.py 30 cv2.ellipse( img, (dx+150, dy+100), (100,70), 0, 0, 360, white, -1 )
31 cv2.ellipse( img, (dx+115, dy+70), (30,20), 0, 0, 360, black, -1 )
32 cv2.ellipse( img, (dx+185, dy+70), (30,20), 0, 0, 360, black, -1 )
33 cv2.ellipse( img, (dx+115, dy+70), (15,15), 0, 0, 360, white, -1 )
34 cv2.ellipse( img, (dx+185, dy+70), (15,15), 0, 0, 360, white, -1 )
35 cv2.ellipse( img, (dx+115, dy+70), (5,5), 0, 0, 360, black, -1 )
36 cv2.ellipse( img, (dx+185, dy+70), (5,5), 0, 0, 360, black, -1 )
37 cv2.ellipse( img, (dx+150, dy+100), (10,5), 0, 0, 360, black, -1 )
38 cv2.ellipse( img, (dx+150, dy+150), (40,10), 0, 0, 360, black, -1 )
39 cv2.ellipse( img, (dx+27, dy+100), (20,35), 0, 0, 360, white, -1
    [all...]
gaussian_mix.py 26 cv2.ellipse(img, (x, y), (s1, s2), ang, 0, 360, color, 1, cv2.LINE_AA)
camshift.py 104 cv2.ellipse(vis, track_box, (0, 0, 255), 2)
  /external/libgdx/gdx/src/com/badlogic/gdx/math/
Ellipse.java 24 /** A convenient 2D ellipse class, based on the circle class
26 public class Ellipse implements Serializable, Shape2D {
33 /** Construct a new ellipse with all values set to zero */
34 public Ellipse () {
40 * @param ellipse Ellipse to construct a copy of. */
41 public Ellipse (Ellipse ellipse) {
42 this.x = ellipse.x;
    [all...]
  /external/skia/src/gpu/
GrOvalRenderer.h 41 const SkRect& ellipse,
45 const SkRect& ellipse,
GrOvalRenderer.cpp 214 * ellipse, specified as a 2D offset from center, and the reciprocals of the outer and inner radii,
384 * The output of this effect is a modulation of the input color and coverage for an ellipse,
1915 SkRect ellipse = GrTest::TestSquare(random); local
1922 SkRect ellipse = GrTest::TestSquare(random); local
    [all...]
  /external/libgdx/tests/gdx-tests/src/com/badlogic/gdx/tests/
TiledMapObjectLoadingTest.java 40 import com.badlogic.gdx.math.Ellipse;
105 Ellipse ellipse = ((EllipseMapObject)mapObject).getEllipse(); local
106 shapeRenderer.ellipse(ellipse.x, ellipse.y, ellipse.width, ellipse.height);
ShapeRendererTest.java 89 renderer.ellipse(0.7f, -0.1f, 0.3f, 0.1f, 45f, 40);
90 renderer.ellipse(0.7f, -0.1f, 0.3f, 0.1f, 135f);
118 renderer.ellipse(0.7f, -0.1f, 0.3f, 0.1f, 45f, 40);
119 renderer.ellipse(0.7f, -0.1f, 0.3f, 0.1f, 135f);
  /external/libgdx/gdx/src/com/badlogic/gdx/graphics/g3d/utils/
MeshPartBuilder.java 369 public void ellipse (float width, float height, int divisions, float centerX, float centerY, float centerZ, float normalX, method in interface:MeshPartBuilder
374 public void ellipse (float width, float height, int divisions, final Vector3 center, final Vector3 normal); method in interface:MeshPartBuilder
378 public void ellipse (float width, float height, int divisions, final Vector3 center, final Vector3 normal, method in interface:MeshPartBuilder
383 public void ellipse (float width, float height, int divisions, float centerX, float centerY, float centerZ, float normalX, method in interface:MeshPartBuilder
389 public void ellipse (float width, float height, int divisions, float centerX, float centerY, float centerZ, float normalX, method in interface:MeshPartBuilder
394 public void ellipse (float width, float height, int divisions, final Vector3 center, final Vector3 normal, float angleFrom, method in interface:MeshPartBuilder
399 public void ellipse (float width, float height, int divisions, final Vector3 center, final Vector3 normal, method in interface:MeshPartBuilder
404 public void ellipse (float width, float height, int divisions, float centerX, float centerY, float centerZ, float normalX, method in interface:MeshPartBuilder
410 public void ellipse (float width, float height, float innerWidth, float innerHeight, int divisions, float centerX, method in interface:MeshPartBuilder
416 public void ellipse (float width, float height, float innerWidth, float innerHeight, int divisions, float centerX, method in interface:MeshPartBuilder
421 public void ellipse (float width, float height, float innerWidth, float innerHeight, int divisions, float centerX, method in interface:MeshPartBuilder
426 public void ellipse (float width, float height, float innerWidth, float innerHeight, int divisions, Vector3 center, method in interface:MeshPartBuilder
    [all...]
MeshBuilder.java     [all...]
  /sdk/eclipse/scripts/
gen_icon.py 52 draw.ellipse((0, 0, sz4-zoom, sz4-zoom),
55 draw.ellipse((i, i, sz4-i-zoom, sz4-i-zoom),
  /external/opencv3/modules/features2d/src/
evaluation.cpp 129 Scalar ellipse; // 3 elements a, b, c: ax^2+2bxy+cy^2=1 member in class:EllipticKeyPoint
130 Size_<float> axes; // half length of ellipse axes
142 ellipse = _ellipse;
144 double a = ellipse[0], b = ellipse[1], c = ellipse[2];
151 boundingBox.width = (float)sqrt(ellipse[2]/ac_b2);
152 boundingBox.height = (float)sqrt(ellipse[0]/ac_b2);
166 return getSecondMomentsMatrix(ellipse);
269 //compute the distance from the ellipse cente
    [all...]
  /external/opencv3/modules/stitching/perf/opencl/
perf_warpers.cpp 110 ellipse(src, Point(srcSize.width/2, srcSize.height/2), Size(srcSize.width/2, srcSize.height/2),
112 ellipse(src, Point(srcSize.width/2, srcSize.height/2), Size(srcSize.width/3, srcSize.height/3),
  /external/opencv3/samples/cpp/tutorial_code/ShapeDescriptors/
generalContours_demo2.cpp 80 // ellipse
81 ellipse( drawing, minEllipse[i], color, 2, 8 );
  /external/opencv3/samples/cpp/tutorial_code/objectDetection/
objectDetection.cpp 68 ellipse( frame, center, Size( faces[i].width/2, faces[i].height/2 ), 0, 0, 360, Scalar( 255, 0, 255 ), 4, 8, 0 );
objectDetection2.cpp 85 ellipse( frame, center, Size( faces[i].width/2, faces[i].height/2 ), 0, 0, 360, Scalar( 255, 0, 0 ), 2, 8, 0 );
  /external/skia/src/svg/
SkSVGDevice.cpp 644 AutoElement ellipse("ellipse", fWriter, fResourceBucket, draw, paint);
645 ellipse.addAttribute("cx", oval.centerX());
646 ellipse.addAttribute("cy", oval.centerY());
647 ellipse.addAttribute("rx", oval.width() / 2);
648 ellipse.addAttribute("ry", oval.height() / 2);
  /external/libgdx/extensions/gdx-tools/src/com/badlogic/gdx/tools/particleeditor/
SpawnPanel.java 61 case ellipse:
  /external/opencv3/samples/cpp/tutorial_code/core/Matrix/
Drawing_1.cpp 80 * @brief Draw a fixed-size ellipse with different angles
87 ellipse( img,
  /external/chromium-trace/catapult/telemetry/third_party/altgraph/altgraph/
Dot.py 92 shape = 'box' | 'ellipse' | 'circle' | 'point' | 'triangle'

Completed in 803 milliseconds

1 2 3