Returns a function that turns a given Curve into a Drawing, by sampling the Curve at num sample points and connecting each pair with a line. The parts between (0,0) and (1,1) of the resulting Drawing are shown in the window.
num
function of type Curve → Drawing
draw_connected(100)(t => make_point(t, t)); Copy
draw_connected(100)(t => make_point(t, t));
Returns a function that turns a given Curve into a Drawing, by sampling the Curve at
num
sample points and connecting each pair with a line. The parts between (0,0) and (1,1) of the resulting Drawing are shown in the window.