Camera constructor

__init__(self)

Initializes a new instance of the Camera class.


def __init__(self):
    ...

__init__(self, projection_type)

Initializes a new instance of the Camera class.


def __init__(self, projection_type):
    ...
ParameterTypeDescription
projection_typeProjectionTypeProjection type.

__init__(self, name)

Initializes a new instance of the Camera class.


def __init__(self, name):
    ...
ParameterTypeDescription
namestrName.

__init__(self, name, projection_type)

Initializes a new instance of the Camera class.


def __init__(self, name, projection_type):
    ...
ParameterTypeDescription
namestrName.
projection_typeProjectionTypeProjection type.

See Also