Searched defs:ellipse (Results 1 - 11 of 11) sorted by relevance

/external/libgdx/gdx/src/com/badlogic/gdx/maps/objects/
H A DEllipseMapObject.java26 private Ellipse ellipse; field in class:EllipseMapObject
28 /** @return ellipse shape */
30 return ellipse;
46 ellipse = new Ellipse(x, y, width, height);
/external/libgdx/gdx/src/com/badlogic/gdx/math/
H A DEllipse.java24 /** A convenient 2D ellipse class, based on the circle class
33 /** Construct a new ellipse with all values set to zero */
40 * @param ellipse Ellipse to construct a copy of. */
41 public Ellipse (Ellipse ellipse) { argument
42 this.x = ellipse.x;
43 this.y = ellipse.y;
44 this.width = ellipse.width;
45 this.height = ellipse.height;
48 /** Constructs a new ellipse
61 /** Costructs a new ellipse
128 set(Ellipse ellipse) argument
[all...]
/external/libgdx/gdx/src/com/badlogic/gdx/graphics/glutils/
H A DShapeRenderer.java897 /** Calls {@link #ellipse(float, float, float, float, int)} by estimating the number of segments needed for a smooth ellipse. */
898 public void ellipse (float x, float y, float width, float height) { method in class:ShapeRenderer
899 ellipse(x, y, width, height, Math.max(1, (int)(12 * (float)Math.cbrt(Math.max(width * 0.5f, height * 0.5f)))));
902 /** Draws an ellipse using {@link ShapeType#Line} or {@link ShapeType#Filled}. */
903 public void ellipse (float x, float y, float width, float height, int segments) { method in class:ShapeRenderer
934 /** Calls {@link #ellipse(float, float, float, float, float, int)} by estimating the number of segments needed for a smooth ellipse. */
935 public void ellipse (float x, float y, float width, float height, float rotation) { method in class:ShapeRenderer
936 ellipse(
940 public void ellipse (float x, float y, float width, float height, float rotation, int segments) { method in class:ShapeRenderer
[all...]
/external/opencv3/modules/features2d/src/
H A Devaluation.cpp129 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/libgdx/gdx/src/com/badlogic/gdx/graphics/g2d/
H A DParticleEmitter.java460 case ellipse: {
1382 if (shape == SpawnShape.ellipse) {
1392 if (shape == SpawnShape.ellipse) {
1407 point, line, square, ellipse enum constant in enum:ParticleEmitter.SpawnShape
/external/libgdx/gdx/src/com/badlogic/gdx/graphics/g3d/utils/
H A DMeshBuilder.java912 public void ellipse (float width, float height, int divisions, float centerX, float centerY, float centerZ, float normalX, method in class:MeshBuilder
919 public void ellipse (float width, float height, int divisions, final Vector3 center, final Vector3 normal) { method in class:MeshBuilder
925 public void ellipse (float width, float height, int divisions, final Vector3 center, final Vector3 normal, method in class:MeshBuilder
932 public void ellipse (float width, float height, int divisions, float centerX, float centerY, float centerZ, float normalX, method in class:MeshBuilder
941 public void ellipse (float width, float height, int divisions, float centerX, float centerY, float centerZ, float normalX, method in class:MeshBuilder
949 public void ellipse (float width, float height, int divisions, final Vector3 center, final Vector3 normal, float angleFrom, method in class:MeshBuilder
956 public void ellipse (float width, float height, int divisions, final Vector3 center, final Vector3 normal, method in class:MeshBuilder
963 public void ellipse (float width, float height, int divisions, float centerX, float centerY, float centerZ, float normalX, method in class:MeshBuilder
972 public void ellipse (float width, float height, float innerWidth, float innerHeight, int divisions, Vector3 center, method in class:MeshBuilder
979 public void ellipse (floa method in class:MeshBuilder
987 public void ellipse (float width, float height, float innerWidth, float innerHeight, int divisions, float centerX, method in class:MeshBuilder
995 public void ellipse (float width, float height, float innerWidth, float innerHeight, int divisions, float centerX, method in class:MeshBuilder
[all...]
H A DMeshPartBuilder.java369 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 (floa 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...]
/external/skia/src/gpu/
H A DGrOvalRenderer.cpp214 * 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,
996 const SkRect& ellipse,
1001 SkPoint center = SkPoint::Make(ellipse.centerX(), ellipse.centerY());
1003 SkScalar ellipseXRadius = SkScalarHalf(ellipse.width());
1004 SkScalar ellipseYRadius = SkScalarHalf(ellipse.height());
1038 // we don't handle it if curvature of the stroke is less than curvature of the ellipse
1076 const SkRect& ellipse,
1078 return create_ellipse_batch(color, viewMatrix, ellipse, strok
994 create_ellipse_batch(GrColor color, const SkMatrix& viewMatrix, const SkRect& ellipse, const SkStrokeRec& stroke) argument
1074 CreateEllipseBatch(GrColor color, const SkMatrix& viewMatrix, const SkRect& ellipse, const SkStrokeRec& stroke) argument
1239 create_diellipse_batch(GrColor color, const SkMatrix& viewMatrix, const SkRect& ellipse, const SkStrokeRec& stroke) argument
1316 CreateDIEllipseBatch(GrColor color, const SkMatrix& viewMatrix, const SkRect& ellipse, const SkStrokeRec& stroke) argument
1915 SkRect ellipse = GrTest::TestSquare(random); local
1922 SkRect ellipse = GrTest::TestSquare(random); local
[all...]
/external/ImageMagick/MagickCore/
H A Dfx.c3357 Determine if the pixel is within an ellipse.
5202 Determine if the pixel is within an ellipse.
5513 % o x, y: Define the x and y ellipse offset.
5522 ellipse[MagickPathExtent]; local
5563 (void) FormatLocaleString(ellipse,MagickPathExtent,"ellipse %g,%g,%g,%g,"
5566 draw_info->primitive=AcquireString(ellipse);
/external/opencv3/modules/java/src/
H A Dimgproc+Imgproc.java2615 // C++: void ellipse(Mat& img, Point center, Size axes, double angle, double startAngle, double endAngle, Scalar color, int thickness = 1, int lineType = LINE_8, int shift = 0)
2618 //javadoc: ellipse(img, center, axes, angle, startAngle, endAngle, color, thickness, lineType, shift)
2619 public static void ellipse(Mat img, Point center, Size axes, double angle, double startAngle, double endAngle, Scalar color, int thickness, int lineType, int shift) method in class:Imgproc
2627 //javadoc: ellipse(img, center, axes, angle, startAngle, endAngle, color, thickness)
2628 public static void ellipse(Mat img, Point center, Size axes, double angle, double startAngle, double endAngle, Scalar color, int thickness) method in class:Imgproc
2636 //javadoc: ellipse(img, center, axes, angle, startAngle, endAngle, color)
2637 public static void ellipse(Mat img, Point center, Size axes, double angle, double startAngle, double endAngle, Scalar color) method in class:Imgproc
2647 // C++: void ellipse(Mat& img, RotatedRect box, Scalar color, int thickness = 1, int lineType = LINE_8)
2650 //javadoc: ellipse(img, box, color, thickness, lineType)
2651 public static void ellipse(Ma method in class:Imgproc
2660 public static void ellipse(Mat img, RotatedRect box, Scalar color, int thickness) method in class:Imgproc
2669 public static void ellipse(Mat img, RotatedRect box, Scalar color) method in class:Imgproc
[all...]
/external/libgdx/backends/gdx-backends-gwt/libs/
H A Dgwt-dev.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/gwt/ com/google/gwt/core/ ...

Completed in 782 milliseconds