These are (actually) equivalent to (x,y)=(√3/2,1/2), or approximately (0.866,0.5).
So, how can I assign these coordinate as (cos(30°), sin(30°)) to my node, label, or any other object in my TikZ document, so that I am not working in the approximated regime?
Code: Select all
\documentclass[tikz,border=2mm]{standalone}
\begin{document}
\begin{tikzpicture}[scale=1]
\draw [help lines] (-4,-4) grid (4,4);
\filldraw [black] (0,0) circle [radius=2pt];
\filldraw [black] (+0.866,-0.5) circle [radius=2pt]; %right
\filldraw [black] (-0.866,-0.5) circle [radius=2pt]; %left
\filldraw [black] (0,1) circle [radius=2pt]; %top
\draw [blue, very thin] (0,0) circle [radius=1 cm];
\end{tikzpicture}
\end{document}