mirror of
https://github.com/xibyte/jsketcher
synced 2025-12-09 18:02:50 +01:00
clean up unused variables
This commit is contained in:
parent
43c1f4f0b9
commit
3693c1d7f3
1 changed files with 0 additions and 5 deletions
|
|
@ -15,12 +15,7 @@ export function parse(dataView) {
|
|||
let triangleCount = dataView.getUint32(off, true);
|
||||
off += 4;
|
||||
|
||||
let cells = [];
|
||||
let positions = [];
|
||||
let faceNormals = [];
|
||||
|
||||
for (let i = 0; i < triangleCount; i++) {
|
||||
let cell = [];
|
||||
let normal = readVector(dataView, off);
|
||||
off += 12; // 3 floats
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue