blob: 9fbfc6cc5eac26d6501e59fe349ecae2b128b664 [file] [log] [blame]
Hal Canary87515122019-03-15 14:22:51 -04001// 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.
Mike Kleinc0bd9f92019-04-23 12:05:21 -05003#include "tools/fiddle/examples.h"
Hal Canary87515122019-03-15 14:22:51 -04004// HASH=a01e533dc7ab34ed728dc4e7a5f1f0ee
Hal Canarya7181e7c2019-03-18 16:06:34 -04005REG_FIDDLE(IPoint_subtractfrom_operator, 256, 64, false, 0) {
Hal Canary87515122019-03-15 14:22:51 -04006void draw(SkCanvas* canvas) {
7 auto draw_lines = [=](const SkIPoint pts[], size_t count, SkPaint& paint) -> void {
8 for (size_t i = 0; i < count - 1; ++i) {
9 SkPoint p0, p1;
10 p0.iset(pts[i]);
11 p1.iset(pts[i + 1]);
12 canvas->drawLine(p0, p1, paint);
13 }
14 };
15 SkIPoint points[] = { { 3, 1 }, { 4, 2 }, { 5, 1 }, { 7, 3 } };
16 SkPaint paint;
17 paint.setAntiAlias(true);
18 paint.setStyle(SkPaint::kStroke_Style);
19 canvas->scale(30, 15);
20 draw_lines(points, SK_ARRAY_COUNT(points), paint);
21 points[1] -= {1, 1};
22 points[2] -= {-1, -1};
23 paint.setColor(SK_ColorRED);
24 draw_lines(points, SK_ARRAY_COUNT(points), paint);
25}
26} // END FIDDLE