blob: 345c34584ca2176cf0e4f7ad4a3c0eaf5617b857 [file] [log] [blame]
Hal Canary6c8422c2020-01-10 15:22:09 -05001// Copyright 2020 Google LLC.
2// Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.
3#include "tools/fiddle/examples.h"
4REG_FIDDLE(convex_overstroke_quad, 256, 256, false, 0) {
5void draw(SkCanvas* canvas) {
6 const float SCALE = 1;
7 const int WIDTH = 100;
8
9 canvas->scale(SCALE, SCALE);
10 canvas->translate(30, 30);
11
12 SkPoint p1 = SkPoint::Make(50, 50);
13 SkPoint p2 = SkPoint::Make(80, 50);
14
15 SkPoint p3 = SkPoint::Make(65, 30);
16
17 SkPath path;
18 path.moveTo(p1);
19 path.lineTo(p2);
20 path.quadTo(p3, p1);
21 // path.close();
22
23 SkPaint p;
24 p.setColor(SK_ColorRED);
25 p.setAntiAlias(true);
26 p.setStyle(SkPaint::kStroke_Style);
27 p.setStrokeWidth(WIDTH);
28
29 SkPath fillpath;
30 p.getFillPath(path, &fillpath);
31
32 SkPaint fillp;
33 fillp.setColor(SK_ColorBLACK);
34 fillp.setAntiAlias(true);
35 fillp.setStyle(SkPaint::kStroke_Style);
36
37 canvas->drawPath(path, p);
38 canvas->drawPath(fillpath, fillp);
39}
40} // END FIDDLE