#------------------------------------------------------------------------------
#  Point1.py
#------------------------------------------------------------------------------

class Point:
   """ 
   Point class encapsulates two numbers (xcoord, ycoord). 
   """
   xcoord = 0
   ycoord = 0  
    
# end class Point

