localToParent method

Point<num> localToParent(
  1. Point<num> localPoint,
  2. [Point<num>? returnPoint]
)

Converts the point object from this display object's local coordinates to this display object's parent coordinates.

This method allows you to convert any given x- and y-coordinates from values that are relative to the origin (0,0) of this display object's local coordinates to values that are relative to the origin of this display object's parent coordinates.

Implementation

Point<num> localToParent(Point<num> localPoint, [Point<num>? returnPoint]) {
  final p = returnPoint is Point ? returnPoint : Point<num>(0.0, 0.0);
  final x = localPoint.x.toDouble();
  final y = localPoint.y.toDouble();
  final m = transformationMatrix;

  p.x = x * m.a + y * m.c + m.tx;
  p.y = x * m.b + y * m.d + m.ty;

  return p;
}