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

◆ get() [1/2]

Element * MayaFlux::Portal::Forma::Layer::get ( uint32_t  id)

Definition at line 202 of file Layer.cpp.

203{
204 auto it = std::ranges::find_if(m_elements,
205 [id](const Element& e) { return e.id == id; });
206 return it != m_elements.end() ? &*it : nullptr;
207}
std::vector< Element > m_elements
Definition Layer.hpp:280

References MayaFlux::Portal::Forma::Element::id, and m_elements.