PsSubpath constructor

const PsSubpath({
  1. required bool closed,
  2. required List<PsBezierKnot> knots,
  3. int operation = 1,
  4. int flags = 0,
})

Creates a semantic contour.

Implementation

const PsSubpath({
  required this.closed,
  required this.knots,
  this.operation = 1,
  this.flags = 0,
});