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_offset_2, 256, 60, false, 0) { draw(SkCanvas * canvas)5void draw(SkCanvas* canvas) { 6 SkPath path; 7 path.moveTo(20, 20); 8 path.lineTo(20, 40); 9 path.lineTo(40, 20); 10 SkPaint paint; 11 paint.setStyle(SkPaint::kStroke_Style); 12 for (int i = 0; i < 10; i++) { 13 canvas->drawPath(path, paint); 14 path.offset(20, 0); 15 } 16 } 17 } // END FIDDLE 18