getWorldContentSize method

Point<double> getWorldContentSize()

Implementation

Point<double> getWorldContentSize() {
  var contentSize = getContentSize();
  var scale = getWorldScale();
  return Point(contentSize.x * scale, contentSize.y * scale);
}