def __init__(self, x=0, y=0):
        """Initialise the SteerVec. Nothing to do, just calls Vec2.__init__."""

        Vec2.__init__(self, x, y)
Beispiel #2
0
 def __init__(self,x=0,y=0):
     """Initialise the SteerVec. Nothing to do, just calls Vec2.__init__."""
     
     Vec2.__init__(self,x,y)