FastNoiseSIMD

Struct FastNoiseSIMD 

Source
pub struct FastNoiseSIMD { /* private fields */ }

Implementations§

Source§

impl FastNoiseSIMD

Source

pub fn new(seed: i32) -> Self

Source

pub fn get_simd_type() -> SIMDType

Source

pub fn set_general_properties(&mut self, properties: GeneralProperties)

Source

pub fn get_general_properties(&self) -> GeneralProperties

Source

pub fn set_fractal_properties(&mut self, properties: FractalProperties)

Source

pub fn get_fractal_properties(&self) -> FractalProperties

Source

pub fn set_cellular_properties(&mut self, properties: CellularProperties)

Source

pub fn get_cellular_properties(&self) -> CellularProperties

Source

pub fn set_perturb_properties(&mut self, properties: PerturbProperties)

Source

pub fn get_perturb_properties(&self) -> PerturbProperties

Source

pub fn get_vector_set(_x_size: i32, _y_size: i32, _z_size: i32) -> VectorSet

TODO: Not implemented

Source

pub fn get_sampling_vector_set( _sample_scale: i32, _x_size: i32, _y_size: i32, _z_size: i32, ) -> VectorSet

TODO: Not implemented

Source

pub fn fill_vector_set( _vector_set: &mut VectorSet, _x_size: i32, _y_size: i32, _z_size: i32, )

TODO: Not implemented

Source

pub fn fill_sampling_vector_set( _vector_set: &mut VectorSet, _sample_scale: i32, _x_size: i32, _y_size: i32, _z_size: i32, )

TODO: Not implemented

Source

pub fn fill_noise_set1( &mut self, _noise_set: &mut NoiseSet, _vector_set: &mut VectorSet, _x_offset: f32, _y_offset: f32, _z_offset: f32, )

TODO: Not implemented

Source

pub fn get_noise_set( &mut self, x_start: i32, y_start: i32, z_start: i32, x_size: i32, y_size: i32, z_size: i32, scale_modifier: f32, ) -> NoiseSet

Source

pub fn fill_noise_set( &mut self, noise_set: &mut NoiseSet, x_start: i32, y_start: i32, z_start: i32, x_size: i32, y_size: i32, z_size: i32, scale_modifier: f32, )

Source

pub fn get_sampled_noise_set( &mut self, x_start: i32, y_start: i32, z_start: i32, x_size: i32, y_size: i32, z_size: i32, sample_scale: i32, ) -> NoiseSet

Source

pub fn get_white_noise_set( &mut self, x_start: i32, y_start: i32, z_start: i32, x_size: i32, y_size: i32, z_size: i32, scale_modifier: f32, ) -> NoiseSet

Source

pub fn get_value_set( &mut self, x_start: i32, y_start: i32, z_start: i32, x_size: i32, y_size: i32, z_size: i32, scale_modifier: f32, ) -> NoiseSet

Source

pub fn get_value_fractal_set( &mut self, x_start: i32, y_start: i32, z_start: i32, x_size: i32, y_size: i32, z_size: i32, scale_modifier: f32, ) -> NoiseSet

Source

pub fn get_perlin_set( &mut self, x_start: i32, y_start: i32, z_start: i32, x_size: i32, y_size: i32, z_size: i32, scale_modifier: f32, ) -> NoiseSet

Source

pub fn get_perlin_fractal_set( &mut self, x_start: i32, y_start: i32, z_start: i32, x_size: i32, y_size: i32, z_size: i32, scale_modifier: f32, ) -> NoiseSet

Source

pub fn get_simplex_set( &mut self, x_start: i32, y_start: i32, z_start: i32, x_size: i32, y_size: i32, z_size: i32, scale_modifier: f32, ) -> NoiseSet

Source

pub fn get_simplex_fractal_set( &mut self, x_start: i32, y_start: i32, z_start: i32, x_size: i32, y_size: i32, z_size: i32, scale_modifier: f32, ) -> NoiseSet

Source

pub fn get_cellular_set( &mut self, x_start: i32, y_start: i32, z_start: i32, x_size: i32, y_size: i32, z_size: i32, scale_modifier: f32, ) -> NoiseSet

Source

pub fn get_cubic_set( &mut self, x_start: i32, y_start: i32, z_start: i32, x_size: i32, y_size: i32, z_size: i32, scale_modifier: f32, ) -> NoiseSet

Source

pub fn get_cubic_fractal_set( &mut self, x_start: i32, y_start: i32, z_start: i32, x_size: i32, y_size: i32, z_size: i32, scale_modifier: f32, ) -> NoiseSet

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

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

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.