src/camera.py [22:28]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    @classmethod
    def calc_positions(cls, config, **kwargs):
        matrices = []
        for angle in np.arange(0, 2 * np.pi, 2 * np.pi / config.videoFrames):
            T = np.eye(4)
            T[:3, 3] = np.array(config.camCenter)
            T[2, 3] += config.camRadius
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/camera.py [38:45]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    @classmethod
    # This camera simply rotates without movement.
    def calc_positions(cls, config, **kwargs):
        matrices = []
        for angle in np.arange(0, 2 * np.pi, 2 * np.pi / config.videoFrames):
            T = np.eye(4)
            T[:3, 3] = np.array(config.camCenter)
            T[2, 3] += config.camRadius
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



