fj-core 0.49.0

Early-stage b-rep CAD kernel.
Documentation
use fj_math::Point;

use crate::{
    geometry::{CurveBoundary, Geometry, HalfEdgeGeometry, SurfacePath},
    layers::Layer,
    objects::HalfEdge,
    operations::insert::Insert,
    storage::Handle,
    Core,
};

/// Update the geometry of a [`HalfEdge`]
pub trait UpdateHalfEdgeGeometry {
    /// Set the path of the half-edge
    fn set_path(
        self,
        path: SurfacePath,
        geometry: &mut Layer<Geometry>,
    ) -> Self;

    /// Update the path of the half-edge
    #[must_use]
    fn update_path(
        &self,
        update: impl FnOnce(SurfacePath) -> SurfacePath,
        core: &mut Core,
    ) -> Self;

    /// Update the boundary of the half-edge
    #[must_use]
    fn update_boundary(
        &self,
        update: impl FnOnce(CurveBoundary<Point<1>>) -> CurveBoundary<Point<1>>,
        core: &mut Core,
    ) -> Self;
}

impl UpdateHalfEdgeGeometry for Handle<HalfEdge> {
    fn set_path(
        self,
        path: SurfacePath,
        geometry: &mut Layer<Geometry>,
    ) -> Self {
        geometry.define_half_edge(self.clone(), HalfEdgeGeometry { path });
        self
    }

    fn update_path(
        &self,
        update: impl FnOnce(SurfacePath) -> SurfacePath,
        core: &mut Core,
    ) -> Self {
        let path = update(core.layers.geometry.of_half_edge(self).path);

        let half_edge = HalfEdge::new(
            path,
            self.boundary(),
            self.curve().clone(),
            self.start_vertex().clone(),
        )
        .insert(core);

        core.layers
            .geometry
            .define_half_edge(half_edge.clone(), HalfEdgeGeometry { path });

        half_edge
    }

    fn update_boundary(
        &self,
        update: impl FnOnce(CurveBoundary<Point<1>>) -> CurveBoundary<Point<1>>,
        core: &mut Core,
    ) -> Self {
        HalfEdge::new(
            core.layers.geometry.of_half_edge(self).path,
            update(self.boundary()),
            self.curve().clone(),
            self.start_vertex().clone(),
        )
        .insert(core)
    }
}