PeriDyno 0.9.2
Loading...
Searching...
No Matches
NumericalIntegrator.h
Go to the documentation of this file.
1#pragma once
2#include "Module.h"
3
4namespace dyno
5{
7 {
8 public:
10 ~NumericalIntegrator() override;
11
12 virtual void begin() {};
13 virtual void end() {};
14
15 virtual bool integrate() { return true; }
16
17 void setMassID(FieldID id) { m_massID = id; }
24
25 std::string getModuleType() override { return "NumericalIntegrator"; }
26
27 protected:
35 };
36}
37
std::string getModuleType() override
ObjectId id
Definition Object.h:131
This is an implementation of AdditiveCCD based on peridyno.
Definition Array.h:24
std::string FieldID
Base class for modules.
Definition OBase.h:35