Wolfram: Graphics, Graphics3D

By Xah Lee. Date: .

Graphics Object

Graphics and Graphics3D are wrappers for Graphics Primitive.

Result is rendered as visual graphics.

Graphics (2D)

Graphics[Line[{{0, 0}, {2, 1}}]]
WolframLang Graphics 2022-02-09 f3D4

Graphics3D

Graphics3D[Cuboid[{0, 0, 0}, {1, 2, 1}], Axes -> True]
Cuboid 2022-02-09 5g87
Cuboid 2022-02-09 5g87

Graphics3D[Table[Cuboid[{x, x, x}, {x, x, x} + 1], {x, 0, 5}], Axes -> True]
WolframLang cubes 2022-02-09 mJgr

Wolfram. Graphics Programing