blob: 43f7c8711d93f5553b25f72a1b28609e984eac80 [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=888edd4c4a91ca62ceb01bce8ab675b2
Hal Canarya7181e7c2019-03-18 16:06:34 -04005REG_FIDDLE(Path_addRRect_2, 256, 256, false, 0) {
Hal Canary87515122019-03-15 14:22:51 -04006void draw(SkCanvas* canvas) {
7 SkPaint paint;
8 paint.setAntiAlias(true);
9 SkRRect rrect;
10 rrect.setRectXY({40, 40, 215, 215}, 50, 50);
11 SkPath path;
12 path.addRRect(rrect);
13 canvas->drawPath(path, paint);
14 for (int start = 0; start < 8; ++start) {
15 SkPath textPath;
Mike Reed30bc5272019-11-22 18:34:02 +000016 textPath.addRRect(rrect, SkPathDirection::kCW, start);
Hal Canary87515122019-03-15 14:22:51 -040017 SkPathMeasure pathMeasure(textPath, false);
18 SkPoint position;
19 SkVector tangent;
20 if (!pathMeasure.getPosTan(0, &position, &tangent)) {
21 continue;
22 }
23 SkRSXform rsxForm = SkRSXform::Make(tangent.fX, tangent.fY,
24 position.fX + tangent.fY * 5, position.fY - tangent.fX * 5);
Hal Canary3d42a052019-03-15 16:43:29 -040025 SkFont font(nullptr, 12);
26 auto labels = SkTextBlob::MakeFromRSXform(&"01234567"[start], 1, &rsxForm, font);
27 canvas->drawTextBlob(labels, 0, 0, paint);
Hal Canary87515122019-03-15 14:22:51 -040028 }
29}
30} // END FIDDLE