Flutter Engine
The Flutter Engine
Loading...
Searching...
No Matches
Path_addRect_2.cpp
Go to the documentation of this file.
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.
4// HASH=9202430b3f4f5275af8eec5cc9d7baa8
5REG_FIDDLE(Path_addRect_2, 256, 128, false, 0) {
6void draw(SkCanvas* canvas) {
7 const SkPoint arrow[] = { {5, -5}, {15, -5}, {20, 0}, {15, 5}, {5, 5}, {10, 0} };
8 const SkRect rect = {10, 10, 54, 54};
9 SkPaint rectPaint;
10 rectPaint.setAntiAlias(true);
12 SkPaint arrowPaint(rectPaint);
13 SkPath arrowPath;
14 arrowPath.addPoly(arrow, std::size(arrow), true);
15 arrowPaint.setPathEffect(SkPath1DPathEffect::Make(arrowPath, 176, 0,
17 for (auto direction : { SkPathDirection::kCW, SkPathDirection::kCCW } ) {
18 for (unsigned start : { 0, 1, 2, 3 } ) {
19 SkPath path;
20 path.addRect(rect, direction, start);
21 canvas->drawPath(path, rectPaint);
22 canvas->drawPath(path, arrowPaint);
23 canvas->translate(64, 0);
24 }
25 canvas->translate(-256, 64);
26 }
27}
28} // END FIDDLE
static void draw(SkCanvas *canvas, SkRect &target, int x, int y)
Definition aaclip.cpp:27
void translate(SkScalar dx, SkScalar dy)
void drawPath(const SkPath &path, const SkPaint &paint)
void setStyle(Style style)
Definition SkPaint.cpp:105
void setAntiAlias(bool aa)
Definition SkPaint.h:170
@ kStroke_Style
set to stroke geometry
Definition SkPaint.h:194
void setPathEffect(sk_sp< SkPathEffect > pathEffect)
static sk_sp< SkPathEffect > Make(const SkPath &path, SkScalar advance, SkScalar phase, Style)
SkPath & addPoly(const SkPoint pts[], int count, bool close)
Definition SkPath.cpp:880
#define REG_FIDDLE(NAME, W, H, TEXT, I)
Definition examples.h:60