localToGlobal method
GPoint
localToGlobal(
- GPoint localPoint, [
- GPoint? out
inherited
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);
}