blob: b9e383534f3af3f9e3413a7407fee92f34c29399 [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=f5144ef4bd7cea294fad2f756ed335af
Hal Canarya7181e7c2019-03-18 16:06:34 -04005REG_FIDDLE(Matrix_postTranslate, 256, 160, false, 0) {
Hal Canary87515122019-03-15 14:22:51 -04006void draw(SkCanvas* canvas) {
7 SkPaint paint;
8 paint.setAntiAlias(true);
9 SkRect rect = {20, 20, 100, 100};
10 for (int i = 0; i < 2; ++i ) {
11 SkMatrix matrix;
12 i == 0 ? matrix.reset(): matrix.setRotate(25, rect.centerX(), 320);
13 {
14 SkAutoCanvasRestore acr(canvas, true);
15 canvas->concat(matrix);
16 paint.setColor(SK_ColorGRAY);
17 canvas->drawRect(rect, paint);
18 }
19 paint.setColor(SK_ColorRED);
20 for (int j = 0; j < 2; ++j ) {
21 SkAutoCanvasRestore acr(canvas, true);
22 matrix.postTranslate(40, 40);
23 canvas->concat(matrix);
24 canvas->drawCircle(0, 0, 3, paint);
25 }
26 }
27}
28} // END FIDDLE