Skip to content

Commit

Permalink
Derive Debug for TriangulationPoint
Browse files Browse the repository at this point in the history
  • Loading branch information
hannobraun committed Sep 1, 2022
1 parent cc87d40 commit af00f27
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/fj-kernel/src/algorithms/triangulate/delaunay.rs
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ pub fn triangulate(
triangles
}

#[derive(Clone, Copy, Eq, PartialEq, Hash, Ord, PartialOrd)]
#[derive(Clone, Copy, Debug, Eq, PartialEq, Hash, Ord, PartialOrd)]
pub struct TriangulationPoint {
pub point_surface: Point<2>,
pub point_global: Point<3>,
Expand Down

0 comments on commit af00f27

Please sign in to comment.