latex-pictures

A collection of TikZ drawings and other images 🖌️

unit-circle.tikz (304B)

 1 % This picture represents the unit complex circle
 2 % Copyright Pablo (C) 2021
 3 \begin{tikzpicture}[scale=1.2]
 4   \node[above] (O) at (0,1) {$i$};
 5   \node[right] (O) at (1,0) {$1$};
 6   \filldraw[black] (0, 1) circle (1pt);
 7   \filldraw[black] (1, 0) circle (1pt);
 8   \draw (0, 0) circle (1);
 9 \end{tikzpicture}
10