tikzpicture um x-Achsen rotieren
Liebe Texwelt,
ich würde mein Tikzpicture gerne um die x-Achse rotieren. Das Tikzpicure entspricht einem Kreis. Dieser sollte nach dem rotieren also einer Ellipse ähneln. Hab schon verschiedenes im Internet gelesen, meistens waren dabei allerdings Koordinaten im Spiel, was bei meinem TIkzpicture ja nicht der Fall ist.
\documentclass[fleqn,12pt,a4paper,german]{article}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage[ngerman]{babel}
\usepackage{tikz}
\usepackage{wasysym}
\begin{document}
\begin{tikzpicture}
\node at (0,0) {\CIRCLE};
[
point/.default=5pt
]
\foreach[count=\i,evaluate=\i as \angle using (\i)*360/5] \text in {%
\colorbox {gray} {0\textcolor{white}1} BCDD,\colorbox {gray} {0\textcolor{white}2} BCDD,\colorbox {gray} {0\textcolor{white}3} ABAC,\colorbox {gray} {0\textcolor{white}4} \textcolor{green}{\checked} ,\colorbox {gray} {0\textcolor{white}0} CCDE, % Beschriftung der Kreise
}
\node[rotate=\angle, anchor=west] (node\i) at (\angle:0.8) {\text};
\def\Radius{6.25}
\def\radius{3.7}
\begin{scope}[even odd rule]% auch zum Lokalhalten des Beschneidens
\clip circle[radius=\Radius];
\clip[rotate=19.75] (3.8,0) -- (3.8,0.44) -- (5:\Radius) arc (5:360:\Radius)--cycle;
\shade[shading=radial, inner color=black, outer color=gray!60]
circle[radius=\Radius]
circle[radius=\radius]
;
\end{scope}
\def \n {3}
\def \radius {7.3cm}
\def \margin {8}; % margin in angles, depends on the radius
\end{tikzpicture}
\end{document}