diff options
| author | Marijn Tamis <[email protected]> | 2017-04-28 14:19:07 +0200 |
|---|---|---|
| committer | Marijn Tamis <[email protected]> | 2017-04-28 14:19:07 +0200 |
| commit | b350eb5f4d44e8448115796144375d79438d74ae (patch) | |
| tree | 8e102e8c28f45a1b87bd335ceee4f33c3d4ee7c2 /NvCloth/src/cuda/CuSolver.h | |
| parent | Add visual samples. (diff) | |
| download | nvcloth-b350eb5f4d44e8448115796144375d79438d74ae.tar.xz nvcloth-b350eb5f4d44e8448115796144375d79438d74ae.zip | |
NvCloth 1.1.0 Release. (22041545)
Diffstat (limited to 'NvCloth/src/cuda/CuSolver.h')
| -rw-r--r-- | NvCloth/src/cuda/CuSolver.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/NvCloth/src/cuda/CuSolver.h b/NvCloth/src/cuda/CuSolver.h index 8e256a7..0406e00 100644 --- a/NvCloth/src/cuda/CuSolver.h +++ b/NvCloth/src/cuda/CuSolver.h @@ -57,8 +57,10 @@ public: CuSolver(CuFactory&); ~CuSolver(); - virtual void addCloth(Cloth*); - virtual void removeCloth(Cloth*); + virtual void addCloth(Cloth*) override; + virtual void removeCloth(Cloth*) override; + virtual int getNumCloths() const override; + virtual Cloth * const * getClothList() const override; // functions executing the simulation work. virtual bool beginSimulation(float dt); |