mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-08-03 16:58:24 +02:00
[Viewer3D] Clean-up: Harmonize syntax across all the files
This commit is contained in:
parent
9249615baf
commit
9d2974d282
18 changed files with 307 additions and 321 deletions
|
@ -23,7 +23,7 @@ Entity {
|
|||
function buildGrid(first, last, offset, attribute) {
|
||||
var vertexCount = (((last-first)/offset)+1)*4;
|
||||
var f32 = new Float32Array(vertexCount*3);
|
||||
for(var id = 0, i = first; i <= last; i += offset, id++)
|
||||
for (var id = 0, i = first; i <= last; i += offset, id++)
|
||||
{
|
||||
f32[12*id] = i;
|
||||
f32[12*id+1] = 0.0;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue