tikz-3dplot: Поворот дуги вокруг определенной оси

tikz-3dplot: Поворот дуги вокруг определенной оси
    \documentclass[tikz]{standalone}
    \usepackage{tikz-3dplot}
    \begin{document}
    \begin{tikzpicture}[scale=2]
        % draw arcs
        \draw[canvas is zx plane at y = 1, line width = 1pt] (2,1) arc (-90:-180:1);
        \draw[canvas is zx plane at y = 1, opacity = 0.2, line width = 1pt] (2,1) arc (90:180:1);
        \draw[canvas is zy plane at x = 1, opacity = 0.2, line width = 1pt] (2,1) arc (-90:-180:1);
        \draw[canvas is zy plane at x = 1, opacity = 0.2, line width = 1pt] (2,1) arc (90:180:1);   

        %draw the axes
        \draw[red,->] (1,1,2) -- (1, 1, -1.1) node[anchor=north west]{$x$};
        \draw[blue,->] (1,1,2) -- (3.5,1,2) node[anchor=west]{$z$};
        \draw[blue,->] (1,1,2) -- (1,-1.2,2) node[anchor=north]{$y$};
    \end{tikzpicture}
    \end{document}

Повернутая дуга

Привет,

У меня следующая проблема. Я хочу, чтобы черная дуга в плоскости xz вращалась вокруг нарисованной оси x. Я пришел только к шагам вращения в 90°, но я хочу, чтобы шаги вращения были, например, 5°. Может ли кто-нибудь помочь мне с этой проблемой?

Спасибо, Нико.

решение1

Я упростил код, поместив начало координат в точку (0,0,0).

Точку зрения можно задать с помощью:

\tdplotsetmaincoords{70}{110} % rotation about the x and y axis

Вращение черной дуги можно задать с помощью:

\tdplotsetrotatedcoords{0}{0}{-5} % rotation about the x, y and z axis

введите описание изображения здесь

\documentclass[tikz,border=10pt]{standalone}
\usepackage{tikz-3dplot}
\begin{document}

\tdplotsetmaincoords{70}{110}     % point of view
\tdplotsetrotatedcoords{0}{0}{-5} % black arc rotation (x,y,z)

\begin{tikzpicture}[tdplot_main_coords,scale=1]
  %draw the axes
  \draw[blue,->] (0,0,0) -- (2,0,0) node[anchor=south]{$x$};
  \draw[blue,->] (0,0,0) -- (0,2,0) node[anchor=north]{$y$};
  \draw[red,->]  (0,0,0) -- (0,0,2) node[anchor=west]{$z$};

  % draw arcs  
  \draw[canvas is yz plane at x = 0, opacity = 0.2, line width = 1pt]
    (0,0) arc (0:90:1);
  \draw[canvas is yz plane at x = 0, opacity = 0.2, line width = 1pt]
    (0,0) arc (0:-90:-1);
  \draw[canvas is xz plane at y = 0, opacity = 0.2, line width = 1pt]
    (0,0) arc (0:-90:-1);

  \draw[tdplot_rotated_coords, canvas is zx plane at y = 0, line width = 1pt]
    (0,0) arc (90:0:1);

\end{tikzpicture}
\end{document}

Анимированная версия (просто для развлечения):

введите описание изображения здесь

Код:

\documentclass{beamer}
\usepackage{tikz,tikz-3dplot}
\setbeamertemplate{navigation symbols}{}

\tikzset{
  invisible/.style={opacity=0},
  visible on/.style={alt={#1{}{invisible}}},
  alt/.code args={<#1>#2#3}{%
    \alt<#1>{\pgfkeysalso{#2}}{\pgfkeysalso{#3}}
  },
}

\begin{document}

\tdplotsetmaincoords{70}{110}    % point of view
\tdplotsetrotatedcoords{0}{0}{0} % black arc rotation (x,y,z)

\begin{frame}
\centering
\begin{tikzpicture}[tdplot_main_coords]
    %draw the axes  
    \draw[blue,->] (0,0,0) -- (2,0,0) node[anchor=south]{$x$};
    \draw[blue,->] (0,0,0) -- (0,2,0) node[anchor=north]{$y$};
    \draw[red,->]  (0,0,0) -- (0,0,2) node[anchor=west]{$z$};

    % draw arcs  
    \draw[canvas is yz plane at x = 0, opacity = 0.2, line width = 1pt]
      (0,0) arc (0:90:1);
    \draw[canvas is yz plane at x = 0, opacity = 0.2, line width = 1pt]
      (0,0) arc (0:-90:-1);
    \draw[canvas is xz plane at y = 0, opacity = 0.2, line width = 1pt]
      (0,0) arc (0:-90:-1);

    \foreach \i in {0,...,10}
    \tdplotsetrotatedcoords{0}{0}{\i*36}
    \draw[tdplot_rotated_coords, thick,visible on=<\i>,
      canvas is zx plane at y = 0, line width = 1pt]
      (0,0) arc (90:0:1);

\end{tikzpicture}
\end{frame}

\end{document}

Команда ImageMagick для создания анимированного GIF-файла:

convert -verbose -delay 12 -loop 0 -density 300 i.pdf o.gif

решение2

\documentclass[tikz,border=10pt]{standalone}
\usepackage{tikz-3dplot}
\begin{document}

\tdplotsetmaincoords{70}{20}     % point of view

\begin{tikzpicture}[tdplot_main_coords,scale=1]

 %draw black arc
  \draw[canvas is xy plane at z = 0, line width = 1pt]
    (0,0) arc (0:-90:-1);

 %draw rotated gray arcs (5°-steps)
  \foreach \rotStep in {5,10,15,...,355}{
    \tdplotsetrotatedcoords{0}{\rotStep}{0} 
        \draw[tdplot_rotated_coords, canvas is xy plane at z = 0, line width = 1pt, opacity = 0.2]
          (0,0) arc (0:-90:-1);
   }

  %draw the axes
  \draw[red,->] (0,0,0) -- (0,4,0) node[anchor=north]{$x$};
  \draw[blue,->]  (0,0,0) -- (0,0,-2) node[anchor=west]{$y$};
  \draw[blue,->] (0,0,0) -- (2,0,0) node[anchor=south]{$z$};

\end{tikzpicture}
\end{document}

введите описание изображения здесь

С помощью Сергея я нашел решение своей проблемы с помощью \tdplotsetrotatedcoords{}{}{}. Кстати, анимированная версия — это крутая функция.

Спасибо за помощь! Нико

Связанный контент