align property

double get align

The alignment of points within the range (0 to 1).

Implementation

double get align => _align;
set align (double value)

Implementation

set align(double value) {
  _align = value.clamp(0.0, 1.0);
}