MCPcopy Index your code
hub / github.com/ColmapView/Colmapview.github.io / readUint8

Method readUint8

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

Source from the content-addressed store, hash-verified

23 }
24
25 readUint8(): number {
26 const val = this.view.getUint8(this.offset);
27 this.offset += 1;
28 return val;
29 }
30
31 readUint32(): number {
32 const val = this.view.getUint32(this.offset, true); // little-endian

Callers 4

readStringMethod · 0.95
parseRigsBinaryFunction · 0.95
parsePoints3DBinaryFunction · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected