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

◆ get_vertex_count()

size_t MayaFlux::Nodes::Network::PhysicsOperator::get_vertex_count ( ) const
overridevirtual

Get number of vertices (may differ from point count for topology/path)

Implements MayaFlux::Nodes::Network::GraphicsOperator.

Definition at line 271 of file PhysicsOperator.cpp.

272{
273 size_t total = 0;
274 for (const auto& group : m_collections) {
275 total += group.collection->get_vertex_count();
276 }
277 return total;
278}
std::vector< CollectionGroup > m_collections

References m_collections.