Benjamin Kan
Benjamin Kan
> From reading the docs, what I could figure out that instead of using a type specific `isXXX` boolean flag, I could use the [IBodyDefinition#type](https://github.com/DefinitelyTyped/DefinitelyTyped/blob/931ad9e0df4ad142777baff96ea186068e9bf804/types/matter-js/index.d.ts#L414) field. I just tried that,...
I will, as soon as I find time for that. By the way: I'm not sure, but after comparing your PSNR implementation with it's formula in the paper and the...
Thank you for your reply. That answered my question.
As this is my first PR for this project, but plan to do more improvements for `matter-js` in follow-up PRs, I have the follow questions that would help me :)...
Okay, I see two problems already: 1. I don't see my new `Collision` module in the playground 2. I just noticed there is a `ICollision` interface already See [code](https://github.com/DefinitelyTyped/DefinitelyTyped/blob/master/types/matter-js/index.d.ts#L4162-L4176). Should...
Any input to proceed would be helpful 😇
Thx for the review. And sorry for my inactivity. I was moving places and then on vacation. I will open a new PR with the same change, and include your...
Actually, it looks like there is no need anymore. The part I wanted to contribute was already updated as part of https://github.com/DefinitelyTyped/DefinitelyTyped/pull/61503.
Hi! We noticed the same problem today when upgrading from `5.1.0` to `6.2.0`. # Example: Our backed defines the following model: ```java @JsonIgnoreProperties(ignoreUnknown = true) @JsonTypeInfo(use = JsonTypeInfo.Id.NAME, property =...
One further interesting observation I made related to this: The order of the generated `@JsonSubTypes.Type` seems to be simply alphabetical: ```java @JsonSubTypes.Type(value = MyFilterExpression.class, name = "EXPRESSION"), @JsonSubTypes.Type(value = MyFilter.class,...