Example #1
0
    def step(self, t):
        """Step the scene and all contained `MediaObject`s forward `t` seconds
        in time.

        step(float) -> None
        """
        with self.__objects_lock:
            for mediaobject in self.__objects:
                mediaobject.step(t)
            PhysicalObject.step(self, t)