[][src]Trait julia_set::ComputePoint

pub trait ComputePoint: Sync {
    pub fn compute_point(&self, z: Complex32) -> Complex32;
}
This is supported on crate feature cpu_backend only.

Complex-valued function of a single variable.

Required methods

pub fn compute_point(&self, z: Complex32) -> Complex32[src]

Computes the function value at the specified point.

Loading content...

Implementors

impl ComputePoint for Function[src]

impl<F: Fn(Complex32) -> Complex32 + Sync> ComputePoint for F[src]

Loading content...