| Index: sdk/lib/html/dartium/html_dartium.dart
|
| diff --git a/sdk/lib/html/dartium/html_dartium.dart b/sdk/lib/html/dartium/html_dartium.dart
|
| index 555a0d096add4228a1103dd1d6107c04a630c765..647928e299ebaf985fa042fc44de35b717488694 100644
|
| --- a/sdk/lib/html/dartium/html_dartium.dart
|
| +++ b/sdk/lib/html/dartium/html_dartium.dart
|
| @@ -30691,6 +30691,12 @@ class Point {
|
| }
|
|
|
| /**
|
| + * Get the straight line (Euclidean) distance between the origin (0, 0) and
|
| + * this point.
|
| + */
|
| + num get magnitude => sqrt(x * x + y * y);
|
| +
|
| + /**
|
| * Returns the distance between two points.
|
| */
|
| double distanceTo(Point other) {
|
|
|