blob: 82a8f36d9258d0e6e4261133b1e7566245f76b17 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
\input{preamble-standalone.ltx}
\begin{document}
% Ex. No. 107 (Section 18.1.2 : Use of \tkzcname{tkzDefSquare} to obtain an isosceles right-angled triangle)
\begin{tikzpicture}[scale=1]
\tkzDefPoint(0,0){A}
\tkzDefPoint(3,0){B}
\tkzDefSquare(A,B) \tkzGetFirstPoint{C}
\tkzDrawPolygon[color=blue,fill=blue!30](A,B,C)
\end{tikzpicture}
\end{document}
|