PeriDyno 1.0.0
Loading...
Searching...
No Matches
ActPostProcessing.cpp
Go to the documentation of this file.
1#include "ActPostProcessing.h"
2
3namespace dyno
4{
5
10
15
17 {
18 auto mList = node->getModuleList();
19 int cnt = 0;
20 for (auto iter = mList.begin(); iter != mList.end(); iter++)
21 {
22 //printf("iter %s ::: %s\n", (*iter)->getName(),(*iter)->getModuleType());
23 if (std::string("OutputModule").compare((*iter)->getModuleType()) == 0)
24 {
25
26 (*iter)->update();
27 }
28 }
29 }
30}
std::list< std::shared_ptr< Module > > & getModuleList()
Definition Node.h:149
PostProcessing()
virtual ~PostProcessing()
void process(Node *node) override
This is an implementation of AdditiveCCD based on peridyno.
Definition Array.h:25