parentToLocal method

  1. @override
Point<num> parentToLocal(
  1. Point<num> parentPoint, [
  2. Point<num>? returnPoint
])
override

Converts the point object from this display object's parent coordinates to this display object's local 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 parent coordinates to values that are relative to the origin of this display object's local coordinates.

Implementation

@override
Point<num> parentToLocal(Point<num> parentPoint, [Point<num>? returnPoint]) {
  _calculateProjectionMatrix(transformationMatrix);
  return _projectionMatrix3D.transformPointInverse(parentPoint, returnPoint);
}