mirror of
https://github.com/zeldaret/tww.git
synced 2026-08-10 03:05:19 -04:00
Demo work and fakematch cleanup (#1034)
This commit is contained in:
@@ -98,10 +98,18 @@ public:
|
||||
}
|
||||
}
|
||||
bool UnderPlaneYUnder(f32 y) const {
|
||||
return mMin.y < y;
|
||||
if (mMin.y < y) {
|
||||
return true;
|
||||
} else {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
bool TopPlaneYUnder(f32 y) const {
|
||||
return mMax.y < y;
|
||||
if (mMax.y < y) {
|
||||
return true;
|
||||
} else {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
void Cross(const cM3dGAab*) const {}
|
||||
|
||||
Reference in New Issue
Block a user