curveCatmullRom function

Curve curveCatmullRom({
  1. double alpha = 0.5,
})

Creates a Catmull-Rom curve with the given alpha.

Implementation

Curve curveCatmullRom({double alpha = 0.5}) => CurveCatmullRom(alpha: alpha);