MaskSpline(bpy_struct)

base class — bpy_struct

class bpy.types.MaskSpline(bpy_struct)

Single spline used for defining mask shape

offset_mode

The method used for calculating the feather offset

  • EVEN Even, Calculate even feather offset.
  • SMOOTH Smooth, Calculate feather offset as a second curve.
Type:enum in [‘EVEN’, ‘SMOOTH’], default ‘EVEN’
points

Collection of points

Type:MaskSplinePoints bpy_prop_collection of MaskSplinePoint, (readonly)
use_cyclic

Make this spline a closed loop

Type:boolean, default False
use_fill

Make this spline filled

Type:boolean, default False
use_self_intersection_check

Prevent feather from self-intersections

Type:boolean, default False
weight_interpolation

The type of weight interpolation for spline

Type:enum in [‘LINEAR’, ‘EASE’], default ‘LINEAR’
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.Struct subclass
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