blob: 2e25ee2f2028f92689489a3b9f1701ab7d70089b [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_mapRectScaleTranslate, 256, 256, false, 0) {
void draw(SkCanvas* canvas) {
SkPaint paint;
SkMatrix matrix;
SkRect rect = {100, 50, 150, 180};
matrix.setScale(2, .5f, rect.centerX(), rect.centerY());
SkRect rotated;
matrix.mapRectScaleTranslate(&rotated, rect);
paint.setStyle(SkPaint::kStroke_Style);
canvas->drawRect(rect, paint);
paint.setColor(SK_ColorRED);
canvas->drawRect(rotated, paint);
}
} // END FIDDLE