_

Results 51 comments of _

I'd like to drop support for `Rollup@1` and `Node@8` and release `8.0.0`, which will be a great opportunity to update this library's documentation to help with this situation. Any suggestions?

@jasonwaters The single entry point makes sense for speeding up development, but I would use a different Karma config to generate coverage (using an environment variable to do so only...

> Single entry does come with caveats in my experience though. Karma watcher doesn't really work since it is only working with a single file. @Lalem001 I've already implemented a...

I'm not sure I understand what you mean, but I'd be happy to take a look at what you come up with.

Thank you for the explanation. The variable `t` would always be `1` due to all the zeroes, i.e: `(0 * p.x) + (0 * p.y) + (0 * p.z) +...

This looks interesting @hl037, I wonder if a blog post could be written about it! 😬 #7 suggests more examples would be nice, so I'd like to better understand what...

Not yet publishing this, but wanted to archive some experimental code. #### Type Declaration ```ts export declare interface Vector2 { x: number; y: number; } export declare interface Vector3 {...

Cool @hl037 I'll check it out this week!

Thanks @iongion! I assumed most developers would discover/use this library as a "lower-level" alternative to CSS Transforms, primarily for its ability to combine transforms. In other words, I expect developers...

`Rematrix.rotate(45)` implicitly uses degrees, but CSS uses explicit unit types; if implemented, I’m leaning towards no default unit and requiring a 2nd parameter, making this a breaking change. _Example:_ ```js...