Shape constructor

Shape(
  1. dynamic points
)

Implementation

Shape(points) : super(points) {
  uuid = MathUtils.generateUUID();
  holes = [];
}