16 lines
		
	
	
		
			566 B
		
	
	
	
		
			C++
		
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			566 B
		
	
	
	
		
			C++
		
	
	
	
// Copyright 2020 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(skcanvas_square, 256, 256, false, 0) {
 | 
						|
void draw(SkCanvas* canvas) {
 | 
						|
    canvas->save();
 | 
						|
    canvas->translate(SkIntToScalar(128), SkIntToScalar(128));
 | 
						|
    canvas->rotate(SkIntToScalar(45));
 | 
						|
    SkRect rect = SkRect::MakeXYWH(-90.5f, -90.5f, 181.0f, 181.0f);
 | 
						|
    SkPaint paint;
 | 
						|
    paint.setColor(SK_ColorBLUE);
 | 
						|
    canvas->drawRect(rect, paint);
 | 
						|
    canvas->restore();
 | 
						|
}
 | 
						|
}  // END FIDDLE
 |