blob: 7bfc18c7f642370ae3e4743b8f384665d14e31d6 [file] [log] [blame]
Hal Canary83c2f702019-03-07 14:53:03 -05001// 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 "fiddle/examples.h"
4// HASH=404f11c5c9c9ca8a64822d484552a473
5REG_FIDDLE(Path_009, 256, 60, false, 0) {
6void draw(SkCanvas* canvas) {
7 SkPaint paint;
8 paint.setAntiAlias(true);
9 paint.setStyle(SkPaint::kStroke_Style);
10 SkPath path, path2;
11 path.moveTo(20, 20);
12 path.lineTo(40, 40);
13 path.lineTo(20, 40);
14 path.lineTo(40, 20);
15 path.close();
16 path2.addRect({20, 20, 40, 40});
17 for (SkScalar i = 0; i <= 1; i += 1.f / 6) {
18 SkPath interp;
19 path.interpolate(path2, i, &interp);
20 canvas->drawPath(interp, paint);
21 canvas->translate(30, 0);
22 }
23}
24} // END FIDDLE