Function operator&
Synopsis
#include <Source/Falcor/Utils/Math/AABB.h>
AABB operator&(const AABB &rhs) const
Description
Intersection of two boxes.
Source
Lines 217-221 in Source/Falcor/Utils/Math/AABB.h.
AABB operator& (const AABB& rhs) const
{
AABB bb = *this;
return bb &= rhs;
}