• Makes a 3D Point with given x, y and z coordinates.

    Parameters

    • x: number

      x-coordinate of new point

    • y: number

      y-coordinate of new point

    • z: number

      z-coordinate of new point

    Returns Point

    with x, y and z as coordinates

    Example

    const point = make_3D_point(0.5, 0.5, 0.5);