diff options
Diffstat (limited to 'Master/texmf-dist/doc/latex/tkz-euclide/examples/tkzEuclide-19-1-7.tex')
-rw-r--r-- | Master/texmf-dist/doc/latex/tkz-euclide/examples/tkzEuclide-19-1-7.tex | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/Master/texmf-dist/doc/latex/tkz-euclide/examples/tkzEuclide-19-1-7.tex b/Master/texmf-dist/doc/latex/tkz-euclide/examples/tkzEuclide-19-1-7.tex new file mode 100644 index 00000000000..fb7dca42865 --- /dev/null +++ b/Master/texmf-dist/doc/latex/tkz-euclide/examples/tkzEuclide-19-1-7.tex @@ -0,0 +1,29 @@ +\input{preamble-standalone.ltx} +\begin{document} + +% Ex. No. 124 (Section 19.1.7 : Circles exinscribed to a given triangle) + +\begin{tikzpicture}[scale=.6] + \tkzDefPoint(0,0){A} + \tkzDefPoint(3,0){B} + \tkzDefPoint(1,2.5){C} + \tkzDefCircle[ex](A,B,C) \tkzGetPoint{I} + \tkzGetLength{rI} + \tkzDefCircle[ex](C,A,B) \tkzGetPoint{J} + \tkzGetLength{rJ} + \tkzDefCircle[ex](B,C,A) \tkzGetPoint{K} + \tkzGetLength{rK} + \tkzDefCircle[in](B,C,A) \tkzGetPoint{O} + \tkzGetLength{rO} + \tkzDrawLines[add=1.5 and 1.5](A,B A,C B,C) + \tkzDrawPoints(I,J,K) + \tkzDrawPolygon(A,B,C) + \tkzDrawPolygon[dashed](I,J,K) + \tkzDrawCircle[R,blue!50!black](O,\rO) + \tkzDrawSegments[dashed](A,K B,J C,I) + \tkzDrawPoints(A,B,C) + \tkzDrawCircles[R](J,{\rJ} I,{\rI} K,{\rK}) + \tkzLabelPoints(A,B,C,I,J,K) +\end{tikzpicture} + +\end{document} |