| Index: sky/engine/core/painting/Size.dart
|
| diff --git a/sky/engine/core/painting/Point.dart b/sky/engine/core/painting/Size.dart
|
| similarity index 70%
|
| copy from sky/engine/core/painting/Point.dart
|
| copy to sky/engine/core/painting/Size.dart
|
| index 9fc7082e707bb0c3dc50d944b3848430d42b1c39..cf41608b8a9936efb4b5dee1837fd8d2d0d40457 100644
|
| --- a/sky/engine/core/painting/Point.dart
|
| +++ b/sky/engine/core/painting/Size.dart
|
| @@ -4,10 +4,9 @@
|
|
|
| part of dart.sky;
|
|
|
| -class Point {
|
| - double x;
|
| - double y;
|
| +class Size {
|
| + double width;
|
| + double height;
|
|
|
| - Point(this.x, this.y);
|
| + Point(this.width, this.height);
|
| }
|
| -
|
|
|