Flutter Engine
The Flutter Engine
Loading...
Searching...
No Matches
cubics_are_horrible.cpp
Go to the documentation of this file.
1// 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.
4REG_FIDDLE(cubics_are_horrible, 256, 256, false, 0) {
5void draw(SkCanvas* canvas) {
6 canvas->scale(0.4, 0.4);
7 canvas->translate(175, 175);
8
9 SkPaint p;
10 p.setColor(SK_ColorBLACK);
11 p.setAntiAlias(true);
12 p.setStyle(SkPaint::kStroke_Style);
13 p.setStrokeWidth(400);
14
15 SkPoint p1 = SkPoint::Make(60, -40);
16 SkPoint p2 = SkPoint::Make(120, 150);
17 SkPoint p3 = SkPoint::Make(180, 60);
18
19 SkPath path;
20 path.moveTo(20, 60);
21 path.cubicTo(p1, p2, p3);
22 // path.close();
23
24 SkPath fillpath;
25 skpathutils::FillPathWithPaint(path, p, &fillpath);
26 SkPaint fillp;
28 fillp.setAntiAlias(true);
30 fillp.setStrokeWidth(0);
31
32 canvas->drawPath(path, p);
33 canvas->drawPath(fillpath, fillp);
34}
35} // END FIDDLE
constexpr SkColor SK_ColorMAGENTA
Definition SkColor.h:147
constexpr SkColor SK_ColorBLACK
Definition SkColor.h:103
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 scale(SkScalar sx, SkScalar sy)
void setStyle(Style style)
Definition SkPaint.cpp:105
void setColor(SkColor color)
Definition SkPaint.cpp:119
void setAntiAlias(bool aa)
Definition SkPaint.h:170
@ kStroke_Style
set to stroke geometry
Definition SkPaint.h:194
void setStrokeWidth(SkScalar width)
Definition SkPaint.cpp:159
#define REG_FIDDLE(NAME, W, H, TEXT, I)
Definition examples.h:60
SK_API bool FillPathWithPaint(const SkPath &src, const SkPaint &paint, SkPath *dst, const SkRect *cullRect, SkScalar resScale=1)
static constexpr SkPoint Make(float x, float y)