diff options
| author | Marijn Tamis <[email protected]> | 2017-07-03 11:49:08 +0200 |
|---|---|---|
| committer | Marijn Tamis <[email protected]> | 2017-07-03 11:49:08 +0200 |
| commit | cfa944ded7370fb5f22b1fb894ecf6b9bd3f7381 (patch) | |
| tree | 5cc014922d20561d87105d279b6f7eb3e628c6d9 /NvCloth/include | |
| parent | Fix windows line endings in github. (diff) | |
| download | nvcloth-cfa944ded7370fb5f22b1fb894ecf6b9bd3f7381.tar.xz nvcloth-cfa944ded7370fb5f22b1fb894ecf6b9bd3f7381.zip | |
NvCloth 1.1.1 Release. (22392725)v1.1.1
Diffstat (limited to 'NvCloth/include')
| -rw-r--r-- | NvCloth/include/NvCloth/Cloth.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/NvCloth/include/NvCloth/Cloth.h b/NvCloth/include/NvCloth/Cloth.h index 3d783e9..ac957f7 100644 --- a/NvCloth/include/NvCloth/Cloth.h +++ b/NvCloth/include/NvCloth/Cloth.h @@ -376,6 +376,10 @@ class Cloth : public UserAllocated virtual void setLiftCoefficient(float) = 0; ///Returns value set with setLiftCoefficient(). virtual float getLiftCoefficient() const = 0; + /** /brief Sets the fluid density used for air drag/lift calculations. */ + virtual void setFluidDensity(float) = 0; + ///Returns value set with setFluidDensity(). + virtual float getFluidDensity() const = 0; /* self collision */ |