VBcoders Browse New Submit Contact Sign In

No account? Register free

Forgot password?

Fractal Viewer

Theo Kandiliotis  (5 Submissions)   Complete Applications   Visual Basic 3.0   Unknown Difficulty   Wed 3rd February 2021

A simple fractal viewer.It plots the Mandelbrot Set at the desired size.
All you need to do is open a blank form and paste the code in the editor.

Inputs
none,but you can play around with some of the constants and variables on the code in order to produce different variations of the fractal.

Assumes
the Mandelbrot Set is generated by iterating the function Zn=Zn-1^2 + C where Zn,Zn-1,C are complex numbers.

Returns
the dazzling Mandelbrot Set,the most famous fractal.

API Declarations
Private Declare Function SetPixel Lib "gdi32" (ByVal hdc As Long, ByVal X As Long, ByVal Y As Long, ByVal crColor As Long) As Long
Private Plotting As Boolean

Rate Fractal Viewer (3(3 Vote))
Fractal Viewer.bas

Fractal Viewer Comments

No comments yet — be the first to post one!

Post a Comment

0/1000 characters