mirror of
https://github.com/zeldaret/tww.git
synced 2026-08-09 02:45:45 -04:00
Warning/error cleanup
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
#ifndef OBJECT_LIGHT_H
|
||||
#define OBJECT_LIGHT_H
|
||||
|
||||
#include "JSystem/JStudio/JStudio_JStage/control.h"
|
||||
#include "JSystem/JStudio/JStudio_JStage/control.h" // IWYU pragma: export
|
||||
|
||||
#endif /* OBJECT_LIGHT_H */
|
||||
|
||||
@@ -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