Makes a copy of points.
points
List<Point<num>> copyPoints(List<Point<num>> points) { return points.map((p) => Point(p.x, p.y)).toList(); }