Returns a function that turns a given 3D Curve into a Drawing, by sampling the 3D Curve at num sample points and connecting each pair with a line. The parts between (0,0,0) and (1,1,1) of the resulting Drawing are shown within the unit cube.
num
function of type Curve → Drawing
draw_3D_connected(100)(t => make_3D_point(t, t, t)); Copy
draw_3D_connected(100)(t => make_3D_point(t, t, t));
Returns a function that turns a given 3D Curve into a Drawing, by sampling the 3D Curve at
num
sample points and connecting each pair with a line. The parts between (0,0,0) and (1,1,1) of the resulting Drawing are shown within the unit cube.