Can anybody pls provide the syntax/command to draw any number of circle about a point like radial array in autocad? Did not find any example in tikz manual. May be "radial array" has different term in tikz manual?
Many thanks!
Graphics, Figures & Tables ⇒ Draw five circles in radial array about a point in tikz
Draw five circles in radial array about a point in tikz
Last edited by pban92 on Tue Jan 18, 2011 2:36 am, edited 5 times in total.
NEW: TikZ book now 40% off at Amazon.com for a short time.

- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
Draw five circles in radial array about a point in tikz
Then you will need your own ideas. The \foreach command fed with the according angles in a polar coordinate system should do the trick.pban92 wrote:[…] Did not find any example in tikz manual. […]
Thorsten
How to make a "Minimal Example"
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
Draw five circles in radial array about a point in tikz
Thanks Ghost.
I managed to work out with your hint.
A quick link to the specific section of the board rule would make it easier to follow it. Just a suggestion!
Thanks!
I managed to work out with your hint.
Code: Select all
\documentclass[10pt,a4paper]{article}
\usepackage{tikz}
\begin{document}
\begin{tikzpicture}
\draw[color=black](0,0) circle(5cm);% draw mother circle
\foreach \x in {72,144,...,360} \draw[color=black](\x:7) circle(1cm);%draw 5 child circles
\end{tikzpicture}
\end{document}
Thanks!
- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
Draw five circles in radial array about a point in tikz
The rules can be found on top of every forum among the »Announcements« and actually can't be overlooked. Especially when opening a new topic. Other users have managed to find them, too.
How to make a "Minimal Example"
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
Re: Draw five circles in radial array about a point in tikz
It's equivalent to providing the phone number when requesting someone to call back. Leaves the prospective caller from the hassle to look for the number. I find that always convenient. (I had to spend good 5 minutes or so which could be well avoided. Don't want to imagine the accumulated time by the hundred of visitors.)
Last edited by pban92 on Sun Jan 16, 2011 8:49 pm, edited 3 times in total.