Converts a screen x-coordinate to a floating-point offscreen x-coordinate.
(int sx)
| 746 | |
| 747 | /**Converts a screen x-coordinate to a floating-point offscreen x-coordinate.*/ |
| 748 | public double offScreenXD(int sx) { |
| 749 | return srcRect.x + sx/magnification; |
| 750 | } |
| 751 | |
| 752 | /**Converts a screen y-coordinate to a floating-point offscreen y-coordinate.*/ |
| 753 | public double offScreenYD(int sy) { |
no outgoing calls
no test coverage detected