<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)
Date:   Feb 18, 2019
"""

 
class Point2():
    """
    An instance is a point in 2D space.
    
    to create a 2D point, 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>