Posts by Veronezi • 41 points
2 posts
-
0
votes0
answers84
viewsQ: How to convert numbers in 64-bit float format to 32-bit float in php?
In Javascript I could do so: let settings = { valorFloat : file.getFloat64(38, false), //Le o dado da posição 38 no formato float 64 bits }; newFile.setFloat32(38, file.settings.valorFloat, true);…
-
3
votes3
answers757
viewsQ: Is there a command or function in Javascript that controls the screen update before the loop ends?
Just one example: <script> for (var i=0;i<10;i++) { //Inicia loop for para contar de 0 até 9 var t=0; // inicia variável t com valor 0 while(t<1000000) { //inicia loop enquanto t for…