CameraStereoData(bpy_struct)
base class — bpy_struct
- class bpy.types.CameraStereoData(bpy_struct)
Stereoscopy settings for a Camera data-block
- convergence_distance
The converge point for the stereo cameras (often the distance between a projector and the projection screen) (in [1e-05, inf], default 1.95)
- Type:
float
- convergence_mode
(default
'OFFAXIS')OFFAXISOff-Axis – Off-axis frustums converging in a plane.PARALLELParallel – Parallel cameras with no convergence.TOEToe-in – Rotated cameras, looking at the same point at the convergence distance.
- Type:
Literal[‘OFFAXIS’, ‘PARALLEL’, ‘TOE’]
- interocular_distance
Set the distance between the eyes - the stereo plane distance / 30 should be fine (in [0, inf], default 0.065)
- Type:
float
- pivot
(default
'LEFT')- Type:
Literal[‘LEFT’, ‘RIGHT’, ‘CENTER’]
- pole_merge_angle_from
Angle at which interocular distance starts to fade to 0 (in [0, 1.5708], default 1.0472)
- Type:
float
- pole_merge_angle_to
Angle at which interocular distance is 0 (in [0, 1.5708], default 1.309)
- Type:
float
- use_pole_merge
Fade interocular distance to 0 after the given cutoff angle (default False)
- Type:
bool
- use_spherical_stereo
Render every pixel rotating the camera around the middle of the interocular distance (default False)
- Type:
bool
- classmethod bl_rna_get_subclass(id, default=None, /)
- Parameters:
id (str) – The RNA type identifier.
default (
bpy.types.Struct| None) – The value to return when not found.
- Returns:
The RNA type or default when not found.
- Return type:
- classmethod bl_rna_get_subclass_py(id, default=None, /)
- Parameters:
id (str) – The RNA type identifier.
default (type | None) – The value to return when not found.
- Returns:
The class or default when not found.
- Return type:
type