Changeset View
Changeset View
Standalone View
Standalone View
add_curve_sapling/__init__.py
| Context not available. | |||||
| default=3, update=update_tree) | default=3, update=update_tree) | ||||
| length = FloatVectorProperty(name='Length', | length = FloatVectorProperty(name='Length', | ||||
| description='The relative lengths of each branch level (nLength)', | description='The relative lengths of each branch level (nLength)', | ||||
| min=0.000001, | min=1e-6, | ||||
| default=[1, 0.3, 0.6, 0.45], | default=[1, 0.3, 0.6, 0.45], | ||||
| size=4, update=update_tree) | size=4, update=update_tree) | ||||
| lengthV = FloatVectorProperty(name='Length Variation', | lengthV = FloatVectorProperty(name='Length Variation', | ||||
| Context not available. | |||||
| default='7', update=update_tree) | default='7', update=update_tree) | ||||
| baseSize = FloatProperty(name='Base Size', | baseSize = FloatProperty(name='Base Size', | ||||
| description='Fraction of tree height with no branches (BaseSize)', | description='Fraction of tree height with no branches (BaseSize)', | ||||
| min=0.0, | min=1e-6, | ||||
| max=1.0, | max=1.0, | ||||
| default=0.4, update=update_tree) | default=0.4, update=update_tree) | ||||
| ratio = FloatProperty(name='Ratio', | ratio = FloatProperty(name='Ratio', | ||||
| Context not available. | |||||