Flutter Engine
The Flutter Engine
Functions
Path_ArcSize.cpp File Reference
#include "tools/fiddle/examples.h"

Go to the source code of this file.

Functions

 REG_FIDDLE (Path_ArcSize, 256, 160, false, 0)
 

Function Documentation

◆ REG_FIDDLE()

REG_FIDDLE ( Path_ArcSize  ,
256  ,
160  ,
false  ,
 
)

Definition at line 4 of file Path_ArcSize.cpp.

4 {
5void draw(SkCanvas* canvas) {
7 paint.setAntiAlias(true);
9 for (auto sweep: { SkPathDirection::kCW, SkPathDirection::kCCW } ) {
10 for (auto arcSize : { SkPath::kSmall_ArcSize, SkPath::kLarge_ArcSize } ) {
12 path.moveTo({120, 50});
13 path.arcTo(70, 40, 30, arcSize, sweep, 156, 100);
14 if (SkPathDirection::kCCW == sweep && SkPath::kLarge_ArcSize == arcSize) {
15 paint.setColor(SK_ColorBLUE);
16 paint.setStrokeWidth(3);
17 }
18 canvas->drawPath(path, paint);
19 }
20 }
21}
22} // END FIDDLE
constexpr SkColor SK_ColorBLUE
Definition: SkColor.h:135
static void draw(SkCanvas *canvas, SkRect &target, int x, int y)
Definition: aaclip.cpp:27
void drawPath(const SkPath &path, const SkPaint &paint)
Definition: SkCanvas.cpp:1747
@ kStroke_Style
set to stroke geometry
Definition: SkPaint.h:194
Definition: SkPath.h:59
@ kSmall_ArcSize
smaller of arc pair
Definition: SkPath.h:924
@ kLarge_ArcSize
larger of arc pair
Definition: SkPath.h:925
const Paint & paint
Definition: color_source.cc:38
DEF_SWITCHES_START aot vmservice shared library Name of the *so containing AOT compiled Dart assets for launching the service isolate vm snapshot The VM snapshot data that will be memory mapped as read only SnapshotAssetPath must be present isolate snapshot The isolate snapshot data that will be memory mapped as read only SnapshotAssetPath must be present cache dir path
Definition: switches.h:57