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

◆ get_path()

std::shared_ptr< GpuSync::PathGeneratorNode > MayaFlux::Nodes::Network::PathOperator::get_path ( size_t  i) const
inline

Access a specific path node directly.

Parameters
iCollection index.
Returns
Shared pointer to the PathGeneratorNode, or nullptr if out of range.

Definition at line 81 of file PathOperator.hpp.

82 {
83 if (i >= m_paths.size()) {
84 return nullptr;
85 }
86 return m_paths[i];
87 }
std::vector< std::shared_ptr< GpuSync::PathGeneratorNode > > m_paths