moveToMappoint method

void moveToMappoint(
  1. MappointRelative point
)

Starts a new sub-path at the given MappointRelative.

Implementation

void moveToMappoint(MappointRelative point) {
  _path.moveTo(point.dx, point.dy);
  _points.add(Pointinfo(true, point.dx, point.dy));
  _dashedPaths.clear();
}