5

I want to rotate my figure, like here below:

my required orientation

\documentclass{standalone}
\usepackage{tikz}
\usepackage{tikz-3dplot}
\begin{document}
\tdplotsetmaincoords{180}{0}
\begin{tikzpicture}[thick,scale=3,tdplot_main_coords]
\draw[thick,->] (4,0,0) -- (5,0,0) node[anchor=north east]{$x$};
\draw[thick,->] (4,0,0) -- (4,1,0) node[anchor=north west]{$y$};
\draw[thick,->] (4,0,0) -- (4,0,1) node[anchor=south]{$z$};
\end{tikzpicture}
\end{document}

my current orientation

What can I do to rotate z-coordinate?

cadi2108
  • 181

1 Answers1

2

How about this:

Code

\documentclass[tikz,border=2mm]{standalone}
\begin{document}
\begin{tikzpicture}
[   thick,
    scale=3,
    x={(0:1cm)},
    y={(270:1cm)},
    z={(315:1cm)}
]
\draw[thick,->] (4,0,0) -- (5,0,0) node[right]{$x$};
\draw[thick,->] (4,0,0) -- (4,1,0) node[below]{$y$};
\draw[thick,->] (4,0,0) -- (4,0,1) node[below right]{$z$};
\end{tikzpicture}
\end{document}

Output

enter image description here

Tom Bombadil
  • 40,123