Author Topic: A Beatiful World ,Under You Control!  (Read 10168 times)

0 Members and 1 Guest are viewing this topic.

highflyingbird

  • Bull Frog
  • Posts: 415
  • Later equals never.
A Beatiful World ,Under You Control!
« on: July 21, 2007, 05:23:17 AM »
The fractal is beautiful and interesting.The DCL of ACAD can't express my image,so I use OpenDCL to draw "my" fractal.Here are the source code and some screen shots.
« Last Edit: July 21, 2007, 05:57:16 AM by highflybird »
I am a bilingualist,Chinese and Chinglish.

highflyingbird

  • Bull Frog
  • Posts: 415
  • Later equals never.
Re: A beatiful World ,Under You Control!
« Reply #1 on: July 21, 2007, 05:47:50 AM »
in the PictureBox ,You can Zoom by window,Zoom in, Zoom out, and use shortcut key.for example,"+" Zoom in
"PageUp" ,the previous image.
if you press Accept button ,then will draw a fractal in DWG.
It may be  take a long time to draw this fractal ,so you may be patient.
I am a bilingualist,Chinese and Chinglish.

M-dub

  • Guest
Re: A Beatiful World ,Under You Control!
« Reply #2 on: July 21, 2007, 08:22:43 AM »
Cool :)
What would the file size of one of these fractals be in dwg format?

MP

  • Seagull
  • Posts: 17750
  • Have thousands of dwgs to process? Contact me.
Re: A Beatiful World ,Under You Control!
« Reply #3 on: July 21, 2007, 09:48:39 AM »
Wow!
Engineering Technologist • CAD Automation Practitioner
Automation ▸ Design ▸ Drafting ▸ Document Control ▸ Client
cadanalyst@gmail.comhttp://cadanalyst.slack.comhttp://linkedin.com/in/cadanalyst

Arizona

  • Guest
Re: A Beatiful World ,Under You Control!
« Reply #4 on: July 21, 2007, 01:27:39 PM »
Those are beautiful!

highflyingbird

  • Bull Frog
  • Posts: 415
  • Later equals never.
Re: A Beatiful World ,Under You Control!
« Reply #5 on: July 23, 2007, 05:22:14 AM »
Cool :)
What would the file size of one of these fractals be in dwg format?

Resolution 1024X1024,  may be  10M or so. heihei --It's huge?
I am a bilingualist,Chinese and Chinglish.

CAB

  • Global Moderator
  • Seagull
  • Posts: 10401
Re: A Beatiful World ,Under You Control!
« Reply #6 on: July 26, 2007, 09:25:27 AM »
Just looking at them puts a smile on my face. 8-)
I've reached the age where the happy hour is a nap. (°¿°)
Windows 10 core i7 4790k 4Ghz 32GB GTX 970
Please support this web site.

M-dub

  • Guest
Re: A Beatiful World ,Under You Control!
« Reply #7 on: July 26, 2007, 09:29:37 AM »
Just looking at them puts a smile on my face. 8-)

Now, look at your hands... Far Out!   :mrgreen: 8-) :grazy:

Dinosaur

  • Guest
Re: A Beatiful World ,Under You Control!
« Reply #8 on: July 31, 2007, 11:34:17 PM »
I started playing with fractals on my old 386sx back in 1991.  My 256k vga video card limited me quite a bit but it was still fun and I think I still have a stack of floppies somewhere with some of my favorites I generated with some little dos application I found.  I just started playing again with your app and now I think my disk may start filling up again.  Thanks for sharing.

tlindell

  • Guest
Re: A Beatiful World ,Under You Control!
« Reply #9 on: August 04, 2007, 09:53:18 AM »
I could never have thought this sort of thing was possible with LSP.  Pure genius!  Could you explain a little some of the basic concepts you used to put it together?

highflyingbird

  • Bull Frog
  • Posts: 415
  • Later equals never.
Re: A Beatiful World ,Under You Control!
« Reply #10 on: August 06, 2007, 02:35:28 AM »
I could never have thought this sort of thing was possible with LSP.  Pure genius!  Could you explain a little some of the basic concepts you used to put it together?
How to create a beautiful fractal with LSP.

I am afraid that I can’t explain the concepts clearly because of my poor English.
Now let me explain If you don’t mind these:
1. The first step is to get the knowledge of Fractal and Iterated function system.
The Mandelbrot set and Julia set is a complex iterated function system.
These are defined by a recurrence relation at each point in a space (such as the complex plane).
The iterated rule is :
z→z^2+c
z=x+iy,c=c_( X)+ic_(Y),
x→x^2-y^2+c_(X),
y→2xy+c_(Y).
in my code, reZ -> real part of complex, imZ ->image part of complex, (reZ imZ) is a point .It can be mapped to a pixel of Imagebox.
2. The second step is to know how to render the pixel by color ,and how to convert the color system each other .It is different between the color system of AutoCAD and OpenDCL.
The Hue value ,Saturation value ,Lightness ,Red value ,Green value ,Blue value is followed the change of Iterated times.
3. The third step is to know how to map a point (a complex ) to a pixel of ImageBox. It is different between the Coordinate system of AutoCAD and OpenDCL (or DCL).Oh !It’s hard to say .Open my source code , you would understand the basic ways and means.

At the early time ,I finished the similar work by DCL, DCL only display 256 colors, OpenDCLcan display True color—that is my want.
Would someone who understood me correct my English?:-)
Here is a routine by DCL , But it is Chinese .

Here is a Nowton Factal screen shot.

« Last Edit: August 06, 2007, 03:17:42 AM by highflybird »
I am a bilingualist,Chinese and Chinglish.

Arizona

  • Guest
Re: A Beatiful World ,Under You Control!
« Reply #11 on: August 06, 2007, 06:19:45 AM »
Your English was great and so was the explanation!

Thanks, you do beautiful work!

tlindell

  • Guest
Re: A Beatiful World ,Under You Control!
« Reply #12 on: August 06, 2007, 11:59:03 PM »
Yes, thank you.  Your English was great.  Although I'll need to learn more about fractal equations, I think I see some of the basic concepts here.  Thanks again for showing us some more goodies!