Skip to main content

SceneOrientation

Other

Scene orientation types for medical and engineering viewpoints. Standard and Classic use engineering axis conventions (X, Y, Z). The medical orientations use anatomical camera conventions, and Orientation1-4 are additional preset orientations. Available values: - Standard: Standard engineering 3D orientation (X, Y, Z axes). - Classic: Classic engineering orientation. - Medical1: Radiologist anatomical viewpoint. - Medical2: Neurologist anatomical viewpoint. - Orientation1: Preset orientation 1. - Orientation2: Preset orientation 2. - Orientation3: Preset orientation 3. - Orientation4: Preset orientation 4.

Import

import ScriptingApi as api

# Access the class
# SceneOrientation is available via api.SceneOrientation

Enumeration Values

Enumeration Orientation from SceneOrientation

ValueDescription
SceneOrientation.StandardStandard option
SceneOrientation.ClassicClassic option
SceneOrientation.Medical1Medical1 option
SceneOrientation.Medical2Medical2 option
SceneOrientation.Orientation1Orientation1 option
SceneOrientation.Orientation2Orientation2 option
SceneOrientation.Orientation3Orientation3 option
SceneOrientation.Orientation4Orientation4 option

Usage Example

import ScriptingApi as api

# Access enumeration values
value = api.SceneOrientation.Standard

See Also