feat(Ruler): introduce Ruler service

Closes #1089

Closes #1253
This commit is contained in:
Pawel Kozlowski
2015-04-06 21:45:54 +02:00
parent c349eb4fa4
commit 41262f4265
8 changed files with 112 additions and 2 deletions

View File

@ -0,0 +1,6 @@
import 'dart:html';
Rectangle createRectangle(left, top, width, height) {
return new Rectangle(left, top, width, height);
}