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

Create top face when sweeping region #2120

Merged
merged 8 commits into from
Nov 29, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
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
22 changes: 3 additions & 19 deletions crates/fj-core/src/operations/sweep/face.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
use fj_math::Vector;

use crate::{
algorithms::transform::TransformObject,
objects::{Face, Shell},
operations::insert::Insert,
services::Services,
Expand Down Expand Up @@ -52,28 +51,13 @@ impl SweepFace for Handle<Face> {
let bottom_face = self.clone();
faces.push(bottom_face.clone());

let swept_region = bottom_face.region().sweep_region(
bottom_face.surface(),
path,
cache,
services,
);

let side_faces = swept_region
.faces
let side_faces = bottom_face
.region()
.sweep_region(bottom_face.surface(), path, cache, services)
.into_iter()
.map(|side_face| side_face.insert(services));
faces.extend(side_faces);

let top_face = {
let top_surface =
bottom_face.surface().clone().translate(path, services);
let top_region = swept_region.top_region.insert(services);

Face::new(top_surface, top_region).insert(services)
};
faces.push(top_face);

Shell::new(faces)
}
}
2 changes: 1 addition & 1 deletion crates/fj-core/src/operations/sweep/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ pub use self::{
face::SweepFace,
half_edge::SweepHalfEdge,
path::SweepSurfacePath,
region::{SweepRegion, SweptRegion},
region::SweepRegion,
sketch::SweepSketch,
vertex::SweepVertex,
};
Expand Down
49 changes: 18 additions & 31 deletions crates/fj-core/src/operations/sweep/region.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ use fj_interop::mesh::Color;
use fj_math::Vector;

use crate::{
algorithms::transform::TransformObject,
objects::{Cycle, Face, Region, Surface},
operations::{insert::Insert, reverse::Reverse},
services::Services,
Expand All @@ -19,30 +20,21 @@ pub trait SweepRegion {
/// # Sweep the [`Region`]
///
/// Sweep the region into multiple sets of faces. Each set of faces is
/// formed by sweeping one of the region's cycles
/// formed by sweeping one of the region's cycles, then adding a top face.
///
/// Requires the surface that the face that the region belongs to is defined
/// in.
///
/// There are no faces at the "top" (the end of the sweep path) or "bottom".
///
/// There is no face at the "top" (the end of the sweep path). We *would*
/// have enough information to create that, as we have access to the surface
/// too and could translate that here. However, that we have access to that
/// surface is a bit incidental, and a weird artifact of how the object
/// graph currently works. For this reason, the creating the top face is
/// considered out of scope for this operation, and left to the caller.
///
/// There also is no "bottom" face. Whether having one is desirable, depends
/// on the context of the caller of this operation, and there also falls
/// outside of its scope.
/// There no "bottom" face. Whether having one is desirable depends on the
/// context of the caller of this operation, and falls outside of this
/// operation's scope.
fn sweep_region(
&self,
surface: &Surface,
path: impl Into<Vector<3>>,
cache: &mut SweepCache,
services: &mut Services,
) -> SweptRegion;
) -> Vec<Face>;
}

impl SweepRegion for Region {
Expand All @@ -52,7 +44,7 @@ impl SweepRegion for Region {
path: impl Into<Vector<3>>,
cache: &mut SweepCache,
services: &mut Services,
) -> SweptRegion {
) -> Vec<Face> {
let path = path.into();

let mut faces = Vec::new();
Expand Down Expand Up @@ -83,24 +75,19 @@ impl SweepRegion for Region {
top_interiors.push(top_cycle);
}

let top_region = Region::new(top_exterior, top_interiors, self.color());

SweptRegion { faces, top_region }
}
}
let top_face = {
let top_surface =
surface.translate(path, services).insert(services);
let top_region =
Region::new(top_exterior, top_interiors, self.color())
.insert(services);

/// The result of sweeping a [`Region`]
///
/// See [`SweepRegion`].
pub struct SweptRegion {
/// The faces created by sweeping each cycle of the region
pub faces: Vec<Face>,
Face::new(top_surface, top_region)
};
faces.push(top_face);

/// A region made up of the "top" cycles
///
/// This is essentially a version of the original region, translated by the
/// sweep path.
pub top_region: Region,
faces
}
}

fn sweep_cycle(
Expand Down