Skip to content

Commit

Permalink
Make edge field of Cycle private
Browse files Browse the repository at this point in the history
  • Loading branch information
hannobraun committed Jul 22, 2022
1 parent e836a65 commit 8b772b0
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions crates/fj-kernel/src/objects/cycle.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,7 @@ use super::{Edge, Surface};
/// one.
#[derive(Clone, Debug, Eq, PartialEq, Hash, Ord, PartialOrd)]
pub struct Cycle {
/// The edges that make up the cycle
pub edges: Vec<Edge>,
edges: Vec<Edge>,
}

impl Cycle {
Expand Down

0 comments on commit 8b772b0

Please sign in to comment.