curvo 0.1.88

NURBS modeling library
Documentation
use argmin::core::ArgminFloat;
use nalgebra::Const;

use crate::{
    curve::NurbsCurve,
    misc::{EndPoints, FloatingPoint},
    prelude::CurveIntersectionSolverOptions,
    region::CompoundCurve,
};

use super::Contains;

impl<T: FloatingPoint + ArgminFloat> Contains<NurbsCurve<T, Const<3>>>
    for CompoundCurve<T, Const<3>>
{
    type Option = Option<CurveIntersectionSolverOptions<T>>;

    /// Determine if a curve is inside a compound curve.
    fn contains(
        &self,
        other: &NurbsCurve<T, Const<3>>,
        option: Self::Option,
    ) -> anyhow::Result<bool> {
        anyhow::ensure!(self.is_closed(None), "Compound curve must be closed");

        let pt = other.first_point();
        self.contains(&pt, option.clone())
    }
}