Distributing objects around a circle

Hi everyone,
I'm new here, so I'm sorry if I post it to a wrong section.
I'm a begginer with Illustrator and I've got a problem with distributing objects around a circle in Illustrator cs6.
What I'm trying to do is to have these acrhed lines (as per the top three curves you can see below) go around a circle, surrounding it (don't know if i explain myself good...). I was using both blend tool and rotate tool and it doesnt work for me the way I want it. All the time its sort of upside down at the bottom of the cirle and totaly twisted on the left and right... I guess im doing smth wrong, but I just can't find anything helpfull on web..
Would appreciate it a lot if you could helo me!
Thanks in advance and sorry for my English, its not my 1st language.

Cat Nat,
A completely different way, which may be (un)usable for your purpose is to create the circle with a Stroke Weight corresponding to the width of the arched lines and then in the Stroke palette/panel  apply Dashed line with Round Caps and suitable Dash and Gap values (you may try different values until you get it right).
You may use the free Adjust Dashes script available here,
http://park12.wakwak.com/~shp/lc/et/en_aics_script.html
to get an even distribution/final adjustment.

Similar Messages

  • Distributing objects around circle

    I am working on Mac OS 10.4.11 and Adobe CS3 ME.
    I know it's possible to evenly distribute objects in a line. But I would like to evenly distribute objects in a circle shape. Can that be done in Indesign or Illustrator?

    Yes, it can be done in either InDesign or Illustrator.
    I'm going to give you the steps in InDesign, but Illustrator is almost identical.
    First draw the shape that you want to distribute. Position it where you would want the top or 12 o'clock item.
    Now, switch to the Rotate tool. As you do, a rotation center point appears inside the bounding box of the original object.
    This center point needs to be moved to the center of the circle that you want to rotate the object around. (Or where the hands of the clock would originate from.)
    Hold the Option or Alt key and click where the roatation center point needs to be.
    A dialog box appears.
    Enter the angle of roation. This is usually an amount that is created by dividing 360. For instance, if you want 10 objects around the circle, you would enter the rotation amount of 36 degrees.
    If you wanted 12 objects, you would enter the rotation amount of 30 degrees. You figure out what you want.
    Use the Preview amount to see what it would look like. When you like what you have, click the Copy button (not the OK button).
    You will now have one new object in position. At this point you have "primed the pump" so to speak. InDesign now knows to make a copy at a certain rotation.
    Go to Object > Transform Again > Transform Again. The keyboard shortcut is Cmd-Opt-3 or Control-Alt-3.
    Each time you invoke the command, a new copy appears in position.
    This is the classic way to distribute objects in a circle.
    There are other ways to do it that would put the object around an actual circular object.
    But you might as well learn this one first.

  • Uneven Distribution of Objects Around a Circle

    Hi,
    I'm trying to figure out a way to distribute objects in a circle but make them uneven. Well, "uneven" in that the objects begin to space out more as they approach the top of the circle like the sample shown. I know how to distribute object evenly but I'm stumped on how to make this happen. Any ideas as to how this can be achieved? Blend and Spine? Transforms?

  • Distribute graphics around a circle

    Hi,
    i wanna distribute vector graphics from Illustrator around a circle in InDesign. I played around using the trial and error method. I read something about using the rotate tool to do it exactly, but i'm not able to do it like this. I don't wanna change the angle or duplicate the items. Is there another way? It should be look like this:
    Cheers
    Mario

    I bet this is far easier to do in Illustrator.
    Then again, with the help of a little scripting ... Select the objects to be distributed and run this script. You cannot set a "radius"; instead, the radius of the circumscribing circle is calculated from the largest horizontal or vertical distance.
    I'm a bit unsure on what the final re-positioning command actually does -- if you select objects of different sizes, you can see what I mean. But with equal-sized objects, such as your butterflies, it works mathematically perfect.
    objs = app.selection;
    minx = 1e9; miny = 1e9;
    maxx =-1e9; maxy =-1e9;
    for (a=0; a<objs.length; a++)
    if (objs[a].geometricBounds[0] < miny)
      miny = objs[a].geometricBounds[0];
    if (objs[a].geometricBounds[1] < minx)
      minx = objs[a].geometricBounds[1];
    if (objs[a].geometricBounds[2] > maxy)
      maxy = objs[a].geometricBounds[2];
    if (objs[a].geometricBounds[3] > maxx)
      maxx = objs[a].geometricBounds[3];
    wide = maxx-minx;
    high = maxy-miny;
    if (wide < high)
    wide = high;
    radius = wide/2;
    centerx = (minx+maxx)/2;
    centery = (miny+maxy)/2;
    for (i=0; i<objs.length; i++)
    cx = centerx + radius*Math.cos(2*Math.PI*i/objs.length);
    cy = centery + radius*Math.sin(2*Math.PI*i/objs.length);
    objs[i].move ([cx,cy]);

  • Align and Distribute Objects Evenly around a Circular Path

    How do I align objects and distribute evenly on a circular path? Especially if the objects are straight lines and I want them to be placed vertically and evenly around a circle. For example, the hash marks on a speedometer are vertical lines, but distributed evenly in a circular shape. I've gone throught the align/distribute video, but doesn't explain circular paths. I have Adobe CS3 for Windows XP.

    I've done this many times and there's a simple trick to it as long as you want an even number of tick marks. Make the line, duplicate it, move one of the lines below the other, and align them horizontally. Group the lines and bring up the Transform dialog. Click on Preview so you can see what you're doing. Enter the number of copies you want and then the angle to rotate the copies. You should see a perfectly arranged circle of lines. Expand Appearance to work with the lines further.
    Example: to make the tick marks for a clock face, make the first pair of lines, group them, make 5 copies, and rotate 30 degrees.

  • I cannot wrap around object shape in CS6. The object is a circle.

    I have made a circle in inDesign CS6 and need to wrap around the circle.  But "wrap around an object" treats it like a boundary box.  What is the problem?

    Try restarting ID and start a new document. Draw a text frame, fill it with placeholder text. Draw a circle. Click the wrap button indicated in the screen shot. Does it now work?
    You may need to reset your preferences.
    http://forums.adobe.com/thread/526990
    If that fixes it for new documents but not your working document, it may be corrupted.
    http://forums.adobe.com/thread/526991
    Mike

  • Dragging Object Around Circle in Flash with ActionScript 3

    I created a blog post that demonstrates how to make it work:
    http://flashascript.wordpress.com/2011/01/01/dragging-object-around-circle-in-flash-with-a ctionscript-3/

    Ok... I put that code in my flash project and verified that
    there are no errors in the code itself. However, when I try to test
    the movie I get the following error:
    Warning: Action on button or MovieClip instances are not
    supported in Action Script 3.0. All scripts on object instances
    will be ignored.
    Thus, when I do a mouse over on that particular country on
    the map, nothing happens.
    Any ideas?
    Thanks again

  • Distributing objects on a slide

    Here is a strange one. I want to evenly distribute many small graphic objects (stars, circles, etc.) on a slide. I have inserted a shape; copy and pasted multiple times, and then tried to use the Arrange: Distribute Objects to move them around. Rather than spreading them around on the slide, it scatters them far beyond onto the white sheet (I only found them when I went to 25% magnification.
    Am I missing something? Is there a way to have KN scatter the objects evenly- only on the viewable area of the slide?

    Distribute works by creating even spacing either horizontally or vertically among the selected items. It sounds like you may have had some object selected off of the slide.
    I'd suggest retrying the process in the following manner. First, make all the copies you want. Then, position at least one at the edges of area you want them distributed. Next, select all those copies one by one (don't use Select All). Now you can use the two Distribute menu items to evenly space them horizontally and vertically.
    Do note that this process won't really "scatter" items in a randomized way, it will only produce even spacing among the items.

  • Blending objects around a polygon

    Hi,
    Is there any way in indesign to blend the objects around a rectangle, circle, polygon etc (like in corel draw) ?
    Is there any to create custom presets for strokes which should take any kind of objects ?
    I require it for creating attractive frame borders

    Yeah, looking at the sample file that you posted, you want to use Adobe Illustrator brushes to achieve that result. Here's a free video you can watch on how to do it http://tinyurl.com/myu5r2f. Once you create the artwork, you can place it into your InDesign file as a graphic.

  • Creating a design around a circle shape?

    I want to create a shape around a circle similar to the black things on the outside of this dial in the picture below. Anybody know a simple way to adjust the stroke or something to do something like this rather than just creating each individual shape and building them around the circle? TIA!
    I want

    The strokes are quite easy to do you can use the rotate tool can rotate a copy of the stroke around the knob.  Remember this formula:
    # of objects / 360 degrees = number of degrees required to the next object.
    ex. 10 strokes / 360 degrees = 36 degrees between each stroke. (angle)
    In this example 36 would be type into the rotation value as every 36 degrees would be another object.
    This only needs to be done once as you can then step and repeat. ctrl-d or cmd-d.
    As for the text that can just be text on a path.
    (tip: After to select the rotate tool, hold down the alt/opt key to select the center of rotation this will then bring up the rotate dialog box)

  • How to Step and Repeat around a circle or radius

    For those looking for the simplest way to create multiple shapes evenly (equally) spaced around a center point, here's the only solution in Illustrator.
    1. Begin by drawing two intersecting guidelines, centered on your page. Turn on Smart Guides (CTRL + U) so you can make sure you are aligning the finished product.
    2. Draw the object you want to use. Center the object on the guidelines.
    3. Drag the object away from the intersecting guidelines.
    4. Draw a vertical line along the guideline.  Make sure that it extends through your object.
    5. Decide how many objects you want to create.
    6. With the vertical line selected, double-click the Rotate tool (Object > Transform > Rotate...).
    7. From the chart at the left, select the angle associated with the number of objects you want.
    8. Enter that number and click the COPY button.
    9. With the new line still selected, hit CTRL + D to repeat the duplicated line until it repeats completely around the circle.
    10. Select the object. (Make sure Smart Guides is ON).
    11. Click the Rotate tool.
    12. First click the intersection of the guidelines to establish the rotation point.
    13. Select the center point of the object and hold down the ALT key to move and duplicate the object.
    14. Move the object until it intersects with the next line. You'll see Smart Guides say "Intersect".
    15. Hit CTRL + D to duplicate the objects around the radius.
    16. Delete the lines.   You're DONE!

    GRW,
    here's the only solution in Illustrator.
    There is (almost) always more than one solution.
    Another one, or two:
    1) Draw the object and place it somewhere appropriate (maybe at a certain distance below the lower left corner of the Artboard X=Y=0);
    2) Draw a no fill no stroke circle with a centre appropriately aligned with the object (such as X=Y=0) and a diameter large enough for it to enclose the object, group with 1) or just select both;
    3) One of the following performed on 1)+2):
    3a) Object>Transform>Rotate inserting 360/N, where N is the number of items round the circle, repeat (Ctrl/Cmd+D) once less (delete the circles if desired);
    3b) Effect>Distort & Transform>Transform, rotate similarly  with one copy less (this requires grouping); Object>Expand Appearance  if desired to have independent separate objects.
    Some of the angles in the table are approximations and therefore inaccurate; 360/N is accurate.
    A new Circle Thread is born.
    Who is next?

  • TS1702 I purchased an app from the itunes store by direct debit.  I now wish to cancell this subscription, but I can't seem to find out how to do it.  Help I am going around in circles.

    I recently purchased an app. from iTunes that was on a monthly direct debit subscription.  Despite trying to following directions from iTunes to cancel it - I am getting no where.  Seem to be going around in circles.  Can any one help with some straightforward directions on how to do this please?

    See here:
    http://support.apple.com/kb/HT4098

  • How to make a line with arrow curve around a circle?

    I've got CS6 and Windows 7. Trying to make a line with an arrow on one end curve around a circle. Actually want it to have a 3D look like it was curving around the back side of a globe. How do you do this? Thanks.

    Perhaps you mean something more like this
    similar technique you create the arrow as a straight stroke path with an arrowhead and make it a symbol
    You then make it a symbol
    you than make a vertical rectangle and use the 3D Revolve Effect to make a cylinder
    then you go to map art
    then you choose in the map art to make the geomtery invisible
    then you ma the arrow symbol and adjust the placement and then adjust the rotation of the cylinder to your likeing.
    If you need a video to follow I'll do one later.

  • HT1338 I need help with numbers. I try to open numbers and I get a message stating that I need an update. When I go to update apple say I am up to date, but I still can't open numbers. I keep going around and circles. Help

    I cannot open numbers. When I click to open the message says that, I need to update. When I go to updates is says I am updated. I keep going around and circles. Can anyone help?

    Look in your Applications folder for the new version.
    Remove the old icon from the Dock and drag down the new one for ease of use.

  • In Keynote '09 distribute objects horizontally/vertically is distributing objects beyond the slide. How do I make the left-most and right-most objects the limit of the distribution?

    I used to have the option of distributing objects so that they would overlap, but the current "distribute" tool is functioning as if overlapping isn't allowed. The result is that the objects move beyond the limits of the slide. Any suggestions?

    I know that's what *should* happen, but it just doesn't. I've made screen-grabs of the entire process:
    Like I said, this use to work just as you've described it. Is there a box I accidentally selected? I just really don't understand why the tool has changed the way it functions...

