diff options
Diffstat (limited to 'graphics/asymptote/path3.h')
-rw-r--r-- | graphics/asymptote/path3.h | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/graphics/asymptote/path3.h b/graphics/asymptote/path3.h index 095d4698af..df4837912a 100644 --- a/graphics/asymptote/path3.h +++ b/graphics/asymptote/path3.h @@ -17,10 +17,6 @@ #include "path.h" #include "arrayop.h" -// For CYGWIN -#undef near -#undef far - namespace camp { void checkEmpty3(Int n); @@ -287,13 +283,13 @@ public: triple mintimes() const { checkEmpty3(n); bounds(); - return camp::triple(times.left,times.bottom,times.near); + return camp::triple(times.leftBound,times.bottomBound,times.nearBound); } triple maxtimes() const { checkEmpty3(n); bounds(); - return camp::triple(times.right,times.top,times.far); + return camp::triple(times.rightBound,times.topBound,times.farBound); } template<class T> |