Robert Sköld

Results 25 comments of Robert Sköld

@liabru for https://cubeslam.com I ported a few SAT implementations to javascript but finally fell for [this brilliant SAT implementation](http://www.codeproject.com/Articles/15573/2D-Polygon-Collision-Detection) and converted it to be a part of [this library](https://github.com/publicclass/geom-poly/blob/master/index.js#L247). It's...

@liabru thanks! I hope it can help you get this sweet library even better

@liabru would you mind sharing your in progress implementation as a PR or branch? I'm curious what it looks like and maybe we can help out?

@liabru yep, that's the part that uses the velocity to find the possible intersection. And then the [following lines](https://github.com/publicclass/geom-poly/blob/master/index.js#L293-L321) may be useful for knowing how much to "push" the object...

@liabru that looks great, much more readable than my mess. I'll see if I get a chance to try it out this week

I can see how `res.headers =` is expected usage. If anything maybe we can freeze the `res` object from properties that are not in use by koa to avoid confusion?...

This might be related to issue #34

I agree. Ideally the renderers would be responsible for interpreting the attribute values (such as converting to string or whatever) and have the attribute value set to whatever was passed...

Because of the potentially breaking changes I'm thinking this might need a semver bump to 3.x.x

Very interesting @rbiggs! I haven't actually read the spec and was just going by intuition ;) I do read that spec slightly different though. Regarding [start tags](http://w3c.github.io/html/syntax.html#start-tags) it _may_ have...