Andor Salga

emissive() Test

This test was taken from Processing.org which tests to make
sure the emissive() works correctly on a sphere.

// Test from Processing.org
size(100, 100, P3D);
background(0);
noStroke();
directionalLight(204, 204, 204, .5, 0, -1);
emissive(0, 26, 51);
translate(70, 50, 0);
sphere(30);