cam.chain#

BlenderCAM ‘chain.py’

All properties of a CAM Chain (a series of Operations), and the Chain’s Operation reference.

Classes#

Module Contents#

class opReference[source]#

Bases: bpy.types.PropertyGroup

name: StringProperty(name='Operation Name', default='Operation')[source]#
computing = False[source]#
class camChain[source]#

Bases: bpy.types.PropertyGroup

index: IntProperty(name='Index', description='Index in the hard-defined camChains', default=-1)[source]#
active_operation: IntProperty(name='Active Operation', description='Active operation in chain', default=-1)[source]#
name: StringProperty(name='Chain Name', default='Chain')[source]#
filename: StringProperty(name='File Name', default='Chain')[source]#
valid: BoolProperty(name='Valid', description='True if whole chain is ok for calculation', default=True)[source]#
computing: BoolProperty(name='Computing Right Now', description='', default=False)[source]#
operations: CollectionProperty(type=opReference)[source]#