Options
These globals are now defined:
double duration; // The requested duration of the animation. double frame; // A value in [0, 1] of where we are in the animation.
This global is now defined:
GrBackendRenderTarget backEndRenderTarget;
GrBackendTexture backEndTextureRenderTarget;
Optional source image
These globals are now defined:
SkBitmap source; sk_sp<SkImage> image; GrBackendTexture backEndTexture; // GPU Only.
Note:
Adding comments with SK_FOLD_START and SK_FOLD_END creates foldable code
blocks.
These blocks will be folded by default and are useful for highlighting specific lines of code.
You can also use the keyboard shortcuts Ctrl+S and Ctrl+E in the code editor to set them.
These blocks will be folded by default and are useful for highlighting specific lines of code.
You can also use the keyboard shortcuts Ctrl+S and Ctrl+E in the code editor to set them.
xxxxxxxxxx
40
typedef struct Point {
double x;
double y;
} Point;
void move_point(Point *p, double angle, double len) {
p->x += len*cos(2*3.14*angle/360.0);
p->y -= len*sin(2*3.14*angle/360.0);
}
void draw_point(Point *p, SkCanvas *canvas, SkPaint paint) {
canvas->drawLine(p->x, p->y, p->x, p->y, paint);
}
void draw(SkCanvas* canvas) {
canvas->drawColor(SK_ColorWHITE);
SkPaint paint;
paint.setStyle(SkPaint::kStroke_Style);
paint.setStrokeWidth(10);
paint.setColor(0xff4285F4);
paint.setAntiAlias(true);
paint.setStrokeCap(SkPaint::kRound_Cap);
Point p = {
.x = 500,
.y = 500
};
draw_point(&p, canvas, paint);
move_point(&p, 45, 300);
draw_point(&p, canvas, paint);
}