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

  /external/clang/test/PCH/
enum.h 13 Circle
16 enum Shape aRoundShape = Circle;
  /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/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) {
93 return new Circle(radius).getArea();
822 area = new Circle(radius).getArea();
842 Circle circle1 = new Circle(radius);
848 return new Circle(Math.PI).getArea();
  /frameworks/base/libs/hwui/
PathCache.h 122 Circle,
147 struct Circle {
149 } circle; member in union:android::uirenderer::PathDescription::Shape
PathCache.cpp 111 case ShapeType::Circle:
112 return shape.circle.mRadius == rhs.shape.circle.mRadius;
470 PathDescription entry(ShapeType::Circle, paint);
471 entry.shape.circle.mRadius = radius;
  /external/skia/src/gpu/ops/
GrShadowRRectOp.cpp 19 // We have two possible cases for geometry for a circle:
21 // In the case of a normal fill, we draw geometry for the circle as an octagon.
112 Circle{color, outerRadius, innerRadius, blurRadius, devBounds, stroked});
198 const Circle& circle = fCircles[i]; variable
200 GrColor color = circle.fColor;
201 SkScalar outerRadius = circle.fOuterRadius;
202 SkScalar innerRadius = circle.fInnerRadius;
203 SkScalar blurRadius = circle.fBlurRadius;
205 const SkRect& bounds = circle.fDevBounds
    [all...]
  /external/mesa3d/src/gallium/state_trackers/vega/
bezier.c 247 Circle
400 thing by a semi circle */
401 return Circle;
450 float circle[3][2]; local
492 circle[0][0] = b->x1 + normals[0][0]*offset;
493 circle[0][1] = b->y1 + normals[0][1]*offset;
495 circle[1][0] = 0.5*(b->x1 + b->x4) + normals[1][0]*offset;
496 circle[1][1] = 0.5*(b->y1 + b->y4) + normals[1][1]*offset;
498 circle[2][0] = b->x4 + normals[2][0]*offset;
499 circle[2][1] = b->y4 + normals[2][1]*offset
    [all...]

Completed in 693 milliseconds