What is the easiest way to have TikZ or tikz-euclide generate a picture with successive incircles to a triangle without needing to calculate the points for each smaller triangle?
I have the following code that has two incircles to a triangle. What if I want to continue or automate this drawing for different triangles?
\begin{tikzpicture}
\draw ({-sqrt(3)},-1) -- ({(1-sqrt(3))/2}, {(1+sqrt(3))/2}) -- ({2+sqrt(3)},-1) -- ({-sqrt(3)},-1) ;
\draw (0,0) circle [radius=1];
\tkzDefPoint(3.7,-1){A}
\tkzDefPoint(1.16452,0.482362){B}
\tkzDefPoint(0.767327,-1){C}
\tkzDrawSegments(A,B B,C C,A)
\tkzDefCircle[in](A,B,C)\tkzGetPoint{I}\tkzGetLength{rIN}
\tkzDrawCircle[R](I,\rIN pt)
\end{tikzpicture}
Thanks!



\documentclass{...}and ends with\end{document}. – Herr K. Nov 26 '13 at 00:55