blob: f2c76a7946447d03c49bf6497ac499df2706a5fe [file] [log] [blame]
Hal Canary87515122019-03-15 14:22:51 -04001#if 0 // Disabled until updated to use current API.
2// Copyright 2019 Google LLC.
3// 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 -05004#include "tools/fiddle/examples.h"
Hal Canary87515122019-03-15 14:22:51 -04005// HASH=56d01ccfedd71d3c504b09afa2875d38
Hal Canarya7181e7c2019-03-18 16:06:34 -04006REG_FIDDLE(Point_dot, 256, 256, false, 0) {
Hal Canary87515122019-03-15 14:22:51 -04007void draw(SkCanvas* canvas) {
8 SkPaint paint;
9 paint.setAntiAlias(true);
10 SkVector vectors[][2] = {{{50, 2}, {-14, 20}}, {{0, 50}, {-50, 0}}, {{-20, 25}, {25, -20}},
11 {{-20, -24}, {-24, -20}}};
12 SkPoint center[] = {{32, 32}, {160, 32}, {32, 160}, {160, 160}};
13 paint.setStrokeWidth(2);
14 for (size_t i = 0; i < 4; ++i) {
15 canvas->drawLine(center[i], center[i] + vectors[i][0], paint);
16 canvas->drawLine(center[i], center[i] + vectors[i][1], paint);
17 SkString str;
18 str.printf("dot = %g", vectors[i][0].dot(vectors[i][1]));
19 canvas->drawString(str, center[i].fX, center[i].fY, paint);
20 }
21}
22} // END FIDDLE
23#endif // Disabled until updated to use current API.