2019-03-15 18:22:51 +00:00
|
|
|
// Copyright 2019 Google LLC.
|
|
|
|
// Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.
|
2019-04-23 17:05:21 +00:00
|
|
|
#include "tools/fiddle/examples.h"
|
2019-03-15 18:22:51 +00:00
|
|
|
// HASH=24736f685f265cf533f1700c042db353
|
2019-03-18 20:06:34 +00:00
|
|
|
REG_FIDDLE(Path_addRoundRect, 256, 256, false, 0) {
|
2019-03-15 18:22:51 +00:00
|
|
|
void draw(SkCanvas* canvas) {
|
|
|
|
SkPaint paint;
|
|
|
|
paint.setAntiAlias(true);
|
|
|
|
for (auto xradius : { 0, 7, 13, 20 } ) {
|
|
|
|
for (auto yradius : { 0, 9, 18, 40 } ) {
|
|
|
|
SkPath path;
|
|
|
|
path.addRoundRect({10, 10, 36, 46}, xradius, yradius);
|
|
|
|
paint.setColor(path.isRect(nullptr) ? SK_ColorRED : path.isOval(nullptr) ?
|
|
|
|
SK_ColorBLUE : path.isConvex() ? SK_ColorGRAY : SK_ColorGREEN);
|
|
|
|
canvas->drawPath(path, paint);
|
|
|
|
canvas->translate(64, 0);
|
|
|
|
}
|
|
|
|
canvas->translate(-256, 64);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} // END FIDDLE
|