August 18th, 2008 |
dung |
91 views |
I was inspired by A New Kind of Science by Stephen Wolfram. It is quite an interesting concept. Thanks to freeskier89 for the help.
August 18th, 2008 |
dung |
124 views |
This application will generate Koch’s curve. It uses a base-motif algorithm where points are stored in an array and then on the next iteration they are pulled from the array and then new points are calculated with some basic trigonometry.
My inspiration...
August 18th, 2008 |
dung |
80 views |
This is the first thing I have made in flash 8 :D. It performs 1000 iterations per frame. This is a LOT faster than previous versions of flash
This triangle is generated by defining 3 points for each of the vertices for the triangle. From there a game...
August 18th, 2008 |
dung |
156 views |
You may have to reset it a few times before you see something that looks like a typical strange attractor.
This is a quite interesting strange attractor. It is probably the easiest method of generating a strange attractor like figure for it uses the simple...
August 18th, 2008 |
dung |
84 views |
This application slowly generates the Dragon Curve aka the Jurassic Park Fractal.
August 18th, 2008 |
dung |
118 views |
This is a quick thing I made in flash 8 that was inspired by the book Chaos and Fractals” produced by the American Mathematical Society. It is a relatively simple process.
t=.4-6/(1+x2*x2+y2*y2);
x1=.97+.9*(x2*Math.cos(t)-y2*Math.sin(t));
y1=.9*(x2*Math.sin(t)+y2*Math.cos(t));
y2=y1;<br...