[][src]Trait bin_stl::triangle::Point

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

Required methods

pub fn new(x: f32, y: f32, z: f32) -> Self[src]

pub fn x(&self) -> f32[src]

pub fn y(&self) -> f32[src]

pub fn z(&self) -> f32[src]

Loading content...

Implementations on Foreign Types

impl Point for (f32, f32, f32)[src]

impl Point for [f32; 3][src]

Loading content...

Implementors

Loading content...