Hal Canary | 83c2f70 | 2019-03-07 14:53:03 -0500 | [diff] [blame] | 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. |
| 3 | #include "fiddle/examples.h" |
| 4 | // HASH=78ad51fa1cd33eb84a6f99061e56e067 |
| 5 | REG_FIDDLE(Path_051, 256, 110, false, 0) { |
| 6 | void 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 |