Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/ColmapView/Colmapview.github.io
/ writeUint8
Method
writeUint8
src/parsers/BinaryWriter.ts:34–38 ·
view source on GitHub ↗
(value: number)
Source
from the content-addressed store, hash-verified
32
}
33
34
writeUint8(value: number): void {
35
this.ensureCapacity(1);
36
this.currentView.setUint8(this.offset, value);
37
this.offset += 1;
38
}
39
40
writeUint32(value: number): void {
41
this.ensureCapacity(4);
Callers
4
writePoints3DBinary
Function · 0.95
writeRigsBinary
Function · 0.95
writeString
Method · 0.95
createBinaryRigBuffer
Function · 0.95
Calls
1
ensureCapacity
Method · 0.95
Tested by
1
createBinaryRigBuffer
Function · 0.76