I am trying to achieve something like this in TikZ with LaTeXiT to use it in a non TeX environment as an .svg or .png:
With this code:
\documentclass[11pt]{standalone}
\usepackage{tikz}
\usetikzlibrary{calc}
\begin{document}
\begin{tikzpicture}[x=1cm,y=1cm]
%Center
\coordinate[label=below:Z] (Z) at (3.5,1);
\fill[black] (Z) circle (0.875mm);
\fill[white, label=hi] (Z) circle (0.625mm);
%Original triangle
\coordinate[label=right:A](A) at (2,2);
\coordinate[label=below:B](B) at (1,0);
\coordinate[label=below:C](C) at (0,0);
\draw[black,line width=0.5mm] (A) -- (B) -- (C) -- cycle node at (-0.5,0) [black,above left] {Original};
%Rotated triangle
\begin{scope}[rotate around={-160:(Z)}]
\coordinate[label=below:A'](A) at (2,2);
\coordinate[label=below left:B'](B) at (1,0);
\coordinate[label=right:C'](C) at (0,0);
\draw[black,line width=0.5mm,dashed] (A) -- (B) -- (C) -- cycle node at (0.5,1) [black,right] {Bild};
\end{scope}
\end{tikzpicture}
\end{document}
And with help of this post (and lots of trying around before finding this..) I got this far, but I have no idea how to proceed to connect those coordinates with an arc. Or is my approach completely wrong?



\usetkzobj{all}, I get theC'andBildnodes, but the dashed triangle is drawn above the original one. I needed to draw the dashed lines betweenA2,B2andC2, notA,BandC, to get it in the correct place. (Edit: With TeX Live 2016, TikZ version 3.0.1a,tkz-euclideversion 1.16c.) – Torbjørn T. Oct 23 '16 at 23:34A2,B2andC2too of course. I'll edit it. And yea you're right\usetkzobj{all}is used too. But when I use TexShop or similar I also get theBildandC'but using LaTeXiT I don't? (also Tex Live 2016 and TikZ 3.0.1a and tkz-euclide 1.16c) – ToshMatik Oct 24 '16 at 08:25(8,0)fixes the problem for LaTeXiT.. I'll go with that botched method until I have a better solution :) – ToshMatik Oct 24 '16 at 08:42\documentclass[11pt]{standalone}AND in LaTeXiT I get those cropped svg's. But using\documentclass{standalone}and setting the font size only in LaTeXiT removes the clipping problem. Glad I got it working though. – ToshMatik Oct 24 '16 at 16:03