(point, points, other, entry)
| 132780 | var _pointEqualJsDefault = parcelHelpers.interopDefault(_pointEqualJs); |
| 132781 | var _mathJs = require("../math.js"); |
| 132782 | function Intersection(point, points, other, entry) { |
| 132783 | this.x = point; |
| 132784 | this.z = points; |
| 132785 | this.o = other; // another intersection |
| 132786 | this.e = entry; // is an entry? |
| 132787 | this.v = false; // visited |
| 132788 | this.n = this.p = null; // next & previous |
| 132789 | } |
| 132790 | // A generalized polygon clipping algorithm: given a polygon that has been cut |
| 132791 | // into its visible line segments, and rejoins the segments by interpolating |
| 132792 | // along the clip edge. |
nothing calls this directly
no outgoing calls
no test coverage detected