Scales a font of the original plot for a high-resolution plot.
(Font font)
| 2043 | |
| 2044 | /** Scales a font of the original plot for a high-resolution plot. */ |
| 2045 | @AstroImageJ(reason = "Access widen for Vector Plot saving", modified = true) |
| 2046 | public Font scFont(Font font) { |
| 2047 | float size = font.getSize2D(); |
| 2048 | return scale==1 ? font : font.deriveFont(size*scale); |
| 2049 | } |
| 2050 | |
| 2051 | /** Returns whether the plot requires color (not grayscale) */ |
| 2052 | boolean isColored() { |
no outgoing calls
no test coverage detected