Add a line to a point
void line({required Point<double> to}) { edges.add(LineEdge(currentPoint, to)); currentPoint = to; }