Trait libfive::Point3[][src]

pub trait Point3 {
    fn new(x: f32, y: f32, z: f32) -> Self;
fn x(&self) -> f32;
fn y(&self) -> f32;
fn z(&self) -> f32; }
Expand description

Trait to aid with using arbitrary 3D point types on a TriangleMesh.

Required methods

Implementors