blob: 1a111d41a20ee41a15e325a8e7a1e813b0549ad8 [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=78ad51fa1cd33eb84a6f99061e56e067
5REG_FIDDLE(Path_051, 256, 110, false, 0) {
6void draw(SkCanvas* canvas) {
7 SkPaint paint;
8 paint.setAntiAlias(true);
9 paint.setStyle(SkPaint::kStroke_Style);
10 SkPoint quadPts[] = {{20, 90}, {120, 10}, {220, 90}};
11 canvas->drawLine(quadPts[0], quadPts[1], paint);
12 canvas->drawLine(quadPts[1], quadPts[2], paint);
13 SkPath path;
14 path.moveTo(quadPts[0]);
15 path.quadTo(quadPts[1], quadPts[2]);
16 paint.setStrokeWidth(3);
17 canvas->drawPath(path, paint);
18}
19} // END FIDDLE