[][src]Struct splashsurf_lib::mesh::PointCloud3d

pub struct PointCloud3d<R: Real> {
    pub points: Vec<Vector3<R>>,
}

A point cloud in 3D

Fields

points: Vec<Vector3<R>>

Coordinates of all points in the point cloud

Trait Implementations

impl<R: Clone + Real> Clone for PointCloud3d<R>[src]

impl<R: Debug + Real> Debug for PointCloud3d<R>[src]

impl<'a, R> From<&'a PointCloud3d<R>> for DataSet where
    R: Real
[src]

Auto Trait Implementations

impl<R> RefUnwindSafe for PointCloud3d<R> where
    R: RefUnwindSafe + Scalar

impl<R> Send for PointCloud3d<R> where
    R: Scalar

impl<R> Sync for PointCloud3d<R> where
    R: Scalar

impl<R> Unpin for PointCloud3d<R> where
    R: Scalar + Unpin

impl<R> UnwindSafe for PointCloud3d<R> where
    R: Scalar + 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> Pointable for T

type Init = T

The type for initializers.

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<SS, SP> SupersetOf<SS> for SP where
    SS: SubsetOf<SP>, 

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,