• Makes a Point with given x and y coordinates.

    Parameters

    • x: number

      x-coordinate of new point

    • y: number

      y-coordinate of new point

    Returns Point

    with x and y as coordinates

    Example

    const point = make_point(0.5, 0.5);