blob: 132e754a47ded39e0cacd833eef68fff36cf888c [file] [log] [blame]
Hal Canary83c2f702019-03-07 14:53:03 -05001// 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.
3#include "fiddle/examples.h"
4// HASH=2bffb6384cc20077e632e7d01da045ca
5REG_FIDDLE(Paint_053, 256, 200, false, 0) {
6void draw(SkCanvas* canvas) {
7 SkPaint paint;
8 paint.setStyle(SkPaint::kStroke_Style);
9 paint.setStrokeWidth(20);
10 SkPath path;
11 path.moveTo(30, 30);
12 path.lineTo(30, 30);
13 path.moveTo(70, 30);
14 path.lineTo(90, 40);
15 for (SkPaint::Cap c : { SkPaint::kButt_Cap, SkPaint::kRound_Cap, SkPaint::kSquare_Cap } ) {
16 paint.setStrokeCap(c);
17 canvas->drawPath(path, paint);
18 canvas->translate(0, 70);
19 }
20}
21} // END FIDDLE