AffineTransformationBuilder constructor

AffineTransformationBuilder(
  1. Coordinate src0,
  2. Coordinate src1,
  3. Coordinate src2,
  4. Coordinate dest0,
  5. Coordinate dest1,
  6. Coordinate dest2,
)

Constructs a new builder for the transformation defined by the given set of control point mappings.

@param src0 a control point @param src1 a control point @param src2 a control point @param dest0 the image of control point 0 under the required transformation @param dest1 the image of control point 1 under the required transformation @param dest2 the image of control point 2 under the required transformation

Implementation

AffineTransformationBuilder(
    this.src0, this.src1, this.src2, this.dest0, this.dest1, this.dest2);