SmtC: Show me the Code
Ole Peter Smith
Instituto de Matemática e Estatística
Universidade Federal de Goiás
http://www.olesmith.com.br

Points
O Homem é a espécie mais insana.
Venera um Deus invisível e destrói a Natureza visível…
Sem se aperceber de que esta Natureza, que ele destrói,
é o Deus invisível que ele venera
Hubert Reeves

Mathematical Clock

Convex Parametrization between $A$ and $B$


TiKZ Listing: Fig.tikz.tex. PDF   PNG   SVG   ZIP*  
\documentclass{standalone}

\usepackage{tikz}
\usetikzlibrary{calc,math}

\begin{document}
   \begin{tikzpicture}
       %Center
       \coordinate (C) at (0,0);
       
       %Radius
       \tikzmath{\R=5;};
       
       \draw (C) circle (\R);
       \filldraw (C) circle (2pt);
       
       %Number of points
       \tikzmath{\NP=12;};
       
       \tikzmath{\dAngle=360/\NP;};
       
       \foreach \n in {1,2,...,12}
       {
           \tikzmath{\Angle=\n*\dAngle;};
           \coordinate (P) at ($(C)+(\Angle:\R)$);
           \draw[dotted,-latex] (C) -- (P);
           \node at ($(C)!1.1!(P)$)
           {
              %Conver to roman numbers;
              $\uppercase\expandafter{\romannumeral\n\relax}$
           };
       }
       
   \end{tikzpicture}
\end{document}
Messages:
0 secs.