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.
3 #include "tools/fiddle/examples.h"
4 REG_FIDDLE(Path_quadTo_2, 256, 256, false, 0) {
draw(SkCanvas * canvas)5 void draw(SkCanvas* canvas) {
6 SkPaint paint;
7 paint.setStyle(SkPaint::kStroke_Style);
8 paint.setAntiAlias(true);
9 SkPath path;
10 SkPoint pts[] = {{128, 10}, {10, 214}, {236, 214}};
11 path.moveTo(pts[1]);
12 for (int i = 0; i < 3; ++i) {
13 path.quadTo(pts[i % 3], pts[(i + 2) % 3]);
14 }
15 canvas->drawPath(path, paint);
16 }
17 } // END FIDDLE
18