Sets the y-axis min and max. Specify (0,0) to autoscale.
(double min, double max)
| 171 | |
| 172 | /** Sets the y-axis min and max. Specify (0,0) to autoscale. */ |
| 173 | public static void setMinAndMax(double min, double max) { |
| 174 | fixedMin = min; |
| 175 | fixedMax = max; |
| 176 | IJ.register(ProfilePlot.class); |
| 177 | } |
| 178 | |
| 179 | /** Returns the profile plot y-axis min. Auto-scaling is used if min=max=0. */ |
| 180 | public static double getFixedMin() { |
no test coverage detected