diff options
Diffstat (limited to 'components/util/bezier.rs')
-rw-r--r-- | components/util/bezier.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/util/bezier.rs b/components/util/bezier.rs index 28251745cbc..668f6bc0321 100644 --- a/components/util/bezier.rs +++ b/components/util/bezier.rs @@ -6,7 +6,7 @@ //! //! This is based on `WebCore/platform/graphics/UnitBezier.h` in WebKit. -use geom::point::Point2D; +use euclid::point::Point2D; const NEWTON_METHOD_ITERATIONS: u8 = 8; |