rich Posted February 20, 2013 Share Posted February 20, 2013 A simple graphics library for extremely efficient pixel based manipulation. https://github.com/richardanaya/HyperPixel Quote Link to comment Share on other sites More sharing options...
benny! Posted February 20, 2013 Share Posted February 20, 2013 Hey, cool to see an efficient library for pixel based manipulations. In 2o11 I also came up with a little library called TinyC5 . But unfortunately the project is currently inactive (no time left really). Will check this lib out. Thanks for sharing. Quote Link to comment Share on other sites More sharing options...
feiss Posted March 5, 2013 Share Posted March 5, 2013 It's interesting what Hyperpixel does: Puts one Three.js particle on each pixel of the canvas, and provides get/setColor() for each particle-pixel. It's seems pretty efficient, but I'd love to see a more complete test than the only one they have (http://richardanaya.github.com/HyperPixel/). Seems more efficient than TinyC5 (based on canvas ImageData), but with just 3 functions: getColor(), setColor(), and update(). Both libraries have a strong tinyPTC inspiration, which is very cool Quote Link to comment Share on other sites More sharing options...
IvanK Posted March 10, 2013 Share Posted March 10, 2013 I just took a short look at 93 lines of code and I found a bug at line 19 and several other: var i = (y*this.height+x)*3; I think there should be this.width instead of height.EDIT: I have written him an email and he fixed it. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.