dibujar un círculo en el plano xy cuando se usan coordenadas 3d

dibujar un círculo en el plano xy cuando se usan coordenadas 3d

Estoy tratando de hacer un círculo en el plano xy que tenga paredes inclinadas hacia arriba. ¿Cómo puedo hacer esto? Básicamente un cubo con una apertura más grande que la 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}

Respuesta1

¡Prueba esto! Tomé el código de aquíhttp://www.texample.net/tikz/examples/dandelin-spheres/e hice algunas simplificaciones.

\documentclass{article}
\usepackage{tikz}
\usepackage{tikz-3dplot}
\begin{document}

\tdplotsetmaincoords{70}{0}
\begin{tikzpicture}[tdplot_main_coords]

\def\h{2.5}% height of cup
\def\r{2}% reason of two radius

\foreach \t in {5,10,...,360}
    \draw[magenta] ({cos(\t)},{sin(\t)},0) --({2*cos(\t)},{2*sin(\t)},{2.0*\h});
\draw[magenta,very thick] (1,0,0) % lower circle
    \foreach \t in {5,10,...,360}
        {--({cos(\t)},{sin(\t)},0)}--cycle;
\draw[magenta,very thick] (1,0,0) % upper circle
    \foreach \t in {5,10,...,360}
    {--({\r*cos(\t)},{\r*sin(\t)},{2*\h})}--cycle;

\end{tikzpicture}

\end{document}

información relacionada