Skip to main content

IsMesh3D

Trait IsMesh3D 

Source
pub trait IsMesh3D<P>: IsMesh<P, Face3>
where P: IsBuildable3D,
{ // Provided method fn face_normal(&self, faceid: FId) -> Result<Norm3D> { ... } }
Expand description

IsMesh3D is trait used for meshes in 3D space

Provided Methods§

Source

fn face_normal(&self, faceid: FId) -> Result<Norm3D>

Returns the normal of a face

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§

Source§

impl<M, P> IsMesh3D<P> for M
where M: IsMesh<P, Face3>, P: IsBuildable3D,