pub struct Seed {
pub pos: [f32; 3],
pub is_air: bool,
}Expand description
One Worley seed point.
Fields§
§pos: [f32; 3]World coordinates (x, y, z).
is_air: booltrue for air-tagged seeds, false for solid-tagged.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Seed
impl RefUnwindSafe for Seed
impl Send for Seed
impl Sync for Seed
impl Unpin for Seed
impl UnsafeUnpin for Seed
impl UnwindSafe for Seed
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