画一个长方体

要绘制长方体,必须通过将尺寸作为参数来使用 box() 函数。

size(200, 200, P3D); //Starting the P3D renderer
translate(width/2, height/2); //Translating to the centre of the sketch
rotateY(PI/4); //rotate so that...
rotateX(PI/6); //... it will be easy to see the box
noFill(); //disabling the box's fill, so that we will be able to see its edges
box(100, 50, 75); //the box function requires its dimensions as its parameters

StackOverflow 文档

需要注意的是 box() 功能并没有接受其作为参数位置

还有一种方法只用一个参数调用 box() 函数。在这种情况下,它将是一个立方体。

stroke(0, 100, 255); //change the edges' colour
fill(0, 0, 255); //fill the `box` in a blue colour
box(100); //draw a cube

StackOverflow 文档