Esempio n. 1
0
 public PlanePoint GetPoint(int dimension)
 {
     if (dimension == Dim)
     {
         return(this);
     }
     return(_previousPoint.GetPoint(dimension) ??
            throw new ArgumentException("There is no point of this dimension."));
 }