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

1 2

  /external/clang/test/PCH/
enum.h 13 Circle
16 enum Shape aRoundShape = Circle;
  /external/libgdx/gdx/src/com/badlogic/gdx/maps/objects/
CircleMapObject.java 20 import com.badlogic.gdx.math.Circle;
22 /** @brief Represents {@link Circle} shaped map objects */
25 private Circle circle; field in class:CircleMapObject
27 /** @return circle shape */
28 public Circle getCircle () {
29 return circle;
32 /** Creates a circle map object at (0,0) with r=1.0 */
37 /** Creates a circle map object
41 * @param radius Radius of the circle object. *
    [all...]
  /external/skia/src/svg/parser/
SkSVGCircle.h 16 DECLARE_SVG_INFO(Circle);
SkSVGCircle.cpp 21 DEFINE_SVG_INFO(Circle)
  /external/libgdx/gdx/test/com/badlogic/gdx/math/
Shape2DTest.java 13 Circle c1 = new Circle(0, 0, 1);
14 Circle c2 = new Circle(0, 0, 1);
15 Circle c3 = new Circle(2, 0, 1);
16 Circle c4 = new Circle(0, 0, 2);
  /external/libgdx/gdx/src/com/badlogic/gdx/math/
Circle.java 20 /** A convenient 2D circle class.
22 public class Circle implements Serializable, Shape2D {
26 /** Constructs a new circle with all values set to zero */
27 public Circle () {
31 /** Constructs a new circle with the given X and Y coordinates and the given radius.
35 * @param radius The radius of the circle */
36 public Circle (float x, float y, float radius) {
42 /** Constructs a new circle using a given {@link Vector2} that contains the desired X and Y coordinates, and a given radius.
46 public Circle (Vector2 position, float radius) {
54 * @param circle The circle to construct a copy of. */
    [all...]
Ellipse.java 24 /** A convenient 2D ellipse class, based on the circle class
80 /** Constructs a new {@link Ellipse} from the position and radius of a {@link Circle} (since circles are special cases of
82 * @param circle The circle to take the values of */
83 public Ellipse (Circle circle) {
84 this.x = circle.x;
85 this.y = circle.y;
86 this.width = circle.radius;
87 this.height = circle.radius;
    [all...]
  /external/libgdx/extensions/gdx-box2d/gdx-box2d/src/com/badlogic/gdx/physics/box2d/
Shape.java 33 Circle, Edge, Polygon, Chain,
Manifold.java 41 if (type == 0) return ManifoldType.Circle;
44 return ManifoldType.Circle;
123 Circle, FaceA, FaceB
CircleShape.java 21 /** A circle shape.
44 return Type.Circle;
59 b2CircleShape* circle = (b2CircleShape*)addr;
60 position[0] = circle->m_p.x;
61 position[1] = circle->m_p.y;
70 b2CircleShape* circle = (b2CircleShape*)addr;
71 circle->m_p.x = positionX;
72 circle->m_p.y = positionY;
Fixture.java 60 return Type.Circle;
Box2DDebugRenderer.java 149 if (fixture.getType() == Type.Circle) {
195 if (fixture.getType() == Type.Circle) {
196 CircleShape circle = (CircleShape)fixture.getShape(); local
197 t.set(circle.getPosition());
199 drawSolidCircle(t, circle.getRadius(), axis.set(transform.vals[Transform.COS], transform.vals[Transform.SIN]), color);
  /external/libgdx/extensions/gdx-box2d/gdx-box2d-gwt/src/com/badlogic/gdx/physics/box2d/gwt/emu/com/badlogic/gdx/physics/box2d/
Shape.java 28 Circle, Polygon, Edge, Chain,
Manifold.java 39 if (type == org.jbox2d.collision.Manifold.ManifoldType.CIRCLES) return ManifoldType.Circle;
42 return ManifoldType.Circle;
75 Circle, FaceA, FaceB
CircleShape.java 21 /** A circle shape.
39 return Type.Circle;
Fixture.java 49 if (type == ShapeType.CIRCLE) return Type.Circle;
53 return Type.Circle;
62 if (type == ShapeType.CIRCLE) shape = new CircleShape((org.jbox2d.collision.shapes.CircleShape)shape2);
Box2DDebugRenderer.java 155 if (fixture.getType() == Type.Circle) {
201 if (fixture.getType() == Type.Circle) {
202 CircleShape circle = (CircleShape)fixture.getShape(); local
203 t.set(circle.getPosition());
205 drawSolidCircle(t, circle.getRadius(), axis.set(transform.vals[Transform.COS], transform.vals[Transform.SIN]), color);
  /external/autotest/client/site_tests/firmware_TouchMTB/tests/
geometry_unittest.py 16 from geometry.elements import Circle, Point
78 expected_circle = Circle(Point(*center_values), radius)
  /external/autotest/client/site_tests/firmware_TouchMTB/geometry/
minicircle.py 5 """minicircle: calculating the minimal enclosing circle given a set of points
10 [2] Circumscribed circle. http://en.wikipedia.org/wiki/Circumscribed_circle
24 from elements import Point, Circle
28 """Derive the mini circle with p1 and p2 composing the diameter.
34 return Circle(center, radius)
38 """Derive the mini circle enclosing arbitrary three points, A, B, C.
70 return Circle(center, radius)
74 """build minicircle0: build the mini circle with an empty P and has R
78 of the circle to be built
81 return Circle(None, None
    [all...]
elements.py 73 class Circle:
74 """A circle class."""
76 """Initialize a circle.
78 @param center: the center point of the circle
79 @param radius: the radius of the circle
85 """A boolean indicating if this circle is defined."""
89 """Determine if p is enclosed in the circle.
96 """Determine if this circle is equal to the specified circle, c.
98 @param c: a circle
    [all...]
  /external/libgdx/gdx/src/com/badlogic/gdx/scenes/scene2d/ui/
Touchpad.java 21 import com.badlogic.gdx.math.Circle;
43 private final Circle knobBounds = new Circle(0, 0, 0);
44 private final Circle touchBounds = new Circle(0, 0, 0);
45 private final Circle deadzoneBounds = new Circle(0, 0, 0);
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/
Example2_24Test.java 43 this.yamlConstructors.put(new Tag("tag:clarkevans.com,2002:circle"),
65 Circle circle = new Circle((Map<String, Integer>) values.get("center"), local
67 return circle;
97 this.representers.put(Circle.class, new RepresentCircle());
113 Circle circle = (Circle) data; local
115 map.put("center", circle.getCenter())
    [all...]
  /art/test/530-checker-lse/src/
Main.java 17 class Circle {
18 Circle(double radius) {
86 return new Circle(radius).getArea();
  /frameworks/base/libs/hwui/
PathCache.h 116 Circle,
141 struct Circle {
143 } circle; member in union:android::uirenderer::PathDescription::Shape
  /external/skia/gm/
dcshader.cpp 139 struct Circle : public Prim {
220 fPrims.push_back(new Circle);

Completed in 1174 milliseconds

1 2