[][src]Struct poisson2d::algorithm::Ebeida

pub struct Ebeida;

Generates uniform maximal Poisson disk samplings with O(n2d) time and O(n2d) space complexity relative to the number of samples generated and the dimensionality of the sampling volume. Based on Ebeida, Mohamed S., et al. "A Simple Algorithm for Maximal Poisson‐Disk Sampling in High Dimensions." Computer Graphics Forum. Vol. 31. No. 2pt4. Blackwell Publishing Ltd, 2012.

Trait Implementations

impl Clone for Ebeida[src]

impl Copy for Ebeida[src]

impl Creator for Ebeida[src]

type Algo = Algo

Algorithm instance associated with the trait

impl Debug for Ebeida[src]

Auto Trait Implementations

impl RefUnwindSafe for Ebeida

impl Send for Ebeida

impl Sync for Ebeida

impl Unpin for Ebeida

impl UnwindSafe for Ebeida

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.

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