getWorldAnchorPointInPoints method

Point<double> getWorldAnchorPointInPoints()

Implementation

Point<double> getWorldAnchorPointInPoints() {
  var contentSize = getWorldContentSize();
  return Point<double>(
      contentSize.x * _anchorPoint.x, contentSize.y * _anchorPoint.y);
}