Victor Blomqvist

Results 126 comments of Victor Blomqvist

Answering myself: No, the error is not printed when run from IDLE. I will investigate a bit how to improve this, very difficult to find out whats wrong if you...

Forgot to close this as fixed. Any chipmunk level error will use `logger.error` to be reported.

I have to admit Im a bit confused by the groove joint... Anyway: I guess you dont want to constrain any rotation? Else you could use a GearJoint together with...

So something like this, because you dont mean `kwargs`, right? ``` def __init__( self, mass: float = 0, moment: float = 0, body_type: _BodyType = DYNAMIC, *, position: tuple[float, float]...

I have to think about this a bit. Im a little bit hesitant since it does make a very long constructor which is a bit of an anti-pattern. Of course,...

Ah, I think there was some reason why I used the property function.. but now I dont remember. And regardless, seems like it all works as it should using the...

Looks like the vec2d improvements wont make it in time for Pymunk 7.0, Im planning to make a release soon, just some polish on release notes and final checks left...

Mypy 1.16 is now released! Just a day or two too late :) But maybe that was for the best.

Anyway, now it seems to handle for example `Space.gravity` correct if I rewrite as `@property`. However, I now see that Pyright / VSCode doesnt handle it the same way: ```...

Yesterday when I tried again also VSCode/pyright worked.. maybe it was some caching going on previously, or they updated something. Anyway, in Pymunk 7.1 just released this is fixed.