Victor Blomqvist
                                            Victor Blomqvist
                                        
                                    So, to answer your first question about the mass: The moment of the body (`body.moment`) will be different even when the center of gravity is the same. For the second...
Ah, yes you are right. Max force does not work on the DampedSpring and DampedRotarySpring. Im not sure why.. when I look at the code it looks quite straight forward...
I should add Im always a bit hesitant to make changes to Chipmunk (making max_force work) since then the fork used by Pymunk diverges more and more from the upstream,...
I think its best to keep this opened, otherwise I will forget to update docs / fix it :) I will close once Ive implemented something.
The last couple of days I have had a chance to look at this again. There's one question that came up: Should the velocity loss from damping be included in...
Yeah, I'm leaning towards including both, mainly to make it consistent with the constraint.impulse property. For someone without much physics I think it make sense at least, from an api...
This is now released with Pymunk 6.8.0!
Is there some workaround for this problem which does not require the consumer of the property to use `# type: ignore` on each property usage? I have a library Im...
Thanks for the quick reply! Unfortunately I still cant figure it out. I modified my example like below: from typing import Any class Vec: x: float = 0 y: float...
Im not sure exactly what you are looking for with moveable, but the things you can control are the properties on them. Maybe you could use max_bias, error_bias and max_force...