diff options
Diffstat (limited to 'components/util/geometry.rs')
-rw-r--r-- | components/util/geometry.rs | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/components/util/geometry.rs b/components/util/geometry.rs index 7b5f89dc53e..d9599a11369 100644 --- a/components/util/geometry.rs +++ b/components/util/geometry.rs @@ -64,17 +64,6 @@ pub static ZERO_POINT: Point2D<Au> = Point2D { y: Au(0), }; -pub static ZERO_RECT: Rect<Au> = Rect { - origin: Point2D { - x: Au(0), - y: Au(0), - }, - size: Size2D { - width: Au(0), - height: Au(0), - } -}; - pub static MAX_RECT: Rect<Au> = Rect { origin: Point2D { x: Au(i32::MIN / 2), |