예제 #1
0
파일: main.py 프로젝트: arcoslab/roboview
class Scene(object):

    def __init__(self, robot): # XXX: try to remove arg
        self.robot = RobotWidget(robot)

    def add_to(self, display):
        self.robot.add_to(display)
예제 #2
0
 def __init__(self, robot):  # XXX: try to remove arg
     self.robot = RobotWidget(robot)
예제 #3
0
class Scene(object):
    def __init__(self, robot):  # XXX: try to remove arg
        self.robot = RobotWidget(robot)

    def add_to(self, display):
        self.robot.add_to(display)
예제 #4
0
파일: main.py 프로젝트: arcoslab/roboview
 def __init__(self, robot): # XXX: try to remove arg
     self.robot = RobotWidget(robot)