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

◆ get_point()

PointVertex MayaFlux::Nodes::GpuSync::PointCollectionNode::get_point ( size_t  index) const

Get point position.

Parameters
indexPoint index
Returns
Position

Definition at line 94 of file PointCollectionNode.cpp.

95{
96 if (index < m_points.size()) {
97 return m_points[index];
98 }
100 "Point index {} out of range, returning zero", index);
101 return {};
102}
#define MF_WARN(comp, ctx,...)
@ NodeProcessing
Node graph processing (Nodes::NodeGraphManager)
@ Nodes
DSP Generator and Filter Nodes, graph pipeline, node management.

References m_points, MF_WARN, MayaFlux::Journal::NodeProcessing, and MayaFlux::Journal::Nodes.