[][src]Struct rust_3d::PointCloud3Df32

pub struct PointCloud3Df32<P> where
    P: IsBuildable3D
{ pub data: Vec<f32>, // some fields omitted }

PointCloud3Df32, a collection of positions within 3D space stored lossy as f32 vector for easier usage during rendering

Fields

data: Vec<f32>

Implementations

impl<P> PointCloud3Df32<P> where
    P: IsBuildable3D
[src]

pub fn new() -> PointCloud3Df32<P>[src]

Creates a new, empty point cloud

pub fn with_capacity(n: usize) -> PointCloud3Df32<P>[src]

Creates a new, empty point cloud with capacity for n points

Trait Implementations

impl<P: Clone> Clone for PointCloud3Df32<P> where
    P: IsBuildable3D
[src]

impl<P: Debug> Debug for PointCloud3Df32<P> where
    P: IsBuildable3D
[src]

impl<P: Default> Default for PointCloud3Df32<P> where
    P: IsBuildable3D
[src]

impl<P> From<Vec<f32>> for PointCloud3Df32<P> where
    P: IsBuildable3D
[src]

impl<P> HasBoundingBox3DMaybe for PointCloud3Df32<P> where
    P: IsBuildable3D
[src]

impl<P> Into<Vec<f32>> for PointCloud3Df32<P> where
    P: IsBuildable3D
[src]

impl<P> IsDataContainer<P> for PointCloud3Df32<P> where
    P: IsBuildable3D
[src]

impl<P> IsMovable3D for PointCloud3Df32<P> where
    P: IsBuildable3D
[src]

impl<P> IsPushable<P> for PointCloud3Df32<P> where
    P: IsBuildable3D
[src]

impl<P: PartialEq> PartialEq<PointCloud3Df32<P>> for PointCloud3Df32<P> where
    P: IsBuildable3D
[src]

impl<P: PartialOrd> PartialOrd<PointCloud3Df32<P>> for PointCloud3Df32<P> where
    P: IsBuildable3D
[src]

impl<P> StructuralPartialEq for PointCloud3Df32<P> where
    P: IsBuildable3D
[src]

Auto Trait Implementations

impl<P> RefUnwindSafe for PointCloud3Df32<P> where
    P: RefUnwindSafe

impl<P> Send for PointCloud3Df32<P> where
    P: Send

impl<P> Sync for PointCloud3Df32<P> where
    P: Sync

impl<P> Unpin for PointCloud3Df32<P> where
    P: Unpin

impl<P> UnwindSafe for PointCloud3Df32<P> where
    P: UnwindSafe

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.