Skip to content

Commit

Permalink
Derive more traits for Faces
Browse files Browse the repository at this point in the history
  • Loading branch information
hannobraun committed Mar 3, 2022
1 parent 922f9ce commit 9a61caa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/kernel/topology/faces.rs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ use crate::{
use super::edges::Edges;

/// The faces of a shape
#[derive(Clone)]
#[derive(Clone, Debug, Eq, PartialEq, Hash, Ord, PartialOrd)]
pub struct Faces(pub Vec<Face>);

impl Faces {
Expand All @@ -34,7 +34,7 @@ impl Faces {
}

/// A face of a shape
#[derive(Clone)]
#[derive(Clone, Debug, Eq, PartialEq, Hash, Ord, PartialOrd)]
pub enum Face {
/// A face of a shape
///
Expand Down

0 comments on commit 9a61caa

Please sign in to comment.