(points, options = {})
| 101675 | return false; |
| 101676 | } |
| 101677 | function getPolygonWindingDirectionPoints(points, options = {}) { |
| 101678 | return Math.sign(getPolygonSignedAreaPoints(points, options)); |
| 101679 | } |
| 101680 | function getPolygonSignedAreaPoints(points, options = {}) { |
| 101681 | const { start =0 , end =points.length } = options; |
| 101682 | let area = 0; |
no test coverage detected