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
}
a
size_t a
Definition
ProximityGraphs.cpp:20
b
size_t b
Definition
ProximityGraphs.cpp:20
References
a
, and
b
.
MayaFlux
Kinesis
Generated by
1.9.8