Skip to main content

SwapAxesPair

Other

Axis pair specification for swap-axes operations. Available values: - XY: Swap the X and Y axes. - XZ: Swap the X and Z axes. - YZ: Swap the Y and Z axes.

Import

import ScriptingApi as api

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

Enumeration Values

Enumeration Type from SwapAxesPair

ValueDescription
SwapAxesPair.XYXY option
SwapAxesPair.XZXZ option
SwapAxesPair.YZYZ option

Usage Example

import ScriptingApi as api

# Access enumeration values
value = api.SwapAxesPair.XY

See Also