Point constructor

Point(
  1. double centerX,
  2. double centerY,
  3. double width,
  4. double height,
  5. double left,
  6. double top,
  7. double right,
  8. double bottom,
  9. double scale,
  10. double angle,
  11. int index,
)

Implementation

Point(
  this.centerX,
  this.centerY,
  this.width,
  this.height,
  this.left,
  this.top,
  this.right,
  this.bottom,
  this.scale,
  this.angle,
  this.index,
);