diff options
Diffstat (limited to 'Master/texmf-dist/doc/latex/tkz-euclide/examples/tkzEuclide-19-1-10.tex')
-rw-r--r-- | Master/texmf-dist/doc/latex/tkz-euclide/examples/tkzEuclide-19-1-10.tex | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/Master/texmf-dist/doc/latex/tkz-euclide/examples/tkzEuclide-19-1-10.tex b/Master/texmf-dist/doc/latex/tkz-euclide/examples/tkzEuclide-19-1-10.tex new file mode 100644 index 00000000000..ced687050c2 --- /dev/null +++ b/Master/texmf-dist/doc/latex/tkz-euclide/examples/tkzEuclide-19-1-10.tex @@ -0,0 +1,21 @@ +\input{preamble-standalone.ltx} +\begin{document} + +% Ex. No. 127 (Section 19.1.10 : Orthogonal circle of given center) + +\begin{tikzpicture}[scale=.75] + \tkzDefPoints{0/0/O,1/0/A} + \tkzDefPoints{1.5/1.25/B,-2/-3/C} + \tkzDefCircle[orthogonal from=B](O,A) + \tkzGetPoints{z1}{z2} + \tkzDefCircle[orthogonal from=C](O,A) + \tkzGetPoints{t1}{t2} + \tkzDrawCircle(O,A) + \tkzDrawCircle[thick,color=red](B,z1) + \tkzDrawCircle[thick,color=red](C,t1) + \tkzDrawPoints(t1,t2,C) + \tkzDrawPoints(z1,z2,O,A,B) + \tkzLabelPoints(O,A,B,C) +\end{tikzpicture} + +\end{document} |