Function operator|=
Synopsis
#include <Source/Falcor/Utils/Math/AABB.h>
AABB & operator|=(const AABB &rhs)
Description
Union of two boxes.
Source
Lines 195-198 in Source/Falcor/Utils/Math/AABB.h.
AABB& operator|= (const AABB& rhs)
{
return include(rhs);
}