RosettaCodeData/Task/Draw-a-sphere/LaTeX/draw-a-sphere.tex

9 lines
185 B
TeX
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
\documentclass{minimal}
\usepackage{tikz}
\usetikzlibrary{shadings}
\begin{document}
\begin{tikzpicture}
\shade[ball color=black] (0,0) circle (4);
\end{tikzpicture}
\end{document}