toString method

String toString()
override

Gets a text representation of this transformation. The string is of the form:

AffineTransformation[[m00, m01, m02], [m10, m11, m12]]

@return a string representing this transformation

Implementation

String toString() {
  return "AffineTransformation[[$m00, $m01, $m02], [$m10, $m11, $m12]]";
}