mirror of https://github.com/CGAL/cgal
VC and min/max...
This commit is contained in:
parent
1241b2f14f
commit
7390dbcf65
|
|
@ -14,10 +14,10 @@ template <class R_> class Iso_box {
|
||||||
public:
|
public:
|
||||||
Iso_box(){}
|
Iso_box(){}
|
||||||
Iso_box(Point_ const&a, Point_ const&b): data(a,b) {}
|
Iso_box(Point_ const&a, Point_ const&b): data(a,b) {}
|
||||||
Point_ min()const{
|
Point_ min BOOST_PREVENT_MACRO_SUBSTITUTION ()const{
|
||||||
return data.first;
|
return data.first;
|
||||||
}
|
}
|
||||||
Point_ max()const{
|
Point_ max BOOST_PREVENT_MACRO_SUBSTITUTION ()const{
|
||||||
return data.second;
|
return data.second;
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue