alternateAngle property
num
get
alternateAngle
Gets or sets the alternate direction for tree growth.
The default value is 0; the value must be one of: 0, 90, 180, 270.
These values are in degrees, where 0 is along the positive X axis, and where 90 is along the positive Y axis. This sets the #alternateDefaults' property of the same name.
Implementation
_i2.num get alternateAngle => _i4.getProperty(
this,
'alternateAngle',
);
set
alternateAngle
(num value)
Implementation
set alternateAngle(_i2.num value) {
_i4.setProperty(
this,
'alternateAngle',
value,
);
}