xref: /aosp_15_r20/external/skia/docs/examples/Path_addPoly_2.cpp (revision c8dee2aa9b3f27cf6c858bd81872bdeb2c07ed17)
1 // 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.
3 #include "tools/fiddle/examples.h"
4 REG_FIDDLE(Path_addPoly_2, 256, 256, false, 0) {
draw(SkCanvas * canvas)5 void draw(SkCanvas* canvas) {
6     SkPaint paint;
7     paint.setStrokeWidth(15);
8     paint.setStrokeCap(SkPaint::kRound_Cap);
9     for (bool close : { false, true } ) {
10         SkPath path;
11         path.addPoly({{20, 20}, {70, 20}, {40, 90}}, close);
12         for (auto style : {SkPaint::kStroke_Style, SkPaint::kFill_Style,
13                 SkPaint::kStrokeAndFill_Style} ) {
14             paint.setStyle(style);
15             canvas->drawPath(path, paint);
16             canvas->translate(85, 0);
17         }
18         canvas->translate(-255, 128);
19     }
20 }
21 }  // END FIDDLE
22