Home
last modified time | relevance | path

Searched refs:arcTo (Results 1 – 25 of 85) sorted by relevance

1234

/external/skqp/samplecode/
DSampleClock.cpp172 path.arcTo(rect, 0, 0, false); in onDrawContent()
174 path.arcTo(rect, 360, 0, true); in onDrawContent()
182 path.arcTo(rect, 0, 0, false); in onDrawContent()
184 path.arcTo(rect, 360, 0, true); in onDrawContent()
192 path.arcTo(rect, 0, 0, false); in onDrawContent()
194 path.arcTo(rect, 360, 0, true); in onDrawContent()
208 path.arcTo(rect, 0, 0, false); in onDrawContent()
210 path.arcTo(rect, 360, 0, true); in onDrawContent()
DSampleAndroidShadows.cpp92 fNotchPath.arcTo(SkRect::MakeLTRB(-20, 80, 20, 120), -90, -90, false); in onOnceBeforeDraw()
97 fNotchPath.arcTo(SkRect::MakeLTRB(-20, 80, 20, 120), 0, -90, false); in onOnceBeforeDraw()
102 fTabPath.arcTo(SkRect::MakeLTRB(-20, 80, 20, 120), 0, 90, false); in onOnceBeforeDraw()
103 fTabPath.arcTo(SkRect::MakeLTRB(-20, 80, 20, 120), 90, 90, false); in onOnceBeforeDraw()
/external/skia/samplecode/
DSampleClock.cpp172 path.arcTo(rect, 0, 0, false); in onDrawContent()
174 path.arcTo(rect, 360, 0, true); in onDrawContent()
182 path.arcTo(rect, 0, 0, false); in onDrawContent()
184 path.arcTo(rect, 360, 0, true); in onDrawContent()
192 path.arcTo(rect, 0, 0, false); in onDrawContent()
194 path.arcTo(rect, 360, 0, true); in onDrawContent()
208 path.arcTo(rect, 0, 0, false); in onDrawContent()
210 path.arcTo(rect, 360, 0, true); in onDrawContent()
DSampleAndroidShadows.cpp92 fNotchPath.arcTo(SkRect::MakeLTRB(-20, 80, 20, 120), -90, -90, false); in onOnceBeforeDraw()
97 fNotchPath.arcTo(SkRect::MakeLTRB(-20, 80, 20, 120), 0, -90, false); in onOnceBeforeDraw()
102 fTabPath.arcTo(SkRect::MakeLTRB(-20, 80, 20, 120), 0, 90, false); in onOnceBeforeDraw()
103 fTabPath.arcTo(SkRect::MakeLTRB(-20, 80, 20, 120), 90, 90, false); in onOnceBeforeDraw()
/external/skqp/experimental/canvaskit/htmlcanvas/
Dpath2d.js9 function arcTo(skpath, x1, y1, x2, y2, radius) { function
19 skpath.arcTo(x1, y1, x2, y2, radius);
53 skpath.arcTo(oval, startDegrees, halfSweep, false);
54 skpath.arcTo(oval, startDegrees + halfSweep, halfSweep, false);
57 skpath.arcTo(oval, startDegrees, sweepDegrees, false);
173 this.arcTo = function(x1, y1, x2, y2, radius) { method in Path2D
174 arcTo(this._path, x1, y1, x2, y2, radius);
/external/skia/modules/canvaskit/htmlcanvas/
Dpath2d.js9 function arcTo(skpath, x1, y1, x2, y2, radius) { function
19 skpath.arcTo(x1, y1, x2, y2, radius);
53 skpath.arcTo(oval, startDegrees, halfSweep, false);
54 skpath.arcTo(oval, startDegrees + halfSweep, halfSweep, false);
57 skpath.arcTo(oval, startDegrees, sweepDegrees, false);
173 this.arcTo = function(x1, y1, x2, y2, radius) { method in Path2D
174 arcTo(this._path, x1, y1, x2, y2, radius);
/external/skia/gm/
Darcto.cpp61 svgArc.arcTo(oval.width() / 2, ovalHeight, SkIntToScalar(angle), SkPath::kSmall_ArcSize,
67 svgArc.arcTo(oval.width() / 2, ovalHeight, SkIntToScalar(angle), SkPath::kLarge_ArcSize,
97 path.arcTo(0, 0, 0, SkPath::kLarge_ArcSize, SkPath::kCW_Direction, 200, 200);
102 path.arcTo(80, 80, 0, SkPath::kLarge_ArcSize, SkPath::kCW_Direction, 200, 100);
199 p.arcTo(oval, 1.25f * 180, .5f * 180, false);
Dcomplexclip3.cpp42 clipComplex.arcTo(r1, SkIntToScalar(30), SkIntToScalar(300), false); in onDraw()
/external/skqp/gm/
Darcto.cpp61 svgArc.arcTo(oval.width() / 2, ovalHeight, SkIntToScalar(angle), SkPath::kSmall_ArcSize,
67 svgArc.arcTo(oval.width() / 2, ovalHeight, SkIntToScalar(angle), SkPath::kLarge_ArcSize,
97 path.arcTo(0, 0, 0, SkPath::kLarge_ArcSize, SkPath::kCW_Direction, 200, 200);
102 path.arcTo(80, 80, 0, SkPath::kLarge_ArcSize, SkPath::kCW_Direction, 200, 100);
199 p.arcTo(oval, 1.25f * 180, .5f * 180, false);
Dcomplexclip3.cpp42 clipComplex.arcTo(r1, SkIntToScalar(30), SkIntToScalar(300), false); in onDraw()
Dconicpaths.cpp146 path.arcTo(0, 0, -39.00216443306411f, 400.6058925796476f, radius);
/external/skia/include/core/
DSkPath.h823 SkPath& arcTo(const SkRect& oval, SkScalar startAngle, SkScalar sweepAngle, bool forceMoveTo);
846 SkPath& arcTo(SkScalar x1, SkScalar y1, SkScalar x2, SkScalar y2, SkScalar radius);
867 SkPath& arcTo(const SkPoint p1, const SkPoint p2, SkScalar radius) { in arcTo() function
868 return this->arcTo(p1.fX, p1.fY, p2.fX, p2.fY, radius); in arcTo()
904 SkPath& arcTo(SkScalar rx, SkScalar ry, SkScalar xAxisRotate, ArcSize largeArc,
930 SkPath& arcTo(const SkPoint r, SkScalar xAxisRotate, ArcSize largeArc, Direction sweep, in arcTo() function
932 return this->arcTo(r.fX, r.fY, xAxisRotate, largeArc, sweep, xy.fX, xy.fY); in arcTo()
/external/skqp/include/core/
DSkPath.h823 SkPath& arcTo(const SkRect& oval, SkScalar startAngle, SkScalar sweepAngle, bool forceMoveTo);
846 SkPath& arcTo(SkScalar x1, SkScalar y1, SkScalar x2, SkScalar y2, SkScalar radius);
867 SkPath& arcTo(const SkPoint p1, const SkPoint p2, SkScalar radius) { in arcTo() function
868 return this->arcTo(p1.fX, p1.fY, p2.fX, p2.fY, radius); in arcTo()
904 SkPath& arcTo(SkScalar rx, SkScalar ry, SkScalar xAxisRotate, ArcSize largeArc,
930 SkPath& arcTo(const SkPoint r, SkScalar xAxisRotate, ArcSize largeArc, Direction sweep, in arcTo() function
932 return this->arcTo(r.fX, r.fY, xAxisRotate, largeArc, sweep, xy.fX, xy.fY); in arcTo()
/external/androidplot/AndroidPlot-Core/src/main/java/com/androidplot/pie/
DPieRenderer.java115 clip.arcTo(new RectF(bounds.left - rad, in drawSegment()
125 p.arcTo(bounds, startAngle, sweep); in drawSegment()
129 p.arcTo(new RectF( in drawSegment()
/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
DShadowPath.java383 protected void arcTo(RectF oval, float startAngle, float sweepAngle) { in arcTo() method in ShadowPath
384 arcTo(oval.left, oval.top, oval.right, oval.bottom, startAngle, sweepAngle, false); in arcTo()
388 protected void arcTo(RectF oval, float startAngle, float sweepAngle, boolean forceMoveTo) { in arcTo() method in ShadowPath
389 arcTo(oval.left, oval.top, oval.right, oval.bottom, startAngle, sweepAngle, forceMoveTo); in arcTo()
393 protected void arcTo( in arcTo() method in ShadowPath
/external/skia/modules/canvaskit/
Dexterns.js468 CanvasKit.SkPath.prototype.arcTo = function() {}; method in CanvasKit.SkPath
518 CanvasRenderingContext2D.prototype.arcTo = function() {}; method in CanvasRenderingContext2D
563 Path2D.prototype.arcTo = function() {}; method in Path2D
/external/skqp/experimental/canvaskit/
Dexterns.js449 CanvasKit.SkPath.prototype.arcTo = function() {}; method in CanvasKit.SkPath
499 CanvasRenderingContext2D.prototype.arcTo = function() {}; method in CanvasRenderingContext2D
544 Path2D.prototype.arcTo = function() {}; method in Path2D
/external/skia/docs/
DSkPath_Reference.bmh201 #SeeAlso arcTo rArcTo isRect isNestedFillRects addRect addOval
2059 path.arcTo(20, 0, 20, 20, 20);
2152 #SeeAlso rConicTo arcTo addArc quadTo
2175 path.arcTo(oval, -90, 90 - 20 * i, false);
2192 #SeeAlso rConicTo arcTo addArc quadTo
2219 #SeeAlso conicTo arcTo addArc quadTo
2359 arcTo(const SkRect& oval, SkScalar startAngle, SkScalar sweepAngle, bool forceMoveTo)
2365 arcTo(SkScalar x1, SkScalar y1, SkScalar x2, SkScalar y2, SkScalar radius)
2370 arcTo(SkScalar rx, SkScalar ry, SkScalar xAxisRotate, ArcSize largeArc, Direction sweep,
2377 conicTo can represent any Arc with a sweep less than 180 degrees at any rotation. All arcTo
[all …]
/external/skqp/docs/
DSkPath_Reference.bmh201 #SeeAlso arcTo rArcTo isRect isNestedFillRects addRect addOval
2059 path.arcTo(20, 0, 20, 20, 20);
2152 #SeeAlso rConicTo arcTo addArc quadTo
2175 path.arcTo(oval, -90, 90 - 20 * i, false);
2192 #SeeAlso rConicTo arcTo addArc quadTo
2219 #SeeAlso conicTo arcTo addArc quadTo
2359 arcTo(const SkRect& oval, SkScalar startAngle, SkScalar sweepAngle, bool forceMoveTo)
2365 arcTo(SkScalar x1, SkScalar y1, SkScalar x2, SkScalar y2, SkScalar radius)
2370 arcTo(SkScalar rx, SkScalar ry, SkScalar xAxisRotate, ArcSize largeArc, Direction sweep,
2377 conicTo can represent any Arc with a sweep less than 180 degrees at any rotation. All arcTo
[all …]
/external/fonttools/Tests/svgLib/path/
Dparser_test.py339 def arcTo(self, rx, ry, rotation, arc_large, arc_sweep, end_point): member in ArcRecordingPen
/external/skqp/fuzz/
DFuzzCommon.cpp101 path->arcTo(a, b, c, d, e); in FuzzNicePath()
107 path->arcTo(r, a, b, test); in FuzzNicePath()
/external/skia/fuzz/
DFuzzCommon.cpp101 path->arcTo(a, b, c, d, e); in FuzzNicePath()
107 path->arcTo(r, a, b, test); in FuzzNicePath()
/external/skqp/modules/pathkit/tests/
Dpath2d.spec.js41 path.arcTo(150, 100, 50, 200, 20);
/external/skia/modules/pathkit/tests/
Dpath2d.spec.js41 path.arcTo(150, 100, 50, 200, 20);
/external/skia/modules/pathkit/
Dexterns.js91 PathKit.SkPath.prototype.arcTo = function(x1, y1, x2, y2, radius) {}; method in PathKit.SkPath

1234