[][src]Type Definition building_blocks_core::point3::Point3f

type Point3f = PointN<[f32; 3]>;

A 3-dimensional point with scalar type f32.

Implementations

impl Point3f[src]

pub fn round(&self) -> Self[src]

pub fn floor(&self) -> Self[src]

impl Point3f[src]

pub fn as_3i(&self) -> Point3i[src]

pub fn in_voxel(&self) -> Point3i[src]

Trait Implementations

impl Div<PointN<[f32; 3]>> for Point3f[src]

type Output = Self

The resulting type after applying the / operator.

impl Div<f32> for Point3f[src]

type Output = Self

The resulting type after applying the / operator.

impl From<PointN<[i32; 3]>> for Point3f[src]

impl NormSquared for Point3f[src]

impl Point for Point3f[src]

type Scalar = f32