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_moveTo, 140, 100, false, 0) {
draw(SkCanvas * canvas)5 void draw(SkCanvas* canvas) {
6 SkRect rect = { 20, 20, 120, 80 };
7 SkPath path;
8 path.addRect(rect);
9 path.moveTo(rect.fLeft, rect.fTop);
10 path.lineTo(rect.fRight, rect.fBottom);
11 path.moveTo(rect.fLeft, rect.fBottom);
12 path.lineTo(rect.fRight, rect.fTop);
13 SkPaint paint;
14 paint.setStyle(SkPaint::kStroke_Style);
15 canvas->drawPath(path, paint);
16 }
17 } // END FIDDLE
18