GPUs are designed to do many things well, but drawing transparent 3D objects is not one of them. Opacity doesn't commute so that the order in which you draw surfaces makes a big difference. Of course simple additive blending does commute, but it's not really what we think of as "transparent objects". The simplest way to draw transparent objects is from back to front via the painter's algorithm. In this approach we sort geometry and draw only from back to front. This requires sorting triangles, which, in add
This site contains many samples and prototypes that I have developed. All the code for the samples are available on bitbucket and people are free to do with it what they will. Ideally its best if you use the latest version of the Chrome browser, I tend to use the latest available APIs and features as I prototype and learn new subjects.
* 2D Prototypes
* 3D Fungi Prototypes
* SDF / Ray Marching Prototypes
* Three.js Prototypes
* 3D Shader Prototypes
* UI Web Components
* Misc