xref: /aosp_15_r20/external/skia/docs/examples/RRect_setRectRadii.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(RRect_setRectRadii, 256, 128, false, 0) {
draw(SkCanvas * canvas)5 void draw(SkCanvas* canvas) {
6     SkPaint paint;
7     paint.setStrokeWidth(15);
8     paint.setStrokeCap(SkPaint::kSquare_Cap);
9     paint.setAntiAlias(true);
10     float intervals[] = { 5, 21.75f };
11     paint.setStyle(SkPaint::kStroke_Style);
12     paint.setPathEffect(SkDashPathEffect::Make(intervals, std::size(intervals), 0));
13     SkPath path;
14     SkRRect rrect;
15     SkVector corners[] = {{15, 17}, {17, 19}, {19, 15}, {15, 15}};
16     rrect.setRectRadii({20, 20, 100, 100}, corners);
17     path.addRRect(rrect, SkPathDirection::kCW);
18     canvas->drawPath(path, paint);
19     path.rewind();
20     path.addRRect(rrect, SkPathDirection::kCCW, 1);
21     canvas->translate(120, 0);
22     canvas->drawPath(path, paint);
23 }
24 }  // END FIDDLE
25