curviness property

num get curviness

Gets or sets how far the control points are offset when the #curve is Link.Bezier|Bezier or when there are multiple links between the same two ports.

The default value is NaN -- the actual curviness is computed based on how many links connect the same pair of ports.

Implementation

_i2.num get curviness => _i4.getProperty(
      this,
      'curviness',
    );
set curviness (num value)

Implementation

set curviness(_i2.num value) {
  _i4.setProperty(
    this,
    'curviness',
    value,
  );
}