예제 #1
0
 def __init__( self, robot, locator ):
     SteeringBehaviour.__init__( self, robot )
     self.locator = locator
     self.targetPos = Vector2D( 0, 0 )
예제 #2
0
파일: Wander.py 프로젝트: abroun/UweSub
 def __init__( self, wanderRate = 0.7 ):
     SteeringBehaviour.__init__( self )
     self.setWanderRate( wanderRate )
     self.wanderTargetAngle = 0.0
예제 #3
0
파일: Jiggling.py 프로젝트: abroun/SubSim
 def __init__( self, robot ):
     SteeringBehaviour.__init__( self, robot )
     self.numMovesRemaining = 0
     self.numMoveTicksRemaining = 0
     self.moveSteeringResult = ( 0.0, 0.0 )
예제 #4
0
 def __init__(self, robot):
     SteeringBehaviour.__init__(self, robot)