pub trait NormalConstraintsPair {
// Required method
fn project_local_normals(
&self,
pos12: &Isometry<f64>,
normal1: &mut Vector<f64>,
normal2: &mut Vector<f64>,
) -> bool;
}Expand description
A pair of NormalConstraints.
Required Methods§
Sourcefn project_local_normals(
&self,
pos12: &Isometry<f64>,
normal1: &mut Vector<f64>,
normal2: &mut Vector<f64>,
) -> bool
fn project_local_normals( &self, pos12: &Isometry<f64>, normal1: &mut Vector<f64>, normal2: &mut Vector<f64>, ) -> bool
Applies the normal constraints to normal1 and normal2.
This trait is mostly used internally to combine two NormalConstraints conveniently.