Verlet collisions, no libraries | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 5

Verlet collisions, no libraries

I am experimenting with Verlet rather than Euler integration in my mover codes. After reading some background it is not clear to me how to best handle collisions. Without velocity and thus easy conservation of moment, what are the best choices to make it look realistic? Anybody has examples or can point me to background reading? I am interested in knowing how it works, not in a blackbox library.

18th Oct 2020, 1:43 PM
bell
bell - avatar
2 Answers
+ 4
thank you! I guess this is still compatible with rag doll animation, a few rigid bodies joined with springs? I was asking more about whether to use a spring-like force for collision or calculate velocity, in which case I am not sure I understabd why verlet code should be faster than Euler
18th Oct 2020, 5:43 PM
bell
bell - avatar
+ 2
I changed one of my codes from Euler to Verlet but I do not see skipping velocity brings any advantage, unless there is a clever way to shuffle pointers rather than copying previous positions. I would like to reduce the number of operations to afford more particles in e.g water animations. https://code.sololearn.com/Wycda4iX2TDc/?ref=app
19th Oct 2020, 8:34 AM
bell
bell - avatar