plane

v0.1.6
plane(w, h);

Draw a plane

Arguments

wThe width dimension
hThe height dimension

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

function draw()
  background(51);
 
  rotateX(90);
  plane(400, 400);
end
See plane in shapes3D.h