blob: 6c97a27ac7850afeca75521679144b8b8d2bf2fd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
\input{preamble-standalone.ltx}
\begin{document}
% Ex. No. 85 (Section 11.1 : Dupliquer un segment)
\begin{tikzpicture}
\tkzDefPoint(0,0){A}
\tkzDefPoint(2,-3){B}
\tkzDefPoint(2,5){C}
\tkzDrawSegments[red](A,B A,C)
\tkzDuplicateSegment(A,B)(A,C) \tkzGetPoint{D}
\tkzDrawSegment[green](A,D)
\tkzDrawPoints[color=red](A,B,C,D)
\tkzLabelPoints[above right=3pt](A,B,C,D)
\end{tikzpicture}
\end{document}
|