Struct noise::Cylinders [] [src]

pub struct Cylinders<T: Float> {
    pub frequency: T,
}

Noise module that outputs concentric cylinders.

This noise module outputs concentric cylinders centered on the origin. The cylinders are oriented along the z axis similar to the concentric rings of a tree. Each cylinder extends infinitely along the z axis.

Fields

Frequency of the concentric objects.

Methods

impl<T: Float> Cylinders<T>
[src]

Trait Implementations

impl<T: Clone + Float> Clone for Cylinders<T>
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl<T: Copy + Float> Copy for Cylinders<T>
[src]

impl<T: Debug + Float> Debug for Cylinders<T>
[src]

Formats the value using the given formatter.

impl<T: Float> NoiseModule<Point2<T>> for Cylinders<T>
[src]

impl<T: Float> NoiseModule<Point3<T>> for Cylinders<T>
[src]

impl<T: Float> NoiseModule<Point4<T>> for Cylinders<T>
[src]