View3DCursor(bpy_struct)¶
base class — bpy_struct
-
class
bpy.types.View3DCursor(bpy_struct)¶ -
location¶ - Type
float array of 3 items in [-inf, inf], default (0.0, 0.0, 0.0)
-
matrix¶ Matrix combining loc/rot of the cursor
- Type
float multi-dimensional array of 4 * 4 items in [-inf, inf], default ((0.0, 0.0, 0.0, 0.0), (0.0, 0.0, 0.0, 0.0), (0.0, 0.0, 0.0, 0.0), (0.0, 0.0, 0.0, 0.0))
-
rotation_axis_angle¶ Angle of Rotation for Axis-Angle rotation representation
- Type
float array of 4 items in [-inf, inf], default (0.0, 0.0, 1.0, 0.0)
-
rotation_euler¶ 3D rotation
- Type
float array of 3 items in [-inf, inf], default (0.0, 0.0, 0.0)
-
rotation_mode¶ QUATERNIONQuaternion (WXYZ), No Gimbal Lock.XYZXYZ Euler, XYZ Rotation Order - prone to Gimbal Lock (default).XZYXZY Euler, XZY Rotation Order - prone to Gimbal Lock.YXZYXZ Euler, YXZ Rotation Order - prone to Gimbal Lock.YZXYZX Euler, YZX Rotation Order - prone to Gimbal Lock.ZXYZXY Euler, ZXY Rotation Order - prone to Gimbal Lock.ZYXZYX Euler, ZYX Rotation Order - prone to Gimbal Lock.AXIS_ANGLEAxis Angle, Axis Angle (W+XYZ), defines a rotation around some axis defined by 3D-Vector.
- Type
enum in [‘QUATERNION’, ‘XYZ’, ‘XZY’, ‘YXZ’, ‘YZX’, ‘ZXY’, ‘ZYX’, ‘AXIS_ANGLE’], default ‘XYZ’
-
rotation_quaternion¶ Rotation in quaternions (keep normalized)
- Type
float array of 4 items in [-inf, inf], default (1.0, 0.0, 0.0, 0.0)
-
classmethod
bl_rna_get_subclass(id, default=None)¶ - Parameters
id (string) – The RNA type identifier.
- Returns
The RNA type or default when not found.
- Return type
bpy.types.Structsubclass
-
classmethod
bl_rna_get_subclass_py(id, default=None)¶ - Parameters
id (string) – The RNA type identifier.
- Returns
The class or default when not found.
- Return type
type
-
Inherited Properties
Inherited Functions
References