| Index: sky/examples/raw/painting.sky
|
| diff --git a/sky/examples/raw/painting.sky b/sky/examples/raw/painting.sky
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..6ff4002c642ec7f6ce218a038d27527762d83f8f
|
| --- /dev/null
|
| +++ b/sky/examples/raw/painting.sky
|
| @@ -0,0 +1,46 @@
|
| +<sky>
|
| +<style>
|
| +div {
|
| + height: 200px;
|
| + background-color: lightblue;
|
| +}
|
| +</style>
|
| +<div id="canvas" />
|
| +<script>
|
| +import 'dart:math' as math;
|
| +import 'dart:sky';
|
| +
|
| +void main() {
|
| + var element = document.getElementById('canvas');
|
| + element.requestPaint((PaintingContext context) {
|
| + Paint paint = new Paint();
|
| + double radius = math.min(context.width, context.height) / 2.0;
|
| +
|
| + context.save();
|
| +
|
| + context.clipRect([0.0, 0.0, context.width, radius]);
|
| +
|
| + context.translate(context.width / 2.0, context.height / 2.0);
|
| + paint.setARGB(128, 255, 0, 255);
|
| + context.rotateDegrees(45.0);
|
| + context.drawRect([-radius, -radius, radius, radius], paint);
|
| +
|
| + // Scale x and y by 0.5.
|
| + var scaleMatrix = [
|
| + 0.5, 0.0, 0.0,
|
| + 0.0, 0.5, 0.0,
|
| + 0.0, 0.0, 1.0
|
| + ];
|
| + context.concat(scaleMatrix);
|
| + paint.setARGB(128, 0, 255, 0);
|
| + context.drawCircle(0.0, 0.0, radius, paint);
|
| +
|
| + context.restore();
|
| +
|
| + context.drawCircle(0.0, 0.0, radius, paint);
|
| +
|
| + context.commit();
|
| + });
|
| +}
|
| +</script>
|
| +</sky>
|
|
|