1 // Copyright 2020 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(pathmeasure, 256, 256, true, 0) {
draw(SkCanvas * canvas)5 void draw(SkCanvas* canvas) {
6 SkPath path;
7 path.moveTo(0, 0);
8 path.lineTo(1, 0);
9 path.moveTo(0, 1);
10 path.lineTo(1, 1);
11 SkPathMeasure measure(path, false);
12 SkPath result;
13 measure.getSegment(.5, 1.5, &result, true);
14 result.dump();
15 }
16 } // END FIDDLE
17