(arr, newValue)
| 371 | }; |
| 372 | |
| 373 | function insertIfNewLevel(arr, newValue) { |
| 374 | var found = false; |
| 375 | for(var k = 0; k < arr.length; k++) { |
| 376 | if(newValue === arr[k]) { |
| 377 | found = true; |
| 378 | break; |
| 379 | } |
| 380 | } |
| 381 | if(found === false) arr.push(newValue); |
| 382 | } |
| 383 | |
| 384 | proto.setContourLevels = function() { |
| 385 | var newLevels = [[], [], []]; |
no outgoing calls
no test coverage detected
searching dependent graphs…