Converts a screen y-coordinate to a floating-point offscreen y-coordinate.
(int sy)
| 751 | |
| 752 | /**Converts a screen y-coordinate to a floating-point offscreen y-coordinate.*/ |
| 753 | public double offScreenYD(int sy) { |
| 754 | return srcRect.y + sy/magnification; |
| 755 | |
| 756 | } |
| 757 | |
| 758 | /**Converts an offscreen x-coordinate to a screen x-coordinate.*/ |
| 759 | public int screenX(int ox) { |
no outgoing calls
no test coverage detected