Joe Pea
Joe Pea
For example, we don't want our animation loop to be naive and think that much time has passed between two frames due to the user switching away from the tab...
Maybe we should rename `mountPoint` to `anchor`. `mountPoint` might make someone think of the place in a tree where a Node in mounted, or for example the DOM element where...
[Rollup](https://rollupjs.org) (with [Buble](https://buble.surge.sh) by the same author) is a popular bundler these days. - Let's add an example Rollup workflow to the README's [Workflows](https://github.com/trusktr/infamous#workflows).
Historically, DOM elements have a problem: their attributes must be coerced into strings. When you set them (for example you set a `style` attribute on an element) the values are...
There's no TriangleGeometry class in Three.js, but [here's some ways](https://stackoverflow.com/questions/29839777/how-to-use-three-triangle-in-three-js) we can implement one using the `THREE.Triangle` math class.
The README has a line like this in it: ```html ``` in the [Global Workflow](https://github.com/trusktr/infamous/blob/master/README.md#global-workflow-easiest) section. Update the `version` script in package.json so that when updating the version of Infamous...
https://github.com/semantic-release/semantic-release
Investigate this when we add WebGL. Also think about web workers.
Search for `CSSStyleDeclaration` to see code. Setting the CSS transform property - In Chrome: `element.style.transform = "transform(...)"` - in IE11?: `element.style.transform = "msTransform(...)"`? We just need to test in IE11....