toPath method

Path toPath()

Implementation

Path toPath() {
  final Path path = Path();
  for (final CameraCutoutPathCommand command in commands) {
    command.addTo(path);
  }
  return path;
}