pub struct JuliaParams {
pub c: Complex,
pub power: f64,
pub max_iter: u32,
pub escape_r_sq: f64,
}Expand description
Julia set: z → z^power + c where c is fixed.
Fields§
§c: ComplexThe constant c.
power: f64§max_iter: u32§escape_r_sq: f64Implementations§
Trait Implementations§
Source§impl Clone for JuliaParams
impl Clone for JuliaParams
Source§fn clone(&self) -> JuliaParams
fn clone(&self) -> JuliaParams
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 moreAuto Trait Implementations§
impl Freeze for JuliaParams
impl RefUnwindSafe for JuliaParams
impl Send for JuliaParams
impl Sync for JuliaParams
impl Unpin for JuliaParams
impl UnsafeUnpin for JuliaParams
impl UnwindSafe for JuliaParams
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