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=False)

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)
tag(value)

tag

Parameters:value (boolean) – Value

Inherited Properties

Inherited Functions

References