Skip to content

Commit

Permalink
Simplify use
Browse files Browse the repository at this point in the history
  • Loading branch information
hannobraun committed Feb 4, 2022
1 parent d2920e4 commit 974eae4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/kernel/topology/edges.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
use nalgebra::vector;
use parry3d_f64::{math::Isometry, shape::Segment as Segment3};
use parry3d_f64::{math::Isometry, shape::Segment};

use crate::{
kernel::geometry::{Circle, Curve},
Expand Down Expand Up @@ -205,5 +205,5 @@ impl Edge {
/// An approximation of one or more edges
pub struct Approx {
pub vertices: Vec<Point<3>>,
pub segments: Vec<Segment3>,
pub segments: Vec<Segment>,
}

0 comments on commit 974eae4

Please sign in to comment.