Function draw_3D_connected_full_view_proportional

  • 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 Drawing is translated and scaled proportionally with its size maximized to fit entirely inside the cube.

    Parameters

    • numPoints: number

    Returns RenderFunction

    function of type Curve → Drawing

    Example

    draw_3D_connected_full_view_proportional(100)(t => make_3D_point(t, t, t));