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

Unify Vertex and PartialVertex #1648

Merged
merged 4 commits into from
Mar 3, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Remove PartialVertex
hannobraun committed Mar 3, 2023
commit 62ce9288b8647843fa5c099f29681efb69295d10
1 change: 0 additions & 1 deletion crates/fj-kernel/src/partial/mod.rs
Original file line number Diff line number Diff line change
@@ -22,7 +22,6 @@ pub use self::{
shell::PartialShell,
sketch::PartialSketch,
solid::PartialSolid,
vertex::PartialVertex,
},
traits::{HasPartial, PartialObject},
wrapper::{FullToPartialCache, Partial},
1 change: 0 additions & 1 deletion crates/fj-kernel/src/partial/objects/mod.rs
Original file line number Diff line number Diff line change
@@ -4,4 +4,3 @@ pub mod face;
pub mod shell;
pub mod sketch;
pub mod solid;
pub mod vertex;
25 changes: 0 additions & 25 deletions crates/fj-kernel/src/partial/objects/vertex.rs

This file was deleted.

1 change: 0 additions & 1 deletion crates/fj-kernel/src/partial/traits.rs
Original file line number Diff line number Diff line change
@@ -42,5 +42,4 @@ impl_trait!(
Shell, PartialShell;
Sketch, PartialSketch;
Solid, PartialSolid;
Vertex, PartialVertex;
);