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

◆ set_global_line_thickness()

void MayaFlux::Nodes::Network::TopologyOperator::set_global_line_thickness ( float  thickness)

Set the number of neighbors (k) for K-Nearest topology mode.

Parameters
kNumber of neighbors.

Definition at line 247 of file TopologyOperator.cpp.

248{
249 m_default_thickness = thickness;
250 for (auto& topology : m_topologies) {
251 topology->set_line_thickness(thickness);
252 }
253}
std::vector< std::shared_ptr< GpuSync::TopologyGeneratorNode > > m_topologies

References m_default_thickness, and m_topologies.