| OLD | NEW |
| 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 | 4 part of dart.math; |
| 5 part of "math.dart"; | |
| 6 | 5 |
| 7 /** | 6 /** |
| 8 * A base class for representing two-dimensional axis-aligned rectangles. | 7 * A base class for representing two-dimensional axis-aligned rectangles. |
| 9 * | 8 * |
| 10 * This rectangle uses a left-handed Cartesian coordinate system, with x | 9 * This rectangle uses a left-handed Cartesian coordinate system, with x |
| 11 * directed to the right and y directed down, as per the convention in 2D | 10 * directed to the right and y directed down, as per the convention in 2D |
| 12 * computer graphics. | 11 * computer graphics. |
| 13 * | 12 * |
| 14 * See also: | 13 * See also: |
| 15 * [W3C Coordinate Systems Specification](http://www.w3.org/TR/SVG/coords.htm
l#InitialCoordinateSystem). | 14 * [W3C Coordinate Systems Specification](http://www.w3.org/TR/SVG/coords.htm
l#InitialCoordinateSystem). |
| (...skipping 250 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 266 | 265 |
| 267 /** | 266 /** |
| 268 * Converts a negative [int] or [double] to a zero-value of the same type. | 267 * Converts a negative [int] or [double] to a zero-value of the same type. |
| 269 * | 268 * |
| 270 * Returns `0` if value is int, `0.0` if value is double. | 269 * Returns `0` if value is int, `0.0` if value is double. |
| 271 */ | 270 */ |
| 272 T _clampToZero<T extends num>(T value) { | 271 T _clampToZero<T extends num>(T value) { |
| 273 assert(value < 0); | 272 assert(value < 0); |
| 274 return -value * 0; | 273 return -value * 0; |
| 275 } | 274 } |
| OLD | NEW |