Homemaking a 2d soft body physics engine

Posted by Griffin on Game Development See other posts from Game Development or by Griffin
Published on 2011-06-28T17:51:14Z Indexed on 2011/06/29 0:33 UTC
Read the original article Hit count: 375

Filed under:
|
|

hey so I've decided to Code my own 2D soft-body physics engine in C++ since apparently none exist and I'm starting only with a general idea/understanding on how physics work and could be simulated:

by giving points and connections between points properties such as elasticity, density, mass, shape retention, friction, stickiness, etc.

What I want is a starting point: resources and helpful examples/sites that could give me the specifics needed to actually make this such as equations and required physics knowledge. It would be great if anyone out there also would give me their attempts or ideas.

finally I was wondering if it was possible to...

  • use the source code of an existing 3D engine such as Bullet and transform it to be 2D based?

  • use the source code of a 2D Rigid body physics engine such as box2d as a starting point?

© Game Development or respective owner

Related posts about c++

Related posts about physics