diff options
Diffstat (limited to 'NvCloth/src/SwSolver.h')
| -rw-r--r-- | NvCloth/src/SwSolver.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/NvCloth/src/SwSolver.h b/NvCloth/src/SwSolver.h index c7b177b..ad58a7c 100644 --- a/NvCloth/src/SwSolver.h +++ b/NvCloth/src/SwSolver.h @@ -64,6 +64,7 @@ class SwSolver : public Solver virtual ~SwSolver(); virtual void addCloth(Cloth*) override; + virtual void addCloths(Range<Cloth*> cloths) override; virtual void removeCloth(Cloth*) override; virtual int getNumCloths() const override; virtual Cloth * const * getClothList() const override; @@ -112,6 +113,10 @@ class SwSolver : public Solver } private: + // add cloth helper functions + void addClothAppend(Cloth* cloth); + + // simulate helper functions void beginFrame() const; void endFrame() const; |