Point localToGlobal(Point point)

Convert the given point from the local coordinate system for this box to the global coordinate system.

Source

Point localToGlobal(Point point) {
  return MatrixUtils.transformPoint(_collectPaintTransform(), point);
}