Como desenhar um círculo no plano YZ em R ^ 3?

Como desenhar um círculo no plano YZ em R ^ 3?

como está escrito no título, gostaria de desenhar um círculo no plano YZ, no momento escrevi coordenadas estáticas, mas se for possível deixar o tikz calcular a perspectiva seria bem melhor. Agradeço antecipadamente:)

Aqui está o meu (talvez inútil) código + png: - Acho que tenho que trabalhar com \usepackage{tikz-3dplot}, mas não sei como fazer. insira a descrição da imagem aqui

\documentclass{standalone}
\usepackage{tikz}
\begin{document}

\begin{tikzpicture}

%3D-Koordinatensystem:
\draw[->, >=latex] (-0.5,0,0) -- (7,0,0) node[below]{};
\draw[->, >=latex] (0,-0.5,0) -- (0,3,0) node[left]{}; 
\draw[->, >=latex] (0,0,-0.5) -- (0,0,5) node[left]{};

\coordinate (0) at (-1.5,1);

\coordinate (1) at (-2,-0.62);
\coordinate (2) at (-1,-0.62);
\coordinate (3) at (0,-0.62);
\coordinate (4) at (1,-0.62);
\coordinate (5) at (2,-0.62);
\coordinate (6) at (3,-0.62);
\coordinate (7) at (4,-0.62);
\coordinate (8) at (5,-0.62);
\coordinate (9) at (6,-0.62);
\coordinate (10) at (7,-0.62);
\coordinate (10) at (8,-0.62);
\coordinate (10) at (9,-0.62);


\draw[thick, dashed] (0) circle[x={(1cm,1.4cm)},y={(1cm,-1cm)},x radius=1, y radius=0.8] node [above=14mm, left=4mm] {$(t_o,x_o)$} ;
\draw[thick] (0) circle[x={(1cm,1.4cm)},y={(1cm,-1cm)},x radius=0.4, y radius=0.3]; 

\filldraw (0) circle (0.25mm) node [below=1.5mm, right=0.5mm] {$\delta$};

\draw (0) -- (-1.05,1) node [above=10mm, left=1mm] {$\varepsilon$};
\draw (0) -- (-1,2.62);

\filldraw (-2,-0.62)circle (0.2mm);




\draw [line width=0.8] (1) to [out=350,in=130] (2); 
\draw [line width=0.8] (2) to [out=320,in=140] (3);
\draw [line width=0.8] (3) to [out=320,in=140] (4);
\draw [line width=0.8] (4) to [out=320,in=140] (5);
\draw [line width=0.8] (5) to [out=320,in=140] (6);
\draw [line width=0.8] (6) to [out=320,in=140] (7);
\draw [line width=0.8] (7) to [out=320,in=140] (8);
\draw [line width=0.8] (8) to [out=320,in=140] (9);


\end{tikzpicture}
\end{document}

Responder1

Talvez algo assim:

insira a descrição da imagem aqui

Isso foi feito usando um gráfico paramétrico de um círculo usandotikz'sCoordenadas 3D:

 \draw[smooth] plot (0,{2.2+0.6*cos(\x r)},{2.2+0.6*sin(\x r)});

Aqui está o código completo:

\documentclass[tikz, border=2mm]{standalone}
\begin{document}

\begin{tikzpicture}

%3D-Koordinatensystem:
  \draw[->, >=latex] (-0.5,0,0) -- (7,0,0) node[below]{};
  \draw[->, >=latex] (0,-0.5,0) -- (0,3,0) node[left]{};
  \draw[->, >=latex] (0,0,-0.5) -- (0,0,5) node[left]{};

  \coordinate (0) at (-1.5,1);

  \coordinate (1) at (-2,-0.62);
  \coordinate (2) at (-1,-0.62);
  \coordinate (3) at (0,-0.62);
  \coordinate (4) at (1,-0.62);
  \coordinate (5) at (2,-0.62);
  \coordinate (6) at (3,-0.62);
  \coordinate (7) at (4,-0.62);
  \coordinate (8) at (5,-0.62);
  \coordinate (9) at (6,-0.62);
  \coordinate (10) at (7,-0.62);
  \coordinate (10) at (8,-0.62);
  \coordinate (10) at (9,-0.62);

  \draw[smooth] plot (0,{2.2+0.6*cos(\x r)},{2.2+0.6*sin(\x r)});
  \draw[smooth, dashed] plot (0,{2.2+1.4*cos(\x r)},{2.2+1.4*sin(\x r)});

  \draw(0,2.2,2.2)--++(0.55,0.75,0)node[above right]{$\varepsilon$};
  \draw(0,2.2,2.2)--node[below]{$\delta$} ++(0.5,0,0);

  \filldraw (0, 2.2, 2.2) circle (0.2mm);

  \draw [line width=0.8] (1) to [out=350,in=130] (2);
  \draw [line width=0.8] (2) to [out=320,in=140] (3);
  \draw [line width=0.8] (3) to [out=320,in=140] (4);
  \draw [line width=0.8] (4) to [out=320,in=140] (5);
  \draw [line width=0.8] (5) to [out=320,in=140] (6);
  \draw [line width=0.8] (6) to [out=320,in=140] (7);
  \draw [line width=0.8] (7) to [out=320,in=140] (8);
  \draw [line width=0.8] (8) to [out=320,in=140] (9);

\end{tikzpicture}
\end{document}

Posicionei os círculos de forma um tanto aleatória e, em particular, não os alinhei com a sua "onda", mas esses detalhes são fáceis de ajustar.

informação relacionada