"""
This file defines a class to represent a sun in a graphical scene.
"""

from graphics import *

class Sun(object):
  """
  An object to represent a sun in a graphical scene.
  """
  def __init__(self, center):
    self.circle = Circle(center, 30)
    self.circle.setFill("yellow")
    self.circle.setOutline("yellow")
  def draw(self, win):
    self.circle.draw(win)
  def time_to_move(self):
    pass
