(a, b, c)
| 221 | } |
| 222 | |
| 223 | function addFace(a, b, c) { |
| 224 | data._meshI.push(a); |
| 225 | data._meshJ.push(b); |
| 226 | data._meshK.push(c); |
| 227 | numFaces++; |
| 228 | |
| 229 | return numFaces - 1; |
| 230 | } |
| 231 | |
| 232 | function getCenter(A, B, C) { |
| 233 | var M = []; |
no outgoing calls
no test coverage detected
searching dependent graphs…