box

v0.1.6
box(w, [h], [d]);

Draw a 3D box

Arguments

wThe width dimension
[h]The height dimension
[d]The depth dimension

function setup()
  createWindow(800, 800, GL3D);
end

function draw()
  background(51);
 
  box(50, 25, 80);
end
See box in shapes3D.h