@@ -152,7 +152,7 @@ public SweepEvent(Vertex point, bool left, int contourId)
152152 /// <see langword="true"/> if the line segment is below the point; otherwise <see langword="false"/>.
153153 /// </returns>
154154 [ MethodImpl ( MethodImplOptions . AggressiveInlining ) ]
155- public bool Below ( in Vertex p )
155+ public bool IsBelow ( in Vertex p )
156156 => this . Left
157157 ? PolygonUtilities . SignedArea ( this . Point , this . OtherEvent . Point , p ) > 0D
158158 : PolygonUtilities . SignedArea ( this . OtherEvent . Point , this . Point , p ) > 0D ;
@@ -165,7 +165,7 @@ public bool Below(in Vertex p)
165165 /// <see langword="true"/> if the line segment is above the point; otherwise <see langword="false"/>.
166166 /// </returns>
167167 [ MethodImpl ( MethodImplOptions . AggressiveInlining ) ]
168- public bool Above ( in Vertex p ) => ! this . Below ( p ) ;
168+ public bool IsAbove ( in Vertex p ) => ! this . IsBelow ( p ) ;
169169
170170 /// <summary>
171171 /// Is the line segment (point, otherEvent->point) a vertical line segment.
@@ -174,7 +174,7 @@ public bool Below(in Vertex p)
174174 /// <see langword="true"/> if the line segment is vertical; otherwise <see langword="false"/>.
175175 /// </returns>
176176 [ MethodImpl ( MethodImplOptions . AggressiveInlining ) ]
177- public bool Vertical ( ) => this . Point . X == this . OtherEvent . Point . X ;
177+ public bool IsVertical ( ) => this . Point . X == this . OtherEvent . Point . X ;
178178
179179 /// <summary>
180180 /// Determines if this sweep event comes before another sweep event.
@@ -199,7 +199,7 @@ public bool IsBefore(SweepEvent other)
199199 /// <summary>
200200 /// Returns the segment associated with the sweep event.
201201 /// </summary>
202- /// <returns>The <see cref="Segment "/>.</returns>
202+ /// <returns>The <see cref="GetSegment "/>.</returns>
203203 [ MethodImpl ( MethodImplOptions . AggressiveInlining ) ]
204- public Segment Segment ( ) => new ( this . Point , this . OtherEvent . Point ) ;
204+ public Segment GetSegment ( ) => new ( this . Point , this . OtherEvent . Point ) ;
205205}
0 commit comments