Demo work and fakematch cleanup (#1034)

This commit is contained in:
LagoLunatic
2026-05-28 13:49:11 -04:00
committed by GitHub
parent a70388d63f
commit 8b46c357e4
50 changed files with 813 additions and 296 deletions
+10 -2
View File
@@ -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 {}