Maybe you are looking for

  • The touchpad does not work properly

    I just bought this used Excite tablet only to find out that the touchpad is malfunctioning.  Sometimes the pad responds to the touch, other times it is just dead.  WHen I try to type my wifi password in, it takes the first two characters then randoml

  • Creating and restoring a Boot Camp partition using Paragon

    I am trying to restore a clone of the Boot Camp partition that's on my MacBook Air (Snow Leopard) to My MacBook Pro (Lion). I was told I could do this without requiring the Windows 7 installation disk by using Paragon Hard Disk Manager. I downloaded

  • Help!!! error -45054 when trying to play/download music in iTunes

    Help! I've recently bought my macbook pro. I can see my the music i have previously bought on my iPhone in iTunes but cloud symbol next to most music. When I try to play any of these or download new songs I get error message -45054. I have checked an

  • Open Item Management for GL Account

    When I run transaction code FAGL_FC_VAL - Foreign Currency Valuation a certain GL account is not apprearing on the list generated by the report. The Open Item Management checkbox is selected for this GL account in the master file, whereas the other G

  • Do Time Machine backups carry across the OSX?

    Basically, I had a computer with Mavericks and the hard drive went crazy and I had to reinstall the OSX, yet the only thing I had around was a copy of Lion. So, what I'd like to know is if my Time Machine backup will also install Mavericks on top of