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

◆ set_tension()

void MayaFlux::Nodes::Network::PathOperator::set_tension ( double  tension)

Set the tension parameter for all paths (if supported by mode).

Parameters
tensionTension value (e.g., for cubic Hermite interpolation).

Definition at line 232 of file PathOperator.cpp.

233{
234 for (auto& path : m_paths) {
235 path->set_tension(tension);
236 }
237}
std::vector< std::shared_ptr< GpuSync::PathGeneratorNode > > m_paths

References m_paths.