blob: af0862fa87acaf392c56b84e6517bc93d25fa59d [file]
// 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"
REG_FIDDLE(Path_isOval, 256, 256, false, 0) {
void draw(SkCanvas* canvas) {
SkPaint paint;
SkPath path = SkPath::Oval({20, 20, 220, 220});
SkRect bounds;
if (path.isOval(&bounds)) {
paint.setColor(0xFF9FBFFF);
canvas->drawRect(bounds, paint);
}
paint.setColor(0x3f000000);
canvas->drawPath(path, paint);
}
} // END FIDDLE