Trait julia_set::ComputePoint
source · pub trait ComputePoint: Sync {
// Required method
fn compute_point(&self, z: Complex32) -> Complex32;
}
Expand description
Complex-valued function of a single variable.
Required Methods§
sourcefn compute_point(&self, z: Complex32) -> Complex32
fn compute_point(&self, z: Complex32) -> Complex32
Computes the function value at the specified point.