mirror of https://github.com/AxioDL/zeus.git
Add static ReadBoundingBoxBig
This commit is contained in:
parent
08d2925689
commit
c1d5449124
|
@ -59,6 +59,13 @@ public:
|
||||||
min.readBig(in);
|
min.readBig(in);
|
||||||
max.readBig(in);
|
max.readBig(in);
|
||||||
}
|
}
|
||||||
|
static inline CAABox ReadBoundingBoxBig(athena::io::IStreamReader &in)
|
||||||
|
{
|
||||||
|
CAABox ret;
|
||||||
|
ret.readBoundingBoxBig(in);
|
||||||
|
return ret;
|
||||||
|
}
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
float distanceFromPointSquared(const CVector3f& other) const
|
float distanceFromPointSquared(const CVector3f& other) const
|
||||||
|
|
Loading…
Reference in New Issue