Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove GlobalEdge #1999

Merged
merged 11 commits into from
Aug 18, 2023
Prev Previous commit
Next Next commit
Remove unused struct field
hannobraun committed Aug 18, 2023

Verified

This commit was signed with the committer’s verified signature.
d2iq-dispatch D2iQ Dispatch
commit 98ff9b60713671cfeb075bd6c1ee0d06be3df2c4
5 changes: 1 addition & 4 deletions crates/fj-core/src/algorithms/sweep/mod.rs
Original file line number Diff line number Diff line change
@@ -11,7 +11,7 @@ use std::collections::BTreeMap;
use fj_math::Vector;

use crate::{
objects::{Curve, GlobalEdge, Vertex},
objects::{Curve, Vertex},
services::Services,
storage::{Handle, ObjectId},
};
@@ -50,7 +50,4 @@ pub struct SweepCache {

/// Cache for vertices
pub vertices: BTreeMap<ObjectId, Handle<Vertex>>,

/// Cache for global edges
pub global_edges: BTreeMap<ObjectId, Handle<GlobalEdge>>,
}