We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 04130a5 commit bf015d3Copy full SHA for bf015d3
1 file changed
iTriangle/src/advanced/delaunay.rs
@@ -274,8 +274,7 @@ impl IntDelaunay {
274
275
#[cfg(test)]
276
mod tests {
277
- use rand::RngExt;
278
-use crate::advanced::delaunay::DelaunayCondition;
+ use crate::advanced::delaunay::DelaunayCondition;
279
use crate::advanced::delaunay::DelaunayRefine;
280
use crate::advanced::delaunay::IntDelaunay;
281
use crate::advanced::delaunay::Vec;
@@ -289,6 +288,7 @@ use crate::advanced::delaunay::DelaunayCondition;
289
288
use i_overlay::i_float::int::point::IntPoint;
290
use i_overlay::i_shape::int::area::Area;
291
use i_overlay::i_shape::int::path::IntPath;
+ use rand::RngExt;
292
293
fn path(slice: &[[i32; 2]]) -> IntPath {
294
slice.iter().map(|p| IntPoint::new(p[0], p[1])).collect()
0 commit comments