I recently wrote a computer program that draws the mandelbrot set. It uses .map files as color information, and I included some of the .map files from G-Force. Now I need the names of the people who wrote the .map files so that I won't go to jail for plagarisim when I distribute the program. The files are:
A Distant Fire
Blood Drain
Blue Volcano
China
Cool-Aid
Copper
Dark Corona
Dark Obsession
Eggplant on the Vine
Escape Velocity
Fire in the Sky
Friday Morning (No Coffee)
Liquid Gold
Metal Blood
Oasis
Slate
Sunset on the Lake
Sunspot
Sunspot (Blue Heat)
USA
Also, If you made one of the colormaps on this list and you don't want me to use it, just say so.
legal question
Moderators: BTT, andy55, b.dwall, juxtiphi
The EULA from the G-Force installer says
so I guess I just have to get permission from the SoundSpectrum people.All user-contributed Software configuration files (being files in a text-based language that the Software is designed to interpret, hereafter being referred to as the “Configs�) are considered the sole ownership of Licensor upon submission to the Licensor for inclusion into the Software. By submitting Configs, You become a “Contributor� and are agreeing to their ownership and use by Licensor, including unlimited distribution and/or licensing (as part of the Software) without permission or compensation. Any Configs submitted to Licensor (by email or other form) will be considered a "work made for hire" under the United States Copyright Act.
If you wrote a program to display fractals you must understand the math. I haven't much of a clue. I have a book written by Mandelbrot and was trying to plug his equations (with credit given) into some flowfields. They don't look too good. I tried using the template from the extras page but I don't know what to plug in. I looked at the wallpaper flowfields but, oh my, they are complicated!
I did come up with some sort of repetitive flowfield on my own. I was trying to apply that to the Mandelbrot equations. I did figure out that the 1st equations used determine the repetition. So I have a couple but they look alot like the my original repetition flowfields.
I've been trying to use this math:
A0="1/log(sqrt(7))"
D0="(1-Log(X))*A0"
D1="(1-Log(Y))*A0"
But the result is always in the upper right quadrant of the screen. I can't move it down or spread it out. Do you have any tips on how to use something like this in a flowfield?
I am trying to finish up what I have and submit it this week.
I did come up with some sort of repetitive flowfield on my own. I was trying to apply that to the Mandelbrot equations. I did figure out that the 1st equations used determine the repetition. So I have a couple but they look alot like the my original repetition flowfields.
I've been trying to use this math:
A0="1/log(sqrt(7))"
D0="(1-Log(X))*A0"
D1="(1-Log(Y))*A0"
But the result is always in the upper right quadrant of the screen. I can't move it down or spread it out. Do you have any tips on how to use something like this in a flowfield?
I am trying to finish up what I have and submit it this week.
- keycompton
- Site Admin
- Posts: 104
- Joined: Thu Aug 12, 2004 11:09 am
Hi. This is Key from SoundSpectrum. Thanks for your posting. We do prefer if people contact us directly rather than using the Forum to communicate with us, since it is much more efficient and manageable for us. You are correct that SoundSpectrum needs to grant permission for using any configs or visual images, since our licenses are strictly for personal use. We'd be happy to follow up with you. Please email us at "support @ soundspectrum.com" so that we can correspond directly with you.
try usingchkman wrote: I've been trying to use this math:
A0="1/log(sqrt(7))"
D0="(1-Log(X))*A0"
D1="(1-Log(Y))*A0"
But the result is always in the upper right quadrant of the screen. I can't move it down or spread it out. Do you have any tips on how to use something like this in a flowfield?
Code: Select all
A0="1/log(sqrt(7))"
D0="x/2 + .5"
D1="y/2 + .5"
D2="(1-Log(D0))*A0"
D3="(1-Log(D1))*A0"
