blob: c21bc05c0964aaa55563c18dba32256211a5d172 [file] [log] [blame]
Hal Canary83c2f702019-03-07 14:53:03 -05001// 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 "fiddle/examples.h"
4// HASH=9cf5122475624e4cf39f06c698f80b1a
5REG_FIDDLE(Path_088, 256, 256, false, 0) {
6void draw(SkCanvas* canvas) {
7 SkPaint paint;
8 for (auto start : { 0, 90, 135, 180, 270 } ) {
9 for (auto sweep : { -450.f, -180.f, -90.f, 90.f, 180.f, 360.1f } ) {
10 SkPath path;
11 path.addArc({10, 10, 35, 45}, start, sweep);
12 canvas->drawPath(path, paint);
13 canvas->translate(252 / 6, 0);
14 }
15 canvas->translate(-252, 255 / 5);
16 }
17}
18} // END FIDDLE