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=cedd6233848198e1fca4d1e14816baaf
|
2019-03-18 20:06:34 +00:00
|
|
|
REG_FIDDLE(Paint_getFillPath, 256, 192, false, 0) {
|
2019-03-15 18:22:51 +00:00
|
|
|
void draw(SkCanvas* canvas) {
|
|
|
|
SkPaint strokePaint;
|
|
|
|
strokePaint.setAntiAlias(true);
|
|
|
|
strokePaint.setStyle(SkPaint::kStroke_Style);
|
|
|
|
strokePaint.setStrokeWidth(.1f);
|
|
|
|
SkPath strokePath;
|
|
|
|
strokePath.moveTo(.08f, .08f);
|
|
|
|
strokePath.quadTo(.09f, .08f, .17f, .17f);
|
|
|
|
SkPath fillPath;
|
|
|
|
SkPaint outlinePaint(strokePaint);
|
|
|
|
outlinePaint.setStrokeWidth(2);
|
2020-05-21 16:11:27 +00:00
|
|
|
SkMatrix scale = SkMatrix::Scale(300, 300);
|
2019-03-15 18:22:51 +00:00
|
|
|
for (SkScalar precision : { 0.01f, .1f, 1.f, 10.f, 100.f } ) {
|
|
|
|
strokePaint.getFillPath(strokePath, &fillPath, nullptr, precision);
|
|
|
|
fillPath.transform(scale);
|
|
|
|
canvas->drawPath(fillPath, outlinePaint);
|
|
|
|
canvas->translate(60, 0);
|
|
|
|
if (1.f == precision) canvas->translate(-180, 100);
|
|
|
|
}
|
|
|
|
strokePath.transform(scale);
|
|
|
|
strokePaint.setStrokeWidth(30);
|
|
|
|
canvas->drawPath(strokePath, strokePaint);
|
|
|
|
}
|
|
|
|
} // END FIDDLE
|