Victor Blomqvist
Victor Blomqvist
I'm still not sure I fully get what you mean. The space part I get, a body or constraint can only exist in one space at a time. So unless...
If I expose the jAcc, do you have some naming ideas? Some ideas I got: - `impulse_vector` or maybe `impulse_vect` - `impulse_signed` or `impulse_scalar` (so depending on the type of...
Did you check the custom constraint https://github.com/viblo/pymunk/issues/232 ? If this was a working feature, could you solve the problem here with a new customized joint to connect the bodies together?...
I tried to make a small example, and now I think I understand what you are after. Lets say you have two sliders in a UI, one that goes left...
I made a very basic example from this method using velocity. Didnt feel that good, but post it here anyway for reference https://gist.github.com/viblo/0b4b9521312425b3463b39063335cda2 If nothing else you can confirm if...
Just a heads up, I started to implement the property. Once I have something I'll share a branch here so you can try it out. On Mon, Nov 17, 2025,...
I open a first PR here https://github.com/viblo/pymunk/pull/297 with `impulse_signed` and `impulse_vector`. Its not fully complete yet: 1. I could not make a test that produce a negative impulse for SlideJoint....
For Pymunk itself there's two things I can think of: - Can it be something with `total_impulse` that's off? - More likely, does the contact points look correct? As for...
I wonder if you managed to figure out something? I have some suspicion it might be a side effect of using post_solve for this, and not the "normal" impulse solver...