MCPcopy Create free account
hub / github.com/ColmapView/Colmapview.github.io / readUint32

Method readUint32

src/parsers/BinaryReader.ts:31–35  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

29 }
30
31 readUint32(): number {
32 const val = this.view.getUint32(this.offset, true); // little-endian
33 this.offset += 4;
34 return val;
35 }
36
37 readInt32(): number {
38 const val = this.view.getInt32(this.offset, true);

Callers 6

parseCamerasBinaryFunction · 0.95
parseRigsBinaryFunction · 0.95
parseImagesBinaryFunction · 0.95
parseFramesBinaryFunction · 0.95
parsePoints3DBinaryFunction · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected