(Point64 pt, Active edge1, Active edge2)
| 103 | public readonly Active edge2; |
| 104 | |
| 105 | public IntersectNode(Point64 pt, Active edge1, Active edge2) |
| 106 | { |
| 107 | this.pt = pt; |
| 108 | this.edge1 = edge1; |
| 109 | this.edge2 = edge2; |
| 110 | } |
| 111 | } |
| 112 | |
| 113 | internal struct LocMinSorter : IComparer<LocalMinima> |
nothing calls this directly
no outgoing calls
no test coverage detected