blob: 27a95601b9ac670e139b80837b1d11d65edb1bbd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
\input{preamble-standalone.ltx}
\begin{document}
% Ex. No. 14 (Section 4.1.3 : Polar coordinates )
\begin{tikzpicture}
\foreach \an [count=\i] in {0,60,...,300}
{ \tkzDefPoint(\an:3){A_\i}}
\tkzDrawPolygon(A_1,A_...,A_6)
\tkzDrawPoints(A_1,A_...,A_6)
\end{tikzpicture}
\end{document}
|