Barriere.py 501 B

1234567891011121314
  1. class Barriere :
  2. def __init__(barriere,orientation, x, y) : # 09/2016
  3. barriere.orientation = orientation #"h" ou "v"
  4. barriere.x = x
  5. barriere.y = y
  6. #cf les conventions pour x et y
  7. def __eq__(b1, b2) : #Quentin 04/10/2016
  8. """ Permet de savoir si deux barrières sont identiques """
  9. return b1.orientation == b2.orientation and b1.x == b2.x and b1.y == b2.y
  10. def copie(self) :
  11. return Barriere(self.orientation, self.x, self.y)