ParametricInterval constructor

ParametricInterval(
  1. ParametricPoint startFunc,
  2. ParametricPoint endFunc, {
  3. InverseCdf? inverseCdf,
  4. String name = '',
})

Constructs a parametric interval defined by the parametric start point function startFunc and the end point function endFunc.

Implementation

ParametricInterval(
  this.startFunc,
  this.endFunc, {
  super.inverseCdf,
  super.name,
});