diff --git a/Scripts/Core/CSG/Edge.cs b/Scripts/Core/CSG/Edge.cs index bcec9379..2abe5680 100644 --- a/Scripts/Core/CSG/Edge.cs +++ b/Scripts/Core/CSG/Edge.cs @@ -29,6 +29,7 @@ public class Edge /// /// The first of the . /// + /// The first vertex of the edge. public Vertex Vertex1 { get @@ -40,6 +41,7 @@ public Vertex Vertex1 /// /// The last of the . /// + /// The last vertex of the edge. public Vertex Vertex2 { get @@ -65,7 +67,7 @@ public Vector3 CenterPoint /// /// The first vertex of the edge. /// The last vertex of the edge. - /// + /// /// Thrown when or is null. /// public Edge(Vertex vertex1, Vertex vertex2) @@ -86,7 +88,7 @@ public Edge(Vertex vertex1, Vertex vertex2) /// /// The other edge to compare this edge to. /// true if this edge matches the other edge; otherwise, false. - /// + /// /// Thrown when is null. /// public bool Matches(Edge other) @@ -114,7 +116,7 @@ public bool Matches(Edge other) /// /// The other edge to check for parallelity. /// true if both edges are parallel; otherwise, false. - /// + /// /// Thrown when is null. /// public bool Parallel(Edge other) @@ -138,7 +140,7 @@ public bool Parallel(Edge other) /// /// The other edge to check for intersection. /// true if both edges intersect; otherwise, false. - /// + /// /// Thrown when is null. /// public bool Intersects(Edge other) @@ -201,7 +203,7 @@ public bool Intersects(Edge other) /// /// Other edge that may be collinear. /// true if both edges are collinear; otherwise, false. - /// + /// /// Thrown when is null. /// public bool Collinear(Edge other)