#[repr(C)]pub struct PerlinNoise {
pub d: [u8; 257],
pub h2: u8,
pub a: f64,
pub b: f64,
pub c: f64,
pub amplitude: f64,
pub lacunarity: f64,
pub d2: f64,
pub t2: f64,
}Fields§
§d: [u8; 257]§h2: u8§a: f64§b: f64§c: f64§amplitude: f64§lacunarity: f64§d2: f64§t2: f64Trait Implementations§
Source§impl Clone for PerlinNoise
impl Clone for PerlinNoise
Source§fn clone(&self) -> PerlinNoise
fn clone(&self) -> PerlinNoise
Returns a duplicate 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 PerlinNoise
impl Debug for PerlinNoise
impl Copy for PerlinNoise
Auto Trait Implementations§
impl Freeze for PerlinNoise
impl RefUnwindSafe for PerlinNoise
impl Send for PerlinNoise
impl Sync for PerlinNoise
impl Unpin for PerlinNoise
impl UnwindSafe for PerlinNoise
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