// -- Operators -- // -- Public Methods -- /** * Merge a face into this one. */ public void Merge(Face other) { // Add its points. Points.AddRange(other.Points); // Add its edges. foreach (Edge edge in other.Edges) { AddEdge(edge); } zone.Merge(other.zone); }