Trait MeshWriter

Source
pub trait MeshWriter {
    // Required method
    fn write_mesh<P: AsRef<Path>>(mesh: &TriangleMesh, path: P) -> Result<()>;
}
Expand description

Trait for writing meshes to files

Required Methods§

Source

fn write_mesh<P: AsRef<Path>>(mesh: &TriangleMesh, path: P) -> Result<()>

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§