Flutter Engine
The Flutter Engine
Loading...
Searching...
No Matches
Functions
Path_addRRect_2.cpp File Reference
#include "tools/fiddle/examples.h"

Go to the source code of this file.

Functions

 REG_FIDDLE (Path_addRRect_2, 256, 256, false, 0)
 

Function Documentation

◆ REG_FIDDLE()

REG_FIDDLE ( Path_addRRect_2  ,
256  ,
256  ,
false  ,
 
)

Definition at line 5 of file Path_addRRect_2.cpp.

5 {
6void draw(SkCanvas* canvas) {
8 paint.setAntiAlias(true);
10 rrect.setRectXY({40, 40, 215, 215}, 50, 50);
12 path.addRRect(rrect);
13 canvas->drawPath(path, paint);
14 for (int start = 0; start < 8; ++start) {
15 SkPath textPath;
16 textPath.addRRect(rrect, SkPathDirection::kCW, start);
17 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);
25 SkFont font(fontMgr->matchFamilyStyle(nullptr, {}), 12);
26 auto labels = SkTextBlob::MakeFromRSXform(&"01234567"[start], 1, &rsxForm, font);
27 canvas->drawTextBlob(labels, 0, 0, paint);
28 }
29}
30} // END FIDDLE
static void draw(SkCanvas *canvas, SkRect &target, int x, int y)
Definition aaclip.cpp:27
void drawPath(const SkPath &path, const SkPaint &paint)
void drawTextBlob(const SkTextBlob *blob, SkScalar x, SkScalar y, const SkPaint &paint)
sk_sp< SkTypeface > matchFamilyStyle(const char familyName[], const SkFontStyle &) const
SkPath & addRRect(const SkRRect &rrect, SkPathDirection dir=SkPathDirection::kCW)
Definition SkPath.cpp:990
void setRectXY(const SkRect &rect, SkScalar xRad, SkScalar yRad)
Definition SkRRect.cpp:52
static sk_sp< SkTextBlob > MakeFromRSXform(const void *text, size_t byteLength, const SkRSXform xform[], const SkFont &font, SkTextEncoding encoding=SkTextEncoding::kUTF8)
const Paint & paint
sk_sp< SkFontMgr > fontMgr
Definition examples.cpp:32
SkRRect rrect
Definition SkRecords.h:232
DEF_SWITCHES_START aot vmservice shared library Name of the *so containing AOT compiled Dart assets for launching the service isolate vm snapshot The VM snapshot data that will be memory mapped as read only SnapshotAssetPath must be present isolate snapshot The isolate snapshot data that will be memory mapped as read only SnapshotAssetPath must be present cache dir path
Definition switches.h:57
font
Font Metadata and Metrics.
float fX
x-axis value
float fY
y-axis value
static SkRSXform Make(SkScalar scos, SkScalar ssin, SkScalar tx, SkScalar ty)
Definition SkRSXform.h:24