Flutter Engine
The Flutter Engine
Path_arcTo_3.cpp
Go to the documentation of this file.
1// Copyright 2019 Google LLC.
2// Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.
4REG_FIDDLE(Path_arcTo_3, 256, 256, true, 0) {
5void draw(SkCanvas* canvas) {
7 path.moveTo({156, 20});
8 path.arcTo({200, 20}, {170, 20}, 50);
9 SkPath::Iter iter(path, false);
10 SkPoint p[4];
11 SkPath::Verb verb;
12 while (SkPath::kDone_Verb != (verb = iter.next(p))) {
13 switch (verb) {
15 SkDebugf("move to (%g,%g)\n", p[0].fX, p[0].fY);
16 break;
18 SkDebugf("line (%g,%g),(%g,%g)\n", p[0].fX, p[0].fY, p[1].fX, p[1].fY);
19 break;
21 SkDebugf("conic (%g,%g),(%g,%g),(%g,%g) weight %g\n",
22 p[0].fX, p[0].fY, p[1].fX, p[1].fY, p[2].fX, p[2].fY, iter.conicWeight());
23 break;
24 default:
25 SkDebugf("unexpected verb\n");
26 }
27 }
28}
29} // END FIDDLE
REG_FIDDLE(Path_arcTo_3, 256, 256, true, 0)
Definition: Path_arcTo_3.cpp:4
void SK_SPI SkDebugf(const char format[],...) SK_PRINTF_LIKE(1
static void draw(SkCanvas *canvas, SkRect &target, int x, int y)
Definition: aaclip.cpp:27
Verb next(SkPoint pts[4])
Definition: SkPath.cpp:1901
SkScalar conicWeight() const
Definition: SkPath.h:1535
Definition: SkPath.h:59
@ kMove_Verb
Definition: SkPath.h:1466
@ kConic_Verb
Definition: SkPath.h:1469
@ kDone_Verb
Definition: SkPath.h:1472
@ kLine_Verb
Definition: SkPath.h:1467
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