csc.view.Camera

class csc.view.Camera

Represents a spherical camera class in the view domain.

__init__(*args, **kwargs)

Methods

__init__(*args, **kwargs)

set_target(self, arg0)

Sets the camera target to a specified point.

zoom_to_points(self, arg0)

Zooms the camera to a specified set of points.

__annotations__ = {}
__init__(*args, **kwargs)
__module__ = 'csc.view'
set_target(self: csc.view.Camera, arg0: numpy.ndarray[numpy.float32[3, 1]]) None

Sets the camera target to a specified point.

Parameters:

arg0 (numpy.ndarray[numpy.float32[3,1]]) – The target point to set the camera to.

zoom_to_points(self: csc.view.Camera, arg0: list[numpy.ndarray[numpy.float32[3, 1]]]) None

Zooms the camera to a specified set of points.

Args: arg0 (numpy.ndarray[numpy.float32[3,1]]) : The set of points to zoom the camera to.