toSkeletonCoordinates method

Offset toSkeletonCoordinates(
  1. Offset position
)

Implementation

Offset toSkeletonCoordinates(Offset position) {
  var x = position.dx;
  var y = position.dy;
  return Offset(x / _scaleX - _offsetX, y / _scaleY - _offsetY);
}