blob: 1d80d75b4a097c50173fd4cc39b282dc9099e301 [file] [log] [blame]
reed@google.com8d850be2012-07-13 15:55:15 +00001/*
2 * Copyright 2012 Google Inc.
3 *
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
6 */
7
8#include "gm.h"
9#include "SkCanvas.h"
10#include "SkPath.h"
11#include "SkParsePath.h"
12#include "SkDashPathEffect.h"
13
14/*
15 * Inspired by http://code.google.com/p/chromium/issues/detail?id=112145
16 */
reeda4393342016-03-18 11:22:57 -070017static void flower(SkCanvas* canvas, const SkPath& path, SkScalar intervals[2],
18 SkPaint::Join join) {
19 SkPaint paint;
20 paint.setAntiAlias(true);
21 paint.setStyle(SkPaint::kStroke_Style);
22 paint.setStrokeJoin(join);
23 paint.setStrokeWidth(42);
24 canvas->drawPath(path, paint);
caryclark6df8e342015-02-23 12:47:03 -080025
reeda4393342016-03-18 11:22:57 -070026 paint.setColor(SK_ColorRED);
27 paint.setStrokeWidth(21);
28 paint.setPathEffect(SkDashPathEffect::Make(intervals, 2, 0));
29 canvas->drawPath(path, paint);
caryclark6df8e342015-02-23 12:47:03 -080030
reeda4393342016-03-18 11:22:57 -070031 paint.setColor(SK_ColorGREEN);
32 paint.setPathEffect(nullptr);
33 paint.setStrokeWidth(0);
34 canvas->drawPath(path, paint);
halcanary2a243382015-09-09 08:16:41 -070035}
reed@google.com8d850be2012-07-13 15:55:15 +000036
reed6dc14aa2016-04-11 07:46:38 -070037DEF_SIMPLE_GM(dashcubics, canvas, 865, 750) {
reed@google.com8d850be2012-07-13 15:55:15 +000038 SkPath path;
39 const char* d = "M 337,98 C 250,141 250,212 250,212 C 250,212 250,212 250,212"
40 "C 250,212 250,212 250,212 C 250,212 250,141 163,98 C 156,195 217,231 217,231"
41 "C 217,231 217,231 217,231 C 217,231 217,231 217,231 C 217,231 156,195 75,250"
42 "C 156,305 217,269 217,269 C 217,269 217,269 217,269 C 217,269 217,269 217,269"
43 "C 217,269 156,305 163,402 C 250,359 250,288 250,288 C 250,288 250,288 250,288"
44 "C 250,288 250,288 250,288 C 250,288 250,359 338,402 C 345,305 283,269 283,269"
45 "C 283,269 283,269 283,269 C 283,269 283,269 283,269 C 283,269 345,305 425,250"
46 "C 344,195 283,231 283,231 C 283,231 283,231 283,231 C 283,231 283,231 283,231"
47 "C 283,231 344,195 338,98";
48
49 SkParsePath::FromSVGString(d, &path);
caryclark6df8e342015-02-23 12:47:03 -080050 canvas->translate(-35.f, -55.f);
51 for (int x = 0; x < 2; ++x) {
52 for (int y = 0; y < 2; ++y) {
53 canvas->save();
54 canvas->translate(x * 430.f, y * 355.f);
55 SkScalar intervals[] = { 5 + (x ? 0 : 0.0001f + 0.0001f), 10 };
56 flower(canvas, path, intervals, y ? SkPaint::kDefault_Join : SkPaint::kRound_Join);
57 canvas->restore();
58 }
59 }
halcanary2a243382015-09-09 08:16:41 -070060}
Mike Reed41232232018-03-07 17:02:47 -050061
62#include "SkTrimPathEffect.h"
63class TrimGM : public skiagm::GM {
64public:
65 TrimGM() {}
66
67protected:
68 SkString onShortName() override { return SkString("trimpatheffect"); }
69
70 SkISize onISize() override { return SkISize::Make(1240, 390); }
71
72 void onDraw(SkCanvas* canvas) override {
73 SkPaint paint;
74 paint.setPathEffect(SkTrimPathEffect::Make(0.25 + fOffset, 0.75));
75 paint.setStyle(SkPaint::kStroke_Style);
76 paint.setAntiAlias(true);
77 paint.setStrokeWidth(10);
78
79 SkPath path;
80 path.moveTo(50, 300);
81 path.cubicTo(100, 50, 150, 550, 200, 300);
82
83 paint.setColor(0xFF888888);
84 canvas->drawPath(path, paint);
85 paint.setPathEffect(nullptr);
86 paint.setStrokeWidth(0);
87 paint.setColor(0xFF000000);
88 canvas->drawPath(path, paint);
89 }
90
91 bool onAnimate(const SkAnimTimer&) override {
92 // fOffset += 1;
93 return true;
94 }
95private:
96 SkScalar fOffset = 0;
97 typedef skiagm::GM INHERITED;
98};
99DEF_GM(return new TrimGM;)
100