Skip to content

Commit

Permalink
vertexes aren't nullable (#21)
Browse files Browse the repository at this point in the history
  • Loading branch information
adamhathcock authored Jun 24, 2024
1 parent 5d3960e commit ce34dc6
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Rhino/Speckle.Rhino.Interfaces/RhinoCurve.cs
Original file line number Diff line number Diff line change
Expand Up @@ -358,8 +358,8 @@ public interface IRhinoBrepEdge : IRhinoCurveProxy2
int EdgeIndex { get; }
int EdgeCurveIndex { get; }
int[] TrimIndices();
IRhinoBrepVertex? StartVertex { get; }
IRhinoBrepVertex? EndVertex { get; }
IRhinoBrepVertex StartVertex { get; }
IRhinoBrepVertex EndVertex { get; }
}

public interface IRhinoBrepTrim : IRhinoCurveProxy2
Expand All @@ -372,8 +372,8 @@ public interface IRhinoBrepTrim : IRhinoCurveProxy2
RhinoIsoStatus IsoStatus { get; set; }
RhinoBrepTrimType TrimType { get; set; }
bool IsReversed();
IRhinoBrepVertex? StartVertex { get; }
IRhinoBrepVertex? EndVertex { get; }
IRhinoBrepVertex StartVertex { get; }
IRhinoBrepVertex EndVertex { get; }
void SetTolerances(double toleranceX, double toleranceY);
}

Expand Down

0 comments on commit ce34dc6

Please sign in to comment.