<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">"""
Module containing one classes: Point2

Author: Walker M. White (wmw2), Anne Bracy (awb93), Daisy Fan (kdf4)
Date:   March 2021
"""

class Point2():
    """
    An instance is a point in 2D space.

    Example: to create a 2D point with the coordinates (1,2), type:
    p1 = shapes.Point2(1,2)

    """

    def __init__(self, x, y):
        """
        Creates a new Point with the given coordinates.
        """
        self.x = x
        self.y = y
</pre></body></html>