[][src]Struct poisson2d::Builder

pub struct Builder { /* fields omitted */ }

Builder for the generator.

Implementations

impl Builder[src]

pub fn with_radius(radius: f32, poisson_type: Type) -> Self[src]

New Builder with type of distribution and radius specified. The radius should be in (0, √2 / 2]

pub fn with_relative_radius(relative: f32, poisson_type: Type) -> Self[src]

New Builder with type of distribution and relative radius specified. The relative radius should be in (0, 1]

pub fn with_samples(samples: usize, relative: f32, poisson_type: Type) -> Self[src]

New Builder with type of distribution, approximate amount of samples and relative radius specified. The amount of samples should be larger than 0. The relative radius should be in (0, 1].

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

Returns the radius of the generator.

pub fn poisson_type(&self) -> Type[src]

Returns the type of the generator.

pub fn build<R, A>(self, rng: R, _algo: A) -> Generator<R, A> where
    R: Rng,
    A: Creator
[src]

Builds generator with random number generator and algorithm specified.

Trait Implementations

impl Clone for Builder[src]

impl Debug for Builder[src]

impl Default for Builder[src]

impl PartialEq<Builder> for Builder[src]

impl StructuralPartialEq for Builder[src]

Auto Trait Implementations

impl RefUnwindSafe for Builder

impl Send for Builder

impl Sync for Builder

impl Unpin for Builder

impl UnwindSafe for Builder

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>,