View3DCursor(bpy_struct)#
base class — bpy_struct
- class bpy.types.View3DCursor(bpy_struct)#
- location#
- Type:
mathutils.Vector
of 3 items in [-inf, inf], default (0.0, 0.0, 0.0)
- matrix#
Matrix combining location and rotation of the cursor
- Type:
mathutils.Matrix
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:
mathutils.Euler
rotation of 3 items in [-inf, inf], default (0.0, 0.0, 0.0)
- rotation_mode#
- Type:
enum in Object Rotation Mode Items, default ‘XYZ’
- rotation_quaternion#
Rotation in quaternions (keep normalized)
- Type:
mathutils.Quaternion
rotation 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 (str) – The RNA type identifier.
- Returns:
The RNA type or default when not found.
- Return type:
bpy.types.Struct
subclass
- classmethod bl_rna_get_subclass_py(id, default=None)#
- Parameters:
id (str) – The RNA type identifier.
- Returns:
The class or default when not found.
- Return type:
type