localToGlobal method

GPoint localToGlobal(
  1. GPoint localPoint, [
  2. GPoint? out
])

Transforms the given localPoint from the local coordinate system to the global coordinate system.

Implementation

GPoint localToGlobal(GPoint localPoint, [GPoint? out]) {
  getTransformationMatrix(base, _sHelperMatrixAlt);
  return _sHelperMatrixAlt.transformPoint(localPoint, out);
}