resegmentable property

bool get resegmentable

Gets or sets whether the user may change the number of segments in this Link, if the link has straight segments. This affects the behavior of the LinkReshapingTool when #curve is not Link.Bezier.

The initial value is false.

Implementation

_i2.bool get resegmentable => _i4.getProperty(
      this,
      'resegmentable',
    );
set resegmentable (bool value)

Implementation

set resegmentable(_i2.bool value) {
  _i4.setProperty(
    this,
    'resegmentable',
    value,
  );
}