Flutter Engine
The Flutter Engine
Matrix_mapRect.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(Matrix_mapRect, 256, 256, false, 0) {
5void draw(SkCanvas* canvas) {
7 paint.setAntiAlias(true);
9 matrix.setRotate(45, 128, 128);
10 SkRect rotatedBounds, bounds = {40, 50, 190, 200};
11 matrix.mapRect(&rotatedBounds, bounds );
12 paint.setColor(SK_ColorGRAY);
13 canvas->drawRect(rotatedBounds, paint);
14 canvas->concat(matrix);
15 paint.setColor(SK_ColorRED);
16 canvas->drawRect(bounds, paint);
17}
18} // END FIDDLE
REG_FIDDLE(Matrix_mapRect, 256, 256, false, 0)
constexpr SkColor SK_ColorGRAY
Definition: SkColor.h:113
constexpr SkColor SK_ColorRED
Definition: SkColor.h:126
static void draw(SkCanvas *canvas, SkRect &target, int x, int y)
Definition: aaclip.cpp:27
void drawRect(const SkRect &rect, const SkPaint &paint)
Definition: SkCanvas.cpp:1673
void concat(const SkMatrix &matrix)
Definition: SkCanvas.cpp:1318
const Paint & paint
Definition: color_source.cc:38
unsigned useCenter Optional< SkMatrix > matrix
Definition: SkRecords.h:258
Optional< SkRect > bounds
Definition: SkRecords.h:189