Converts calibrated coordinates to integer pixel coordinates.
(double x)
| 1988 | |
| 1989 | /** Converts calibrated coordinates to integer pixel coordinates. */ |
| 1990 | private int scaleX(double x) { |
| 1991 | double xPxl = scaleXtoPxl(x); |
| 1992 | return pxlToInt(xPxl); |
| 1993 | } |
| 1994 | |
| 1995 | /** Converts calibrated coordinates to integer pixel coordinates. */ |
| 1996 | private int scaleY(double y) { |
no test coverage detected