MayaFlux 0.5.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 321 of file PathOperator.cpp.

322{
323 for (auto& path : m_paths) {
324 path->set_tension(tension);
325 }
326}
std::vector< std::shared_ptr< GpuSync::PathGeneratorNode > > m_paths

References m_paths.