blob: 799520d68b64c5739ccf9dcb13db12d33f5b2beb [file] [log] [blame]
Hal Canary87515122019-03-15 14:22:51 -04001// 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.
Mike Kleinc0bd9f92019-04-23 12:05:21 -05003#include "tools/fiddle/examples.h"
Hal Canary87515122019-03-15 14:22:51 -04004// HASH=3e476378e3e0550ab134bbaf61112d98
Hal Canarya7181e7c2019-03-18 16:06:34 -04005REG_FIDDLE(Path_cubicTo, 256, 256, false, 0) {
Hal Canary87515122019-03-15 14:22:51 -04006void draw(SkCanvas* canvas) {
7 SkPaint paint;
8 paint.setAntiAlias(true);
9 paint.setStyle(SkPaint::kStroke_Style);
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