parametrics 1.5.0

A crate for working with parametric functions
Documentation

Parametrics

A crate the allows for working with parametric functions.

2D Parametric functions

Contains a trait for 2d parametric functions and the following implementations;

Also allows for combination and modification of things which implement the trait.

The trait is implemented for Fn(T) -> Point and (F,G) where F: ParametricFunction1D, G: ParametricFunction1D

1D Parametric functions

The trait is implemented for Fn(T) -> f32