fix build
This commit is contained in:
parent
2012c945d5
commit
a799463d31
1 changed files with 2 additions and 0 deletions
|
@ -225,6 +225,8 @@ inline bool empty(const BoundingBox3Base<VT> &bb)
|
|||
return ! bb.defined || bb.min.x() >= bb.max.x() || bb.min.y() >= bb.max.y() || bb.min.z() >= bb.max.z();
|
||||
}
|
||||
|
||||
inline BoundingBox scaled(const BoundingBoxf &bb) { return {scaled(bb.min), scaled(bb.max)}; }
|
||||
|
||||
template<class T = coord_t>
|
||||
BoundingBoxBase<Vec<2, T>> scaled(const BoundingBoxf &bb) { return {scaled<T>(bb.min), scaled<T>(bb.max)}; }
|
||||
|
||||
|
|
Loading…
Reference in a new issue