pub struct CellDistance;
Expand description
2/3 dimensional noise of the distance to the closest cell
Implementations§
Source§impl CellDistance
impl CellDistance
Source§impl CellDistance
impl CellDistance
pub const fn seed(self, seed: i32) -> Seeded<Self>
pub const fn frequency(self, frequency: f32) -> Frequency<Self>
pub const fn fbm(self, octaves: u32, gain: f32, lacunarity: f32) -> Fbm<Self>
pub const fn ridged( self, octaves: u32, gain: f32, lacunarity: f32, ) -> Ridged<Self>
pub const fn ping_pong( self, octaves: u32, gain: f32, lacunarity: f32, strength: f32, ) -> PingPong<Self>
Trait Implementations§
Source§impl Clone for CellDistance
impl Clone for CellDistance
Source§fn clone(&self) -> CellDistance
fn clone(&self) -> CellDistance
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for CellDistance
impl Debug for CellDistance
Source§impl PartialEq for CellDistance
impl PartialEq for CellDistance
impl Copy for CellDistance
impl Eq for CellDistance
impl StructuralPartialEq for CellDistance
Auto Trait Implementations§
impl Freeze for CellDistance
impl RefUnwindSafe for CellDistance
impl Send for CellDistance
impl Sync for CellDistance
impl Unpin for CellDistance
impl UnwindSafe for CellDistance
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more