fixed a bug in mdBandAny

This commit is contained in:
Zeno Rogue 2023-03-19 12:21:15 +01:00
parent 1b7f4b869e
commit 15540e91e6
1 changed files with 1 additions and 1 deletions

View File

@ -109,7 +109,7 @@ EX namespace polygonal {
#if HDR
inline bool mdAzimuthalEqui() { return (mdinf[pmodel].flags & mf::azimuthal) && (mdinf[pmodel].flags & (mf::equidistant | mf::equiarea | mf::equivolume) && !(mdinf[pmodel].flags & mf::twopoint)); }
inline bool mdBandAny() { return mdinf[pmodel].flags & mf::pseudoband; }
inline bool mdBandAny() { return mdinf[pmodel].flags & mf::pseudocylindrical; }
inline bool mdPseudocylindrical() { return mdBandAny() && !(mdinf[pmodel].flags & mf::cylindrical); }
#endif