( begin auto-generated from box.xml ) A box is an extruded rectangle. A box with equal dimension on all sides is a cube. ( end auto-generated ) @webref shape:3d_primitives @param size dimension of the box in all dimensions (creates a cube) @see PGraphics#sphere(float)
(float size)
| 2966 | * @see PGraphics#sphere(float) |
| 2967 | */ |
| 2968 | public void box(float size) { |
| 2969 | box(size, size, size); |
| 2970 | } |
| 2971 | |
| 2972 | |
| 2973 | /** |
nothing calls this directly
no test coverage detected