(x, y, z, v)
| 211 | } |
| 212 | |
| 213 | function addVertex(x, y, z, v) { |
| 214 | allXs.push(x); |
| 215 | allYs.push(y); |
| 216 | allZs.push(z); |
| 217 | allVs.push(v); |
| 218 | numVertices++; |
| 219 | |
| 220 | return numVertices - 1; |
| 221 | } |
| 222 | |
| 223 | function addFace(a, b, c) { |
| 224 | data._meshI.push(a); |
no outgoing calls
no test coverage detected
searching dependent graphs…