Point
[{$point_1$, $point_2$ ...}]Point
[{{$p_11$, $p_12$, ...}, {$p_21$, $p_22$, ...}, ...}] Points are rendered if possible as circular regions. Their diameters can be specified using PointSize
.
Points can be specified as {x, y}:
Graphics[Point[{0, 0}]]
Graphics[Point[Table[{Sin[t], Cos[t]}, {t, 0, 2. Pi, Pi / 15.}]]]
or as {x, y, z}:
Graphics3D[{Orange, PointSize[0.05], Point[Table[{Sin[t], Cos[t], 0}, {t, 0, 2 Pi, Pi / 15.}]]}]