Tarek Sherif
Tarek Sherif
One final idea: would it be helpful to get the min and max over the window? We could do this pretty easily by tracking `minTime` and `maxTime` across the window...
I think this could be really cool. If we had a standard way that stats indicated how they should be displayed (e.g. the `typeHint` property I suggested) and a standard...
Don't we already force publish all modules? It seems to be inconsistent about which dependencies get updated and which don't, e.g. before my fix: https://github.com/uber/luma.gl/blob/241483c0fac705b7ff9f6e4819097a3628fd4ea7/modules/debug/package.json `version` is 7.1.0-alpha.1, and dependency...
Actually looking at it now, it looks like it's just the caret (`^`) versions that aren't updated, which kind of makes sense. But why does it change them to alpha.0...
Hi! I don't now anything about p5, but I can provide the maintainers with some info that might be useful: The problem with alpha masked objects (i.e. when you're hiding...
`Number.isFinite` is a fairly common way to check for validity of values before doing mathematical operations. In high-performance use cases (graphics, in my case), it's annoying to have to add...
The examples aren't using a reflect plugin. They're using the core [reflect node](https://github.com/xeolabs/scenejs/blob/master/src/core/scene/reflect.js). This textures images used in the examples can be found in the [examples directory](https://github.com/xeolabs/scenejs/tree/master/examples/textures/reflection).
First impression would be that we don't need morphing UVs. Can't really think of a case where it would be useful...
I talked to Adam. He couldn't think of anything, though I'm sure he's going to try to invent some way to use it ;)
I'm not an expert in React or this library, but the bug seems to be in [this code](https://github.com/pmndrs/react-postprocessing/blob/master/src/Selection.tsx#L34-L37). `api.select` calls a [setState](https://github.com/pmndrs/react-postprocessing/blob/master/src/Selection.tsx#L17) which causes the component to re-render calling the...