blob: dbb9772f1d53fe2cc6988ccde15a7ad0d5341bf2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
\input{preamble-standalone.ltx}
\begin{document}
% Ex. No. 96 (Section 16.2.1 : triangle de Pythagore)
\begin{tikzpicture}
\tkzDefPoint(0,0){A}
\tkzDefPoint(4,0){B}
\tkzDrawTriangle[pythagore,fill=blue!30](A,B)
\tkzMarkRightAngles(A,B,tkzPointResult)
\end{tikzpicture}
\end{document}
|