MCPcopy Index your code
hub / github.com/PavelDoGreat/WebGL-Fluid-Simulation / calcDeltaTime

Function calcDeltaTime

script.js:1188–1194  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

1186}
1187
1188function calcDeltaTime () {
1189 let now = Date.now();
1190 let dt = (now - lastUpdateTime) / 1000;
1191 dt = Math.min(dt, 0.016666);
1192 lastUpdateTime = now;
1193 return dt;
1194}
1195
1196function resizeCanvas () {
1197 let width = scaleByPixelRatio(canvas.clientWidth);

Callers 1

updateFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected