[−][src]Struct oxygengine_utils::noise_map_generator::NoiseMapGenerator
Methods
impl NoiseMapGenerator[src]
pub fn new(seed: u32, chunk_size: usize, zoom: f64) -> Self[src]
pub fn seed(&self) -> u32[src]
pub fn chunk_size(&self) -> usize[src]
pub fn zoom(&self) -> f64[src]
pub fn sample_raw(&self, x: f64, y: f64, z: f64) -> f64[src]
pub fn sample(
&self,
coord: (isize, isize),
(col, row): (usize, usize),
margin: usize,
depth: f64
) -> f64[src]
&self,
coord: (isize, isize),
(col, row): (usize, usize),
margin: usize,
depth: f64
) -> f64
pub fn build_chunk(&self, coord: (isize, isize), margin: usize) -> Grid2d<f64>[src]
pub fn build_chunk_with_depth(
&self,
coord: (isize, isize),
margin: usize,
depth: f64
) -> Grid2d<f64>[src]
&self,
coord: (isize, isize),
margin: usize,
depth: f64
) -> Grid2d<f64>
pub fn build_chunks(&self, coord: Range<(isize, isize)>) -> Grid2d<f64>[src]
pub fn build_chunks_with_depth(
&self,
coord: Range<(isize, isize)>,
depth: f64
) -> Grid2d<f64>[src]
&self,
coord: Range<(isize, isize)>,
depth: f64
) -> Grid2d<f64>
Trait Implementations
impl Clone for NoiseMapGenerator[src]
fn clone(&self) -> NoiseMapGenerator[src]
fn clone_from(&mut self, source: &Self)1.0.0[src]
Performs copy-assignment from source. Read more
Auto Trait Implementations
impl Sync for NoiseMapGenerator
impl Send for NoiseMapGenerator
impl Unpin for NoiseMapGenerator
impl RefUnwindSafe for NoiseMapGenerator
impl UnwindSafe for NoiseMapGenerator
Blanket Implementations
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T[src]
fn clone_into(&self, target: &mut T)[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> SetParameter for T
fn set<T>(&mut self, value: T) -> <T as Parameter<Self>>::Result where
T: Parameter<Self>,
T: Parameter<Self>,
Sets value as a parameter of self.