blob: 10ba277d15f4f11ad8d4d3830a7d2c6330b773c9 [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=404f11c5c9c9ca8a64822d484552a473
Hal Canarya7181e7c2019-03-18 16:06:34 -04005REG_FIDDLE(Path_interpolate, 256, 60, 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, 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