↧
Answer by matja for Creating anaglyph 3D image on HTML5 canvas
There is a globalCompositeOperation property of the canvas context that you can change to affect this behavior. Specifically, setting it to 'lighter' will add the colours of any drawing operations to...
View ArticleCreating anaglyph 3D image on HTML5 canvas
I'm creating a simple 3D engine using the HTML5 canvas object. It is working well but I'd like to implement red/blue anaglyph processing, so that one could really see 3D using red/blue glasses. At the...
View Article