A box is an extruded rectangle . A box with equal dimension on all sides is a cube. @webref shape:3d primitives @webBrief A box is an extruded rectangle @param size dimension of the box in all dimensions (creates a cube) @see PGraphics#sphere(float)
(float size)
| 3080 | * @see PGraphics#sphere(float) |
| 3081 | */ |
| 3082 | public void box(float size) { |
| 3083 | box(size, size, size); |
| 3084 | } |
| 3085 | |
| 3086 | |
| 3087 | /** |
nothing calls this directly
no test coverage detected