Axis#
- class omni.kit.manipulator.transform.Axis(
- value,
- names=None,
- *,
- module=None,
- qualname=None,
- type=None,
- start=1,
- boundary=None,
- Bases: - Flag- An enumeration to represent different axes and their combinations for transformations. - This Flag Enum is used to define axes for translation, rotation, and scaling operations in a 3D space. It allows combining multiple axes to define a plane or space. - Attributes - Represents the X-axis. - Represents the Y-axis. - Represents the Z-axis. - Represents the screen space direction. - Represents all axes combined, including screen space. - __init__(*args, **kwds)#
 - ALL = 15#
- Represents all axes combined, including screen space. 
 - SCREEN = 8#
- Represents the screen space direction. 
 - X = 1#
- Represents the X-axis. 
 - Y = 2#
- Represents the Y-axis. 
 - Z = 4#
- Represents the Z-axis.