Flutter Engine
The Flutter Engine
Loading...
Searching...
No Matches
Path_close.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=9235f6309271d6420fa5c45dc28664c5
5REG_FIDDLE(Path_close, 256, 256, false, 0) {
6void draw(SkCanvas* canvas) {
8 paint.setStrokeWidth(15);
9 paint.setStrokeCap(SkPaint::kRound_Cap);
10 SkPath path;
11 const SkPoint points[] = {{20, 20}, {70, 20}, {40, 90}};
12 path.addPoly(points, std::size(points), false);
13 for (int loop = 0; loop < 2; ++loop) {
16 paint.setStyle(style);
17 canvas->drawPath(path, paint);
18 canvas->translate(85, 0);
19 }
20 path.close();
21 canvas->translate(-255, 128);
22 }
23}
24} // END FIDDLE
static const int points[]
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)
@ kRound_Cap
adds circle
Definition SkPaint.h:335
@ kStroke_Style
set to stroke geometry
Definition SkPaint.h:194
@ kFill_Style
set to fill geometry
Definition SkPaint.h:193
@ kStrokeAndFill_Style
sets to stroke and fill geometry
Definition SkPaint.h:195
const Paint & paint
#define REG_FIDDLE(NAME, W, H, TEXT, I)
Definition examples.h:60