MCPcopy Create free account
hub / github.com/AngusJohnson/Clipper2 / Vertex

Method Vertex

CSharp/Clipper2Lib/Clipper.Engine.cs:53–59  ·  view source on GitHub ↗
(Point64 pt, VertexFlags flags, Vertex? prev)

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected