pub fn compute_iter<I, F, T>(
    n_from: i32,
    n_to: i32,
    period: T,
    integral_segments: u32,
    function: F
) -> Epicycles<I, F, T> where
    F: Fn(T) -> Complex<T> + Send + Copy,
    I: Integrate,
    T: FloatNum,