(stars, edges)
| 8640 | module.exports = createTriangulation |
| 8641 | |
| 8642 | function Triangulation(stars, edges) { |
| 8643 | this.stars = stars |
| 8644 | this.edges = edges |
| 8645 | } |
| 8646 | |
| 8647 | var proto = Triangulation.prototype |
| 8648 |
nothing calls this directly
no test coverage detected
searching dependent graphs…