畫一個長方體

要繪製長方體,必須通過將尺寸作為引數來使用 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 文件