Kade

Results 23 comments of Kade

This appears to still be broken in some instances. Here's an example scenario where both lines when colliding with a concave polygon should have `aInB` set to `false`, but it's...

> Yes, this is a known issue. It is because `aInB` for concave polygons just uses the bounding box. At the moment, this is the best solution we have. >...

Thanks for getting back to me! I totally understand being busy, no worries there. I was using the plugin through GTK, I'm not totally sure where the config file is...

Is there any chance you set this up on a fresh Trakt account (no watch history)? If so, I believe #215 resolves this.

> I have the same problem and I know that one of the five Trakt accounts have no watched history. @kade-robertson is that what causes this issue? That's what was...

For what it's worth, we've been able to work around this on our end with the following layer extension: ```ts import { LayerExtension } from 'deck.gl'; class ShaderExtension extends LayerExtension...

I'm not sure I understand why this issue is closed as a duplicate of a ticket that was self-closed, when this issue still happens today. It was only mentioned as...

Looking at this a bit more, maybe what makes the most sense is using [`http::Response`](https://docs.rs/http/latest/http/response/struct.Response.html) as the tool for constructing the response, and have this crate's `Response` implement `From`. -...

Looking at how other libraries do this: - `reqwest` implements `impl From for Response`, where their body is more or less formatted how they want, and their body implements `impl...

I've created https://github.com/algesten/ureq/pull/591 as a preliminary look at what this might look like.