plane(w, h);
Draw a plane
Arguments
w
The width dimensionh
The height dimensionfunction setup()
createWindow(800, 800, GL3D);
end
function draw()
background(51);
rotateX(90);
plane(400, 400);
end
plane(w, h);
Draw a plane
w
The width dimensionh
The height dimensionfunction setup()
createWindow(800, 800, GL3D);
end
function draw()
background(51);
rotateX(90);
plane(400, 400);
end