Skip to content

Commit 3e6f6a4

Browse files
Fix build
1 parent b9c8a81 commit 3e6f6a4

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

tests/ImageSharp.Drawing.Tests/Drawing/Paths/ShapeRegionTests.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,10 @@ public abstract class MockPath : IPath, IPathInternals
2929

3030
public abstract int MaxIntersections { get; }
3131

32-
public int FindIntersections(PointF start, PointF end, Span<PointF> intersections, Span<PointOrientation> orientations)
33-
=> this.FindIntersections(start, end, intersections, orientations, IntersectionRule.OddEven);
32+
int IPathInternals.FindIntersections(PointF start, PointF end, Span<PointF> intersections, Span<PointOrientation> orientations)
33+
=> ((IPathInternals)this).FindIntersections(start, end, intersections, orientations, IntersectionRule.OddEven);
3434

35-
public int FindIntersections(
35+
int IPathInternals.FindIntersections(
3636
PointF start,
3737
PointF end,
3838
Span<PointF>

0 commit comments

Comments
 (0)