Searched refs:arcSize (Results 1 – 6 of 6) sorted by relevance
/third_party/flutter/skia/docs/examples/ |
D | Path_arcTo_4.cpp | 11 for (auto arcSize : { SkPath::kSmall_ArcSize, SkPath::kLarge_ArcSize } ) { in draw() 14 path.arcTo(70, 40, 30, arcSize, sweep, 120.1f, 50); in draw() 15 if (SkPath::kCCW_Direction == sweep && SkPath::kLarge_ArcSize == arcSize) { in draw()
|
D | Path_ArcSize.cpp | 11 for (auto arcSize : { SkPath::kSmall_ArcSize, SkPath::kLarge_ArcSize } ) { in draw() 14 path.arcTo(70, 40, 30, arcSize, sweep, 156, 100); in draw() 15 if (SkPath::kCCW_Direction == sweep && SkPath::kLarge_ArcSize == arcSize) { in draw()
|
/third_party/skia/docs/examples/ |
D | Path_arcTo_4.cpp | 11 for (auto arcSize : { SkPath::kSmall_ArcSize, SkPath::kLarge_ArcSize } ) { in draw() 14 path.arcTo(70, 40, 30, arcSize, sweep, 120.1f, 50); in draw() 15 if (SkPathDirection::kCCW == sweep && SkPath::kLarge_ArcSize == arcSize) { in draw()
|
D | Path_ArcSize.cpp | 11 for (auto arcSize : { SkPath::kSmall_ArcSize, SkPath::kLarge_ArcSize } ) { in draw() 14 path.arcTo(70, 40, 30, arcSize, sweep, 156, 100); in draw() 15 if (SkPathDirection::kCCW == sweep && SkPath::kLarge_ArcSize == arcSize) { in draw()
|
/third_party/flutter/engine/flutter/lib/ui/painting/ |
D | path.cc | 149 const auto arcSize = isLargeArc ? SkPath::ArcSize::kLarge_ArcSize in arcToPoint() local 155 path_.arcTo(radiusX, radiusY, xAxisRotation, arcSize, direction, arcEndX, in arcToPoint() 166 const auto arcSize = isLargeArc ? SkPath::ArcSize::kLarge_ArcSize in relativeArcToPoint() local 171 path_.rArcTo(radiusX, radiusY, xAxisRotation, arcSize, direction, in relativeArcToPoint()
|
/third_party/skia/modules/canvaskit/ |
D | canvaskit_bindings.cpp | 238 auto arcSize = useSmallArc ? SkPath::ArcSize::kSmall_ArcSize : SkPath::ArcSize::kLarge_ArcSize; in ApplyArcToArcSize() local 240 orig.arcTo(rx, ry, xAxisRotate, arcSize, sweep, x, y); in ApplyArcToArcSize() 245 auto arcSize = useSmallArc ? SkPath::ArcSize::kSmall_ArcSize : SkPath::ArcSize::kLarge_ArcSize; in ApplyRArcToArcSize() local 247 orig.rArcTo(rx, ry, xAxisRotate, arcSize, sweep, dx, dy); in ApplyRArcToArcSize()
|