Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/MathMan05/Fermi
/ write32Float
Method
write32Float
src/webpage/utils/binaryUtils.ts:60–63 ·
view source on GitHub ↗
(numb: number)
Source
from the content-addressed store, hash-verified
58
this.view =
new
DataView(this.buffer, 0);
59
}
60
write32Float(numb: number) {
61
this.view.setFloat32(this.i, numb);
62
this.i += 4;
63
}
64
write16(numb: number) {
65
this.view.setUint16(this.i, numb);
66
this.i += 2;
Callers
1
page.ts
File · 0.80
Calls
no outgoing calls
Tested by
no test coverage detected