Exemplo n.º 1
0
 def __init__(self, angle, samples=DEFAULT_SAMPLES_PER_STEP):
     WalkCommand.__init__(self, WALK_TURN, angle, samples)
Exemplo n.º 2
0
 def __init__(self, angle, radius, samples=DEFAULT_SAMPLES_PER_STEP):
     WalkCommand.__init__(self, WALK_ARC, angle, radius, samples)
Exemplo n.º 3
0
 def __init__(self, dist, samples=DEFAULT_SAMPLES_PER_STEP):
     WalkCommand.__init__(self, WALK_SIDEWAYS, dist, samples)