From 769cef59baa50e03c64a905a515fa63ce46ce3ee Mon Sep 17 00:00:00 2001 From: Matt Perry Date: Wed, 13 May 2015 17:17:26 -0400 Subject: [PATCH] Flesh out the Painting API a bit. This exposes most methods from Skia's C canvas API to Dart. For now, SkRect and SkMatrix are represented simply as an array of floats, which requires a conversion at the bindings layer. More complex types like SkPath are still TODO. R=eseidel@chromium.org Review URL: https://codereview.chromium.org/1144483002 --- examples/raw/painting.sky | 46 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) create mode 100644 examples/raw/painting.sky diff --git a/examples/raw/painting.sky b/examples/raw/painting.sky new file mode 100644 index 00000000000..6ff4002c642 --- /dev/null +++ b/examples/raw/painting.sky @@ -0,0 +1,46 @@ + + +
+ +