Searched refs:xAxisRotate (Results 1 - 5 of 5) sorted by relevance
/third_party/skia/include/core/ |
H A D | SkPath.h | 900 describe part of oval with radii (rx, ry) rotated by xAxisRotate degrees. Arc 916 @param xAxisRotate x-axis rotation in degrees; positive values are clockwise 923 SkPath& arcTo(SkScalar rx, SkScalar ry, SkScalar xAxisRotate, ArcSize largeArc, 927 part of oval with radii (r.fX, r.fY) rotated by xAxisRotate degrees. Arc curves 943 @param xAxisRotate x-axis rotation in degrees; positive values are clockwise 949 SkPath& arcTo(const SkPoint r, SkScalar xAxisRotate, ArcSize largeArc, SkPathDirection sweep, in arcTo() argument 951 return this->arcTo(r.fX, r.fY, xAxisRotate, largeArc, sweep, xy.fX, xy.fY); in arcTo() 956 xAxisRotate degrees. Arc curves from last SkPath SkPoint to relative end SkPoint: 973 @param xAxisRotate x-axis rotation in degrees; positive values are clockwise 980 SkPath& rArcTo(SkScalar rx, SkScalar ry, SkScalar xAxisRotate, ArcSiz [all...] |
H A D | SkPathBuilder.h | 138 part of oval with radii (r.fX, r.fY) rotated by xAxisRotate degrees. Arc curves 154 @param xAxisRotate x-axis rotation in degrees; positive values are clockwise 160 SkPathBuilder& arcTo(SkPoint r, SkScalar xAxisRotate, ArcSize largeArc, SkPathDirection sweep,
|
/third_party/skia/modules/canvaskit/ |
H A D | interface.js | 191 // describe part of oval with radii (rx, ry) rotated by xAxisRotate degrees. Arc 204 CanvasKit.Path.prototype.arcToRotated = function(rx, ry, xAxisRotate, useSmallArc, isCCW, x, y) { 205 this._arcToRotated(rx, ry, xAxisRotate, !!useSmallArc, !!isCCW, x, y); 297 CanvasKit.Path.prototype.rArcTo = function(rx, ry, xAxisRotate, useSmallArc, isCCW, dx, dy) { 298 this._rArcTo(rx, ry, xAxisRotate, useSmallArc, isCCW, dx, dy);
|
H A D | canvaskit_bindings.cpp | 236 void ApplyArcToArcSize(SkPath& orig, SkScalar rx, SkScalar ry, SkScalar xAxisRotate, in ApplyArcToArcSize() argument 240 orig.arcTo(rx, ry, xAxisRotate, arcSize, sweep, x, y); in ApplyArcToArcSize() 243 void ApplyRArcToArcSize(SkPath& orig, SkScalar rx, SkScalar ry, SkScalar xAxisRotate, in ApplyRArcToArcSize() argument 247 orig.rArcTo(rx, ry, xAxisRotate, arcSize, sweep, dx, dy); in ApplyRArcToArcSize()
|
/third_party/skia/src/core/ |
H A D | SkPath.cpp | 1295 SkPath& SkPath::rArcTo(SkScalar rx, SkScalar ry, SkScalar xAxisRotate, SkPath::ArcSize largeArc, in rArcTo() argument 1299 return this->arcTo(rx, ry, xAxisRotate, largeArc, sweep, in rArcTo()
|
Completed in 16 milliseconds