pub enum Basis {
XY,
XZ,
}Expand description
The plane a 3D attractor family is projected into (ADR-0068), as chosen by
AttractorFamily::basis.
The spin always rotates x against the other horizontal axis and leaves the
vertical alone, so a basis is fully described by naming that pair.
Variants§
XY
x horizontal, y vertical; the spin rotates x against z. The shared
convention every 3D family used before ADR-0068, and still every family’s
answer but Lorenz’s.
XZ
x horizontal, z vertical; the spin rotates x against y. Lorenz’s
butterfly lies in this plane.
Trait Implementations§
impl Copy for Basis
impl Eq for Basis
impl StructuralPartialEq for Basis
Auto Trait Implementations§
impl Freeze for Basis
impl RefUnwindSafe for Basis
impl Send for Basis
impl Sync for Basis
impl Unpin for Basis
impl UnsafeUnpin for Basis
impl UnwindSafe for Basis
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.