blob: ee308292d267153d5c5664a8c1c84c63004e58e6 [file] [log] [blame]
Hal Canary87515122019-03-15 14:22:51 -04001// 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.
Mike Kleinc0bd9f92019-04-23 12:05:21 -05003#include "tools/fiddle/examples.h"
Hal Canary87515122019-03-15 14:22:51 -04004// HASH=f2260f2a170a54aef5bafe5b91c121b3
Hal Canarya7181e7c2019-03-18 16:06:34 -04005REG_FIDDLE(Path_incReserve, 256, 192, false, 0) {
Hal Canary87515122019-03-15 14:22:51 -04006void draw(SkCanvas* canvas) {
7 auto addPoly = [](int sides, SkScalar size, SkPath* path) -> void {
8 path->moveTo(size, 0);
9 for (int i = 1; i < sides; i++) {
Brian Osman4428f2c2019-04-02 10:59:28 -040010 SkScalar rad = SK_ScalarPI * 2 * i / sides;
11 path->lineTo(SkScalarCos(rad) * size, SkScalarSin(rad) * size);
Hal Canary87515122019-03-15 14:22:51 -040012 }
13 path->close();
14 };
15 SkPath path;
16 path.incReserve(3 + 4 + 5 + 6 + 7 + 8 + 9);
17 for (int sides = 3; sides < 10; ++sides) {
18 addPoly(sides, sides, &path);
19 }
20 SkMatrix matrix;
21 matrix.setScale(10, 10, -10, -10);
22 path.transform(matrix);
23 SkPaint paint;
24 paint.setStyle(SkPaint::kStroke_Style);
25 canvas->drawPath(path, paint);
26}
27} // END FIDDLE