"""
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

