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

◆ subtract_bounds() [2/2]

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

Difference of two 3D containment tests.

Inside a but not b.

Definition at line 484 of file Bounds.hpp.

487{
488 return [a = std::move(a), b = std::move(b)](const glm::vec3& p) {
489 return a(p) && !b(p);
490 };
491}
size_t a
size_t b

References a, and b.