| 136 | bool mNeedsActiveListRebuild; |
| 137 | |
| 138 | NvFlexExtContainer(NvFlexLibrary* l) : |
| 139 | mMaxParticles(0), mSolver(NULL), mFlexLib(l), |
| 140 | mActiveList(l),mParticles(l),mParticlesRest(l),mVelocities(l), |
| 141 | mPhases(l),mNormals(l),mShapeOffsets(l),mShapeIndices(l), |
| 142 | mShapeCoefficients(l),mShapeRotations(l),mShapeTranslations(l), |
| 143 | mShapeRestPositions(l),mSpringIndices(l),mSpringLengths(l), |
| 144 | mSpringCoefficients(l),mTriangleIndices(l),mTriangleNormals(l), |
| 145 | mInflatableStarts(l),mInflatableCounts(l),mInflatableRestVolumes(l), |
| 146 | mInflatableCoefficients(l),mInflatableOverPressures(l), mBoundsLower(l), mBoundsUpper(l), |
| 147 | mNeedsCompact(false), mNeedsActiveListRebuild(false) |
| 148 | {} |
| 149 | }; |
| 150 | |
| 151 |
nothing calls this directly
no outgoing calls
no test coverage detected