Flutter Engine
The Flutter Engine
Loading...
Searching...
No Matches
Functions
IPoint_add_operator.cpp File Reference
#include "tools/fiddle/examples.h"

Go to the source code of this file.

Functions

 REG_FIDDLE (IPoint_add_operator, 256, 128, false, 0)
 

Function Documentation

◆ REG_FIDDLE()

REG_FIDDLE ( IPoint_add_operator  ,
256  ,
128  ,
false  ,
 
)

Definition at line 5 of file IPoint_add_operator.cpp.

5 {
6void 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 } };
17 paint.setAntiAlias(true);
19 canvas->scale(30, 15);
20 draw_lines(points, std::size(points), paint);
21 SkIPoint mod = {4, 1};
22 for (auto& point : points) {
23 point = point + mod;
24 mod.fX -= 1;
25 mod.fY += 1;
26 }
27 paint.setColor(SK_ColorRED);
28 draw_lines(points, std::size(points), paint);
29}
30} // END FIDDLE
int count
static const int points[]
constexpr SkColor SK_ColorRED
Definition SkColor.h:126
static void draw(SkCanvas *canvas, SkRect &target, int x, int y)
Definition aaclip.cpp:27
void drawLine(SkScalar x0, SkScalar y0, SkScalar x1, SkScalar y1, const SkPaint &paint)
void scale(SkScalar sx, SkScalar sy)
@ kStroke_Style
set to stroke geometry
Definition SkPaint.h:194
const Paint & paint
int32_t fX
x-axis value
void iset(int32_t x, int32_t y)