ofxMSAPhysics
ofxMSAPhysics copied to clipboard
C++ openFrameworks addon for particle/constraint based physics library with springs, attractors and collision. It uses a very similar api to the traer.physics library for processing to make getting in...
Some bits need to be updated to adapt to Cinder's new use of GLM. Vec3f -> vec3 .lengthSquared() -> length2(...) More info here: [https://libcinder.org/docs/branch/master/guides/transition_0_9/index.html](url) Simple enough but what I can't...
When calling get/setMinDistance on a newly created attraction, I get a segfaul. (Linux, GCC 4.9.2). My only workaround at the moment is to call setMinDistance in the MSAPhysicsAttraction constructor.
The message containing "number of particles", "number or springs", "mouse mass" etc. is not being drawn because GL_CULL_FACE is enabled. This can be fixed by temporarily disabling GL_CULL_FACE, drawing the...
First of all, thank you for this library! I have the example code working well except that when I try to use it with a programmable renderer none of the...