summaryrefslogtreecommitdiffstats
path: root/svgbob/src/util.rs
diff options
context:
space:
mode:
authorJovansonlee Cesar <ivanceras@gmail.com>2021-07-13 03:14:29 +0800
committerJovansonlee Cesar <ivanceras@gmail.com>2021-07-13 03:14:29 +0800
commitd4fe7977c78bbf6eb8a19b85d94d4b01161dafa0 (patch)
treef4266676c9d97bc9e2a8c39608c4ba1e3a8bfa76 /svgbob/src/util.rs
parent039c74fefaab4c7226de57f258072fb6a5974722 (diff)
Use the parry2d in the crate imports
Diffstat (limited to 'svgbob/src/util.rs')
-rw-r--r--svgbob/src/util.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/svgbob/src/util.rs b/svgbob/src/util.rs
index 499bf9f..226cfbf 100644
--- a/svgbob/src/util.rs
+++ b/svgbob/src/util.rs
@@ -1,6 +1,6 @@
use crate::Point;
-use ncollide2d::shape::Triangle;
-use ncollide2d::{bounding_volume::AABB, math::Isometry, query::PointQuery};
+use parry2d::shape::Triangle;
+use parry2d::{bounding_volume::AABB, math::Isometry, query::PointQuery};
use std::cmp::Ordering;
pub fn opt_ord(f1: Option<f32>, f2: Option<f32>) -> Ordering {