(a, b)
| 8776 | var solve = __webpack_require__(727) |
| 8777 | |
| 8778 | function dot(a, b) { |
| 8779 | var s = 0.0 |
| 8780 | var d = a.length |
| 8781 | for(var i=0; i<d; ++i) { |
| 8782 | s += a[i] * b[i] |
| 8783 | } |
| 8784 | return s |
| 8785 | } |
| 8786 | |
| 8787 | function barycentricCircumcenter(points) { |
| 8788 | var N = points.length |
no outgoing calls
no test coverage detected