Flutter Engine
The Flutter Engine
Path_rLineTo.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_rLineTo, 256, 128, false, 0) {
5void draw(SkCanvas* canvas) {
7 paint.setAntiAlias(true);
10 path.moveTo(10, 98);
11 SkScalar x = 0, y = 0;
12 for (int i = 10; i < 100; i += 5) {
13 x += i * ((i & 2) - 1);
14 y += i * (((i + 1) & 2) - 1);
15 path.rLineTo(x, y);
16 }
17 canvas->drawPath(path, paint);
18}
19} // END FIDDLE
REG_FIDDLE(Path_rLineTo, 256, 128, false, 0)
Definition: Path_rLineTo.cpp:4
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
const Paint & paint
Definition: color_source.cc:38
float SkScalar
Definition: extension.cpp:12
double y
double x
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