1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
\input{preamble-standalone.ltx}
\begin{document}
% Ex. No. 82 (Section 15.1.2 : Example of extending an option segment \tkzimp{add})
\begin{tikzpicture}
\tkzDefPoints{0/0/A,6/0/B,0.8/4/C}
\tkzDefTriangleCenter[euler](A,B,C)
\tkzGetPoint{E}
\tkzDrawCircle[euler,red](A,B,C)
\tkzDrawLines[add=.5 and .5](A,B A,C B,C)
\tkzDrawPoints(A,B,C,E)
\tkzLabelPoints(A,B,C,E)
\end{tikzpicture}
\end{document}
|