MaskSplinePoint(bpy_struct)

base class — bpy_struct

class bpy.types.MaskSplinePoint(bpy_struct)

Single point in spline used for defining mask

co

Coordinates of the control point (array of 2 items, in [-inf, inf], default (0.0, 0.0))

Type:

mathutils.Vector

feather_points

Points defining feather (default None, readonly)

Type:

bpy_prop_collection[MaskSplinePointUW]

handle_left

Coordinates of the first handle (array of 2 items, in [-inf, inf], default (0.0, 0.0))

Type:

mathutils.Vector

handle_left_type

Handle type (default 'FREE')

Type:

Literal[‘AUTO’, ‘VECTOR’, ‘ALIGNED’, ‘ALIGNED_DOUBLESIDE’, ‘FREE’]

handle_right

Coordinates of the second handle (array of 2 items, in [-inf, inf], default (0.0, 0.0))

Type:

mathutils.Vector

handle_right_type

Handle type (default 'FREE')

Type:

Literal[‘AUTO’, ‘VECTOR’, ‘ALIGNED’, ‘ALIGNED_DOUBLESIDE’, ‘FREE’]

handle_type

Handle type (default 'FREE')

Type:

Literal[‘AUTO’, ‘VECTOR’, ‘ALIGNED’, ‘ALIGNED_DOUBLESIDE’, ‘FREE’]

parent

(readonly)

Type:

MaskParent

select

Selection status of the control point. (Deprecated: use Select Control Point instead) (default False)

Type:

bool

select_control_point

Selection status of the control point (default False)

Type:

bool

select_left_handle

Selection status of the left handle (default False)

Type:

bool

select_right_handle

Selection status of the right handle (default False)

Type:

bool

select_single_handle

Selection status of the Aligned Single handle (default False)

Type:

bool

weight

Weight of the point (in [0, 1], default 0.0)

Type:

float

classmethod bl_rna_get_subclass(id, default=None, /)
Parameters:
  • id (str) – The RNA type identifier.

  • default (bpy.types.Struct | None) – The value to return when not found.

Returns:

The RNA type or default when not found.

Return type:

bpy.types.Struct

classmethod bl_rna_get_subclass_py(id, default=None, /)
Parameters:
  • id (str) – The RNA type identifier.

  • default (type | None) – The value to return when not found.

Returns:

The class or default when not found.

Return type:

type

Inherited Properties

Inherited Functions

References