BlendDataCurves(bpy_struct)

base class — bpy_struct

class bpy.types.BlendDataCurves(bpy_struct)

Collection of curves

is_updated
Type:boolean, default False, (readonly)
new(name, type)

Add a new curve to the main database

Parameters:
  • name (string, (never None)) – New name for the data-block
  • type (enum in ['CURVE', 'SURFACE', 'FONT']) – Type, The type of curve to add
Returns:

New curve data-block

Return type:

Curve

remove(curve, do_unlink=True, do_id_user=True, do_ui_user=True)

Remove a curve from the current blendfile

Parameters:
  • curve (Curve, (never None)) – Curve to remove
  • do_unlink (boolean, (optional)) – Unlink all usages of this curve before deleting it (WARNING: will also delete objects instancing that curve data)
  • do_id_user (boolean, (optional)) – Decrement user counter of all datablocks used by this curve data
  • do_ui_user (boolean, (optional)) – Make sure interface does not reference this curve data
tag(value)

tag

Parameters:value (boolean) – Value

Inherited Properties

Inherited Functions

References