Example #1
0
 public __tuple<Point2I, Point2I> _minMax(Point2I nMin, Point2I nMax)
 {
     Point2I beg_ = mLine._getBegPoint();
     Point2I end_ = mLine._getEndPoint();
     Line2I line_ = new Line2I(beg_, end_);
     return line_._minMax(nMin, nMax);
 }