Offset4 constructor

Offset4(
  1. int p1,
  2. int p2,
  3. int p3,
  4. int p4,
  5. int row,
  6. int column,
  7. int rowSize,
  8. int colSize,
  9. List<Color> gradient,
)

Class for storing and drawing four points of a polygon.

Implementation

Offset4(
  this.p1,
  this.p2,
  this.p3,
  this.p4,
  this.row,
  this.column,
  this.rowSize,
  this.colSize,
  this.gradient,
);