(points, options = {})
| 101632 | return false; |
| 101633 | } |
| 101634 | function getPolygonWindingDirection(points, options = {}) { |
| 101635 | return Math.sign(getPolygonSignedArea(points, options)); |
| 101636 | } |
| 101637 | function getPolygonSignedArea(points, options = {}) { |
| 101638 | const { start =0 , end =points.length } = options; |
| 101639 | const dim = options.size || 2; |
no test coverage detected