Flutter Engine
The Flutter Engine
Loading...
Searching...
No Matches
Path_cubicTo.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.
4// HASH=3e476378e3e0550ab134bbaf61112d98
5REG_FIDDLE(Path_cubicTo, 256, 256, false, 0) {
6void draw(SkCanvas* canvas) {
8 paint.setAntiAlias(true);
10 SkPath path;
11 path.moveTo(0, -10);
12 for (int i = 0; i < 128; i += 16) {
13 SkScalar c = i * 0.5f;
14 path.cubicTo( 10 + c, -10 - i, 10 + i, -10 - c, 10 + i, 0);
15 path.cubicTo( 14 + i, 14 + c, 14 + c, 14 + i, 0, 14 + i);
16 path.cubicTo(-18 - c, 18 + i, -18 - i, 18 + c, -18 - i, 0);
17 path.cubicTo(-22 - i, -22 - c, -22 - c, -22 - i, 0, -22 - i);
18 }
19 path.offset(128, 128);
20 canvas->drawPath(path, paint);
21}
22} // END FIDDLE
static void draw(SkCanvas *canvas, SkRect &target, int x, int y)
Definition aaclip.cpp:27
void drawPath(const SkPath &path, const SkPaint &paint)
@ kStroke_Style
set to stroke geometry
Definition SkPaint.h:194
const Paint & paint
#define REG_FIDDLE(NAME, W, H, TEXT, I)
Definition examples.h:60
float SkScalar
Definition extension.cpp:12