Flutter Engine
The Flutter Engine
Point_setNormalize.cpp
Go to the documentation of this file.
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.
4REG_FIDDLE(Point_setNormalize, 256, 256, false, 0) {
5void draw(SkCanvas* canvas) {
7 paint.setAntiAlias(true);
8 const SkPoint points[] = { { 60, -110 }, { 90, 10 }, { 120, -110 }, { 180, -50 } };
9 const SkPoint origin = {0, 0};
10 canvas->translate(30, 140);
11 for (auto point : points) {
12 paint.setStrokeWidth(1);
13 paint.setColor(SK_ColorBLACK);
14 canvas->drawLine(origin, point, paint);
15 SkVector normal;
16 normal.setNormalize(point.fX, point.fY);
17 normal *= 100;
18 paint.setStrokeWidth(10);
19 paint.setColor(0x3f4512bf);
20 canvas->drawLine(origin, normal, paint);
21 }
22}
23} // END FIDDLE
static const int points[]
REG_FIDDLE(Point_setNormalize, 256, 256, false, 0)
constexpr SkColor SK_ColorBLACK
Definition: SkColor.h:103
static void draw(SkCanvas *canvas, SkRect &target, int x, int y)
Definition: aaclip.cpp:27
void translate(SkScalar dx, SkScalar dy)
Definition: SkCanvas.cpp:1278
void drawLine(SkScalar x0, SkScalar y0, SkScalar x1, SkScalar y1, const SkPaint &paint)
Definition: SkCanvas.cpp:2700
const Paint & paint
Definition: color_source.cc:38