* Write unsigned 64-bit integer (for point3D_id, counts, etc.) * COLMAP uses uint64_t for point3D_t
(value: bigint)
| 54 | * COLMAP uses uint64_t for point3D_t |
| 55 | */ |
| 56 | writeUint64(value: bigint): void { |
| 57 | this.ensureCapacity(8); |
| 58 | this.currentView.setBigUint64(this.offset, value, true); // little-endian |
| 59 | this.offset += 8; |
| 60 | } |
| 61 | |
| 62 | /** |
| 63 | * Convenience method to write a number as uint64 |
no test coverage detected