MayaFlux 0.4.0
Digital-First Multimedia Processing Framework
Loading...
Searching...
No Matches

◆ union_bounds() [2/2]

std::function< bool(glm::vec3)> MayaFlux::Kinesis::union_bounds ( std::function< bool(glm::vec3)>  a,
std::function< bool(glm::vec3)>  b 
)
inline

Union of two 3D containment tests.

Definition at line 458 of file Bounds.hpp.

461{
462 return [a = std::move(a), b = std::move(b)](const glm::vec3& p) {
463 return a(p) || b(p);
464 };
465}
size_t a
size_t b

References a, and b.