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_typeaspose.threed.entities.ProjectionTypeProjection type.

__init__(self, name)

Initializes a new instance of the Camera class.


def __init__(self, name):
    ...
ParameterTypeDescription
nameSystem.StringName.

__init__(self, name, projection_type)

Initializes a new instance of the Camera class.


def __init__(self, name, projection_type):
    ...
ParameterTypeDescription
nameSystem.StringName.
projection_typeaspose.threed.entities.ProjectionTypeProjection type.

See Also