I am trying to make a circle in the xy plane that has walls that slope up. How can I do this? Basically a bucket with a bigger opening then base.
\documentclass{article}
\usepackage{tikz, tikz-3dplot}
\begin{document}
\begin{center}
\tdplotsetmaincoords{72}{120}
\begin{tikzpicture}[line join = round, line cap = round, >=triangle 45,
tdplot_main_coords]
\draw[->] (0,0,0) -- (3,0,0) node[left, scale = .75] {$x$};
\draw[->] (0,0,0) -- (0,3,0) node[right, scale = .75] {$y$};
\draw[->] (0,0,0) -- (0,0,2) node[above, scale = .75] {$z$};
\end{tikzpicture}
\end{center}
\end{document}