You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
606 B
18 lines
606 B
// Copyright 2019 Google LLC.
|
|
// Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.
|
|
#include "tools/fiddle/examples.h"
|
|
// HASH=bd5286cb9a5e5c32cd980f72b8f400fb
|
|
REG_FIDDLE(Path_addCircle, 256, 256, false, 0) {
|
|
void draw(SkCanvas* canvas) {
|
|
SkPaint paint;
|
|
paint.setAntiAlias(true);
|
|
paint.setStyle(SkPaint::kStroke_Style);
|
|
paint.setStrokeWidth(10);
|
|
for (int size = 10; size < 300; size += 20) {
|
|
SkPath path;
|
|
path.addCircle(128, 128, size, SkPathDirection::kCW);
|
|
canvas->drawPath(path, paint);
|
|
}
|
|
}
|
|
} // END FIDDLE
|