diff options
Diffstat (limited to 'Master/texmf-dist/doc/latex/tkz-euclide/examples/tkzEuclide-09-7-2.tex')
-rw-r--r-- | Master/texmf-dist/doc/latex/tkz-euclide/examples/tkzEuclide-09-7-2.tex | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/Master/texmf-dist/doc/latex/tkz-euclide/examples/tkzEuclide-09-7-2.tex b/Master/texmf-dist/doc/latex/tkz-euclide/examples/tkzEuclide-09-7-2.tex new file mode 100644 index 00000000000..4d943a54f1f --- /dev/null +++ b/Master/texmf-dist/doc/latex/tkz-euclide/examples/tkzEuclide-09-7-2.tex @@ -0,0 +1,22 @@ +\input{preamble-standalone.ltx} +\begin{document} + +% Ex. No. 47 (Section 9.7.2 : Point Inversion: Orthogonal Circles) + +\begin{tikzpicture}[scale=1.5] + \tkzDefPoint(0,0){O} + \tkzDefPoint(1,0){A} + \tkzDrawCircle(O,A) + \tkzDefPoint(0.5,-0.25){z1} + \tkzDefPoint(-0.5,-0.5){z2} + \tkzDefPointBy[inversion = % + center O through A](z1) + \tkzGetPoint{Z1} + \tkzCircumCenter(z1,z2,Z1) + \tkzGetPoint{c} + \tkzDrawCircle(c,Z1) + \tkzDrawPoints[color=black, + fill=red,size=4](O,z1,z2,Z1,O,A) +\end{tikzpicture} + +\end{document} |