blob: 9cc6ea831df5b82daf3c42f9c6ec0c5b8ed0a8a1 [file] [log] [blame]
// Copyright 2019 Google LLC.
// Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.
#include "tools/fiddle/examples.h"
REG_FIDDLE(Matrix_mapRect_3, 256, 256, false, 0) {
void draw(SkCanvas* canvas) {
SkRect rect{110, 50, 180, 100};
SkMatrix matrix;
matrix.setRotate(50, 28, 28);
SkRect mapped = matrix.mapRect(rect);
SkPaint paint;
paint.setAntiAlias(true);
paint.setStyle(SkPaint::kStroke_Style);
canvas->drawRect(rect, paint);
canvas->drawRect(mapped, paint);
canvas->concat(matrix);
canvas->drawRect(rect, paint);
}
} // END FIDDLE