Example #1
0
 public Point2D[] GetIntersections(Line2D line, double precision)
 {
     return(Circle2D.GetIntersections(this, line, precision));
 }
Example #2
0
 public static Point2D[] GetIntersections(Circle2D circle, Line2D line)
 {
     return(Circle2D.GetIntersections(circle, line, 8.88178419700125E-16));
 }
Example #3
0
 public Point2D[] GetIntersections(Line2D line)
 {
     return(this.GetIntersections(line, 8.88178419700125E-16));
 }