splineType property

SplineType get splineType
inherited

Implementation

SplineType get splineType => _splineType;
set splineType (SplineType value)
inherited

Implementation

set splineType(SplineType value) {
  if (_splineType != value) {
    _splineType = value;
    canUpdateOrCreateSegments = true;
    markNeedsUpdate();
  }
}