mirror of https://github.com/PrimeDecomp/prime.git
Improve CAABox::GetExtents
Thanks encounter
Former-commit-id: 3f4e53ec74
This commit is contained in:
parent
c5a4f660bb
commit
1ede41207b
|
@ -69,9 +69,7 @@ public:
|
|||
|
||||
inline CVector3f GetExtents() const {
|
||||
// Name is a guess
|
||||
CVector3f result = max - min;
|
||||
result *= 0.5f;
|
||||
return result;
|
||||
return (max - min) * 0.5f;
|
||||
}
|
||||
|
||||
const CVector3f& GetMinPoint() const { return min; }
|
||||
|
|
Loading…
Reference in New Issue