| This is a graph of the cubic Spline primitive combined with other primitives. Here a
line of a different color connects the points making up the spline.
|
In[1]:=
<< Graphics`Spline`
In[2]:=
pts = {{0, 0}, {1, 2}, {-1, 3}, {0, 1}, {3, 0}};
In[3]:=
spl = Graphics[{Spline[pts, Cubic], Hue[0], Line[pts]}];
In[4]:=
JavaView[spl]
|