fill method

  1. @override
OpSet fill(
  1. List<PointD> points
)
override

Implementation

@override
OpSet fill(List<PointD> points) {
  final List<Line> lines = buildFillLines(points, _config);
  return OpSet(type: OpSetType.fillSketch, ops: dashedLines(lines, _config!));
}