Wolfram: Graphics, Graphics3D
Graphics Object
Graphics
and
Graphics3D
are wrappers for
Graphics Primitive.
Result is rendered as visual graphics.
Graphics (2D)
Graphics[Line[{{0, 0}, {2, 1}}]]
Graphics3D
Graphics3D[Cuboid[{0, 0, 0}, {1, 2, 1}], Axes -> True]
Graphics3D[Table[Cuboid[{x, x, x}, {x, x, x} + 1], {x, 0, 5}], Axes -> True]