MCPcopy Create free account
hub / github.com/AstroImageJ/astroimagej / setMinAndMax

Method setMinAndMax

ij/src/main/java/ij/gui/ProfilePlot.java:173–177  ·  view source on GitHub ↗

Sets the y-axis min and max. Specify (0,0) to autoscale.

(double min, double max)

Source from the content-addressed store, hash-verified

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() {

Callers 6

runMethod · 0.95
doOptionsMethod · 0.95
setStackDisplayRangeMethod · 0.45
openAllMethod · 0.45
createShortImageMethod · 0.45
createFloatImageMethod · 0.45

Calls 1

registerMethod · 0.95

Tested by

no test coverage detected