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

Method getInt

ij/src/main/java/ij/io/RoiDecoder.java:598–604  ·  view source on GitHub ↗
(int base)

Source from the content-addressed store, hash-verified

596 }
597
598 int getInt(int base) {
599 int b0 = data[base]&255;
600 int b1 = data[base+1]&255;
601 int b2 = data[base+2]&255;
602 int b3 = data[base+3]&255;
603 return ((b0<<24) + (b1<<16) + (b2<<8) + b3);
604 }
605
606 float getFloat(int base) {
607 return Float.intBitsToFloat(getInt(base));

Callers 9

getRoiMethod · 0.95
getShapeRoiMethod · 0.95
getTextRoiMethod · 0.95
getRoiNameMethod · 0.95
getRoiPropsMethod · 0.95
getPointCountersMethod · 0.95
getFloatMethod · 0.95
FileSaverClass · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected