blob: 798eaae6b54245d912a8e6ca787f681152e613c2 [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=9202430b3f4f5275af8eec5cc9d7baa8
Hal Canarya7181e7c2019-03-18 16:06:34 -04005REG_FIDDLE(Path_addRect_2, 256, 128, false, 0) {
Hal Canary87515122019-03-15 14:22:51 -04006void 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);
11 rectPaint.setStyle(SkPaint::kStroke_Style);
12 SkPaint arrowPaint(rectPaint);
13 SkPath arrowPath;
14 arrowPath.addPoly(arrow, SK_ARRAY_COUNT(arrow), true);
15 arrowPaint.setPathEffect(SkPath1DPathEffect::Make(arrowPath, 176, 0,
16 SkPath1DPathEffect::kRotate_Style));
Mike Reed30bc5272019-11-22 18:34:02 +000017 for (auto direction : { SkPathDirection::kCW, SkPathDirection::kCCW } ) {
Hal Canary87515122019-03-15 14:22:51 -040018 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