MayaFlux 0.5.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 117 of file PathOperator.hpp.

118 {
119 if (i >= m_paths.size()) {
120 return nullptr;
121 }
122 return m_paths[i];
123 }
std::vector< std::shared_ptr< GpuSync::PathGeneratorNode > > m_paths