Mikola Lysenko

Results 50 comments of Mikola Lysenko

Maybe browserify should be moved to a dependency and installed locally?

Maybe include browserify as a devDependency and invoke it directly using the module form? Alternatively, you could look it up using npm scripts' path resolution.

Or just promote it to a dependency. You can try looking up browserify in the path if present, and if it isn't there then just fallback to the local node_modules...

@Prinzhorn not sure, but if true that is bad. I'm leaving a comment here to remind myself to check this tonight when I get home.

You could just apply a transformation via the model matrix or in a shader.

Maybe, though one downside I see is that it would require more than 2x more memory accesses, which could seriously reduce the speed of the mesher. Regarding 2^32 voxel types,...

Maybe you could use a free list or something to track the cells which get visited and clear them out when the search completes. Otherwise, it seems a bit foolish...

I'd do it if someone would pay me. Gotta eat somehow

Just came across this thing. You can make @mafintosh's solution a bit faster by scheduling multiple reads in parallel: ``` javascript var fs = require('fs') var BUFFER_SIZE = (1

I haven't investigated WebVR carefully, but I think that it should be possible to implement with regl as is today. If there any missing features or interfaces we have to...