Spline Command
- Spline( <List of Points> )
-
Creates a cubic spline through all points.
- Spline( <List of Points>, <Order ≥ 3> )
-
Creates a spline with given order through all points.
- Spline( <List of Points>, <Order ≥ 3>, <Weight Function> )
-
Creates a spline with given order through all points. The weight function says what should be the difference of t values for point Pi and Pi+1 given their difference Pi+1 - Pi = (x, y). To get the spline you expect from "function" algorithm you should use
abs(x)+0*y
, to get the GeoGebra’s default spline you can usesqrt(x^2+y^2)
.
The choice of default makes the result behave nicely when transformed, making sure that |