pub trait ProjectSingle<T, const D: usize> {
// Required method
fn project_single(&self, point: SVectorViewMut<'_, T, D>);
}Expand description
Can project a single point into its feasible region.
Required Methods§
Sourcefn project_single(&self, point: SVectorViewMut<'_, T, D>)
fn project_single(&self, point: SVectorViewMut<'_, T, D>)
Apply the projection to a single point.
Trait Implementations§
Source§impl<T, const D: usize> ProjectSingle<T, D> for &dyn ProjectSingle<T, D>
impl<T, const D: usize> ProjectSingle<T, D> for &dyn ProjectSingle<T, D>
Source§fn project_single(&self, point: SVectorViewMut<'_, T, D>)
fn project_single(&self, point: SVectorViewMut<'_, T, D>)
Apply the projection to a single point.