Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions SPlisHSPlasH/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -195,6 +195,8 @@ add_library(SPlisHSPlasH
AnimationField.h
AnimationFieldSystem.h
AnimationFieldSystem.cpp
DynamicParameterSystem.h
DynamicParameterSystem.cpp
BoundaryModel.cpp
BoundaryModel.h
BoundaryModel_Akinci2012.cpp
Expand Down
3 changes: 2 additions & 1 deletion SPlisHSPlasH/DFSPH/TimeStepDFSPH.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -237,10 +237,11 @@ void TimeStepDFSPH::step()
}

//////////////////////////////////////////////////////////////////////////
// emit new particles and perform an animation field step
// emit new particles, perform an animation field step and update parameters
//////////////////////////////////////////////////////////////////////////
sim->emitParticles();
sim->animateParticles();
sim->updateDynamicParameters();

//////////////////////////////////////////////////////////////////////////
// Compute new time
Expand Down
Loading