0
votes
2answers
73 views
Fractal image scaling with Python
I am in a position where relatively low resolution images are provided (via an API, higher resolution images are not available) and high resolution images need to be generated.
I' …
0
votes
4answers
172 views
Trying to make sierpinski triangle generator in a functional programming style
I have a function in Scala, and the same function in JavaScript, but I don't think it is in a functional style.
def drawSurroundingTriangles(startx : Double, starty : Double, widt …
4
votes
4answers
114 views
Are there any simple programs for 3D fractal visualization?
Preferably with a source code, but algorithm description would be enough.
7
votes
7answers
744 views
Calculate the Hilbert value of a point for use in a Hilbert R-Tree?
I have an application where a Hilbert R-Tree (wikipedia) (citeseer) would seem to be an appropriate data structure. Specifically, it requires reasonably fast spatial queries over …
6
votes
9answers
936 views
How to program a fractal?
I'm do not have any experience with programming fractals. Offcours i've seen the famous Mandelbrot images and such.
Can you provide me with simple algorithms for fractals.
The l …
4
votes
7answers
565 views
Open-source fractal maps
I'm interested in creating a game that uses fractal maps for more realistic geography. However, the only fractal map programs I have found are Windows-only, for example Fractal Map …
7
votes
4answers
677 views
Smooth spectrum for Mandelbrot Set rendering
I'm currently writing a program to generate really enormous (65536x65536 pixels and above) Mandelbrot images, and I'd like to devise a spectrum and coloring scheme that does them j …
1
vote
10answers
356 views
Programming Fractals
Would learning to program fractals help think clearly about certain set of programming problems?
5
votes
3answers
165 views
Pseudorandom directory tree generation?
I'm trying to write a program which will pseudorandomly autogenerate (based on a seed value so I can re-run the same test more than once) a growing directory structure consisting o …
4
votes
4answers
520 views
How to generate a Mandelbrot with T-SQL?
Learning a little about T-SQL, and thought an interesting exercise would be to generate a Mandelbrot set with it.
Turns out someone already has (and recently, it appears). I'll l …
0
votes
4answers
288 views
What is a fractal? [closed]
Duplicate of How to program a fractal
What are fractals?
Is this is one of the concepts that is brought over from Mathematics to programming to simplify or solve a particular …
4
votes
4answers
199 views
Why does this produce a stretched Fractal?
Here is pseudo-code of how I setup an array representing the MandelBrot set, yet it becomes horribly stretched when leaving an aspect ratio of 1:1.
xStep = (maxX - minX) / width;
…
