Shape constructor

Shape(
  1. dynamic points
)

Implementation

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