transformPoint method

GPoint transformPoint(
  1. GPoint point, [
  2. GPoint? out
])

Returns the result of applying the geometric transformation represented by the Matrix object to the specified point.

Implementation

GPoint transformPoint(GPoint point, [GPoint? out]) {
  return transformCoords(point.x, point.y, out);
}