RosettaCodeData/Task/Draw-a-sphere/LaTeX/draw-a-sphere.tex
2023-07-01 13:44:08 -04:00

8 lines
185 B
TeX

\documentclass{minimal}
\usepackage{tikz}
\usetikzlibrary{shadings}
\begin{document}
\begin{tikzpicture}
\shade[ball color=black] (0,0) circle (4);
\end{tikzpicture}
\end{document}