(Point64 pt, VertexFlags flags, Vertex? prev)
| 51 | public VertexFlags flags; |
| 52 | |
| 53 | public Vertex(Point64 pt, VertexFlags flags, Vertex? prev) |
| 54 | { |
| 55 | this.pt = pt; |
| 56 | this.flags = flags; |
| 57 | next = null; |
| 58 | this.prev = prev; |
| 59 | } |
| 60 | } |
| 61 | |
| 62 | internal readonly struct LocalMinima |
nothing calls this directly
no outgoing calls
no test coverage detected