示例#1
0
 public GeometryHelper.LineIntersectionStates Intersects(LineSegment l2)
 {
     return(GeometryHelper.LinesIntersect(this, l2, true, true));
 }
示例#2
0
 public LineSegment(LineSegment l)
 {
     StartPos = l.StartPos;
     EndPos   = l.EndPos;
 }
示例#3
0
 public Vector2 GetIntersectionPoint(LineSegment l2)
 {
     return(GeometryHelper.GetIntersectionPoint(this, l2));
 }