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// HASH=9cf5122475624e4cf39f06c698f80b1a
5REG_FIDDLE(Path_addArc, 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
19