Trait rust_3d::traits::IsMesh3D
[−]
[src]
pub trait IsMesh3D<P>: IsMesh<P, Face3> where
P: IsBuildable3D, { fn face_normal(&self, faceid: FId) -> Result<Norm3D> { ... } }
IsMesh3D is trait used for meshes in 3D space
Provided Methods
fn face_normal(&self, faceid: FId) -> Result<Norm3D>
Returns the normal of a face
Implementors
impl<M, P> IsMesh3D<P> for M where
M: IsMesh<P, Face3>,
P: IsBuildable3D,