27 lines
701 B
TeX
27 lines
701 B
TeX
\begin{tikzpicture}[scale = 0.4]
|
|
\node {$\bullet$};
|
|
|
|
\newdimen\R
|
|
\foreach \R in {1,2,...,5}
|
|
\draw (0:\R) \foreach \x in {60,120,...,360} {
|
|
-- (\x:\R)
|
|
(0,0) -- (\x:\R)
|
|
};
|
|
|
|
\foreach \x/\l/\p in
|
|
{ 60/{acidity}/above,
|
|
120/{metallicness}/above,
|
|
180/{cancerous}/left,
|
|
240/{lethality}/below,
|
|
300/{solubility}/below,
|
|
360/{toughness}/right
|
|
}
|
|
\node[inner sep=1pt,circle,draw,fill,label={\p:\l}] at (\x:5) {};
|
|
|
|
\fill[color = blue!25]
|
|
\foreach \x/\R in {60/0,120/2.5,180/1,240/5,300/0,360/5} {
|
|
-- (\x:\R)
|
|
};
|
|
|
|
\node[inner sep = 1.7pt, circle,draw,fill, color=blue!25] at (0:5){};
|
|
\end{tikzpicture}
|