mirror of
https://github.com/zeldaret/tww.git
synced 2026-08-05 01:19:11 -04:00
Warning/error cleanup
This commit is contained in:
@@ -41,7 +41,10 @@ public:
|
||||
bool cross(const cM3dGCyl*, cXyz*) const;
|
||||
bool cross(const cM3dGSph*, cXyz*) const;
|
||||
bool cross(const cM3dGSph*, f32*) const;
|
||||
bool cross(const cM3dGCyl* cyl, f32* out) const { return cM3d_Cross_CylSph(cyl, this, &cXyz(), out); }
|
||||
bool cross(const cM3dGCyl* cyl, f32* out) const {
|
||||
cXyz temp;
|
||||
return cM3d_Cross_CylSph(cyl, this, &temp, out);
|
||||
}
|
||||
void cross(const cM3dGTri*) const {}
|
||||
const cXyz& GetC() const { return mCenter; }
|
||||
cXyz& GetC() { return mCenter; }
|
||||
|
||||
Reference in New Issue
Block a user