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_addCircle, 256, 256, false, 0) { draw(SkCanvas * canvas)5void draw(SkCanvas* canvas) { 6 SkPaint paint; 7 paint.setAntiAlias(true); 8 paint.setStyle(SkPaint::kStroke_Style); 9 paint.setStrokeWidth(10); 10 for (int size = 10; size < 300; size += 20) { 11 SkPath path; 12 path.addCircle(128, 128, size, SkPathDirection::kCW); 13 canvas->drawPath(path, paint); 14 } 15 } 16 } // END FIDDLE 17