|
|
|
#1 |
|
Senior Member
Join Date: Feb 2004
Location: Worcester Ma
Posts: 161
|
Circles in Circle
Anyone know where I could find some code on how to produce a few small circles randomly moving around inside one major circle? The major circle's border reflects the smaller circles and keeps them contained inside it.
I am trying to finish a project and I need to imitate a basic molecular level model with protons and neutrons. Really appreciate any feedback. Thanks. |
|
|
|
|
|
#2 |
|
Senior Member
Join Date: Feb 2004
Location: Los Angeles
Posts: 2,920
|
There are a few movies on my site that do things like this. See link below.
- Jim |
|
|
|
|
|
#3 |
|
Senior Member
Join Date: Feb 2004
Location: Worcester Ma
Posts: 161
|
Wow its you Krazydad. Cant beleive you just replied...I was on your site for a few hours last night looking at your bio & stuff. You're a genius.
I have been looking at your code, especially the "Wheel of Trinkets". Obviously my answer lies there but I am having trouble isolating what I need. |
|
|
|
|
|
#4 |
|
Senior Member
Join Date: Feb 2004
Location: Los Angeles
Posts: 2,920
|
A lot of my sample code, including 'clumping' and 'wheel of trinkets' include sample functions for drawing circles using parameters x, y and radius.
If your outer circle has center ox,oy and radius oRad, then your inner circles need to be within that. If an inner circle has center ix,iy and radius iRad, then distance of the center of the inner circle from the center of the outer circle is given by dist = Math.sqrt(Math.pow(ox-ix,2) + Math.pow(oy-iy,2)); This distance should not allowed to exceed (oRad - iRad). Here is a script that draws two circles which randomly move within an outer circle. I'll add some comments later when I have more time...
|
|
|
|
|
|
#5 |
|
Senior Member
Join Date: Feb 2004
Location: Worcester Ma
Posts: 161
|
Thanks for the help JBum!
I have been racking my brains over this one all day. I can definitely work with this...and hopefully you do add more comments...thanks again. |
|
|
|
|
|
#6 |
|
Senior Member
Join Date: Feb 2004
Location: Worcester Ma
Posts: 161
|
The problem I am runing into now is that I am trying to put this script into a MC that can be resized to slowly shrink away into the BG and fade away...I tried substituting the occurences of _root with _parent, the final result is that nothings works.
|
|
|
|
|
|
#7 |
|
Senior Member
Join Date: Feb 2004
Location: Los Angeles
Posts: 2,920
|
Post your .fla and I'll take a look.
|
|
|
|
|
|
#8 |
|
Senior Member
Join Date: Feb 2004
Location: Worcester Ma
Posts: 161
|
Here is where i am at so far...I am now trying to get this stuff "encapsulated" into a MC but i cant seem to get that part. I have erased my efforts in that regard...but here is my .fla.
Thanks |
|
|
|
|
|
#9 |
|
Senior Member
Join Date: Feb 2004
Location: Los Angeles
Posts: 2,920
|
I turned your blue circle into a movieclip called circle_mc and put the animation inside of it. There's a commmented out routine at the bottom which animates circle_mc...
|
|
|
|
|
|
#10 |
|
Senior Member
Join Date: Feb 2004
Location: Worcester Ma
Posts: 161
|
Thanks so much this works great. This project is due tomorrow and you helped me out a ton (this one hurddle was killing me).
Really appreciate the time you've spent on this. Thanks again...I'll be joining your site's forums. Cant help but to say again that the stuff on your site is incredible. |
|
|
|
![]() |
|
||||||
| Thread Tools | Search this Thread |
| Display Modes | |
|
|