Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms (1)

38
votes
15answers
2k views

Code golf: the Mandelbrot set

Usual rules for the code golf. Here is an implementation in python as an example from PIL import Image im = Image.new("RGB", (300,300)) for i in xrange(300): print "i = ",i for j in ...
20
votes
6answers
1k views

Practical Uses of Fractals in Programming

Fractals have always been a bit of a mystery for me. What practical uses (beyond rendering to beautiful images) are there for fractals in the various programming problem domains? And please, don't ...
13
votes
4answers
4k 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 justice. The ...
10
votes
11answers
10k 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 language doesn't ...
9
votes
8answers
2k 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 a data set that will ...
8
votes
1answer
256 views

Why is my dragon fractal incomplete [closed]

I have translated the code from javascript to c# which can be found by going to this excellent demo at http://fractal.qfox.nl/dragon.js My translation is intended to produce just a single dragon ...
7
votes
4answers
478 views

Buddhabrot Fractal

I am trying to implement buddhabrot fractal. I can't understand one thing: all implementations I inspected pick random points on the image to calculate the path of the particle escaping. Why do they ...
6
votes
5answers
940 views

Drawing Flame Fractals

I am looking for information on how to draw flame fractals from googling around I could not find much, either pages explain how to use third party tools or way too complicated for me to grasp. Anyone ...
6
votes
3answers
405 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 of files. (this is to ...
6
votes
8answers
2k 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 Mapper. Needless to ...
5
votes
6answers
716 views

Building a right angled triangle with recursion

I have this homework which required to print asterick to make draw a triangle. When drawTriangle(0); * When drawTriangle(1); * ** When drawTriangle(2); * ** * * **** when ...
5
votes
1answer
133 views

What might be the best method of storing Mandelbrot values in a database?

I'm currently experimenting with rendering a Mandelbrot set and I've quickly come to realize that it would be useful to not have to recalculate the maximum iteration count for each rendering...on the ...
5
votes
4answers
483 views

Are there any simple programs for 3D fractal visualization?

Preferably with a source code, but algorithm description would be enough.
5
votes
5answers
944 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 let someone else post ...
4
votes
1answer
89 views

Generating an entertaining blinking pattern for a 1D LED arrangement [closed]

I want to actuate a hardware featuring a set of 16 LEDs, arranged in a square: X X X X X X X X X X X X X X X X While I can solve ...
4
votes
4answers
268 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; yStep = (maxY - ...
3
votes
1answer
323 views

How do I create tileable solid noise?

Hey guys, I'm trying to figure out how to generate tileable fractals in code (for game maps, but that's irrelevant) I've been trying to modify the Solid Noise plug-in shipped with GIMP (with my ...
3
votes
3answers
488 views

Continuous coloring of fractal

I'm trying to visualize Mandelbrot set with OpenGL and have found very strange behaviour when it comes to smooth coloring. Let's assume, for the current complex valueC, algorithm have escaped after n ...
3
votes
1answer
665 views

Coding self similar fractals in computer graphics using C

Can anyone help me with the programming code for self similar fractals in computer graphics using c language?
2
votes
2answers
52 views

Plotting Complex Numbers in Python?

For a math fair project I want to make a program that will generate a Julia set fractal. To do this i need to plot complex numbers on a graph. Does anyone know how to do this? Remember I am using ...
2
votes
2answers
50 views

Updating large data matrix thread-safely: now using millions of mutexes?

I was revisting some code I wrote a long time ago, and decided to rewrite it to better make use of threads (and better use of programming in general..). It is located here: ...
2
votes
6answers
140 views

Function with varying number of For Loops (python)

My problem is difficult to explain. I want to create a function that contains nested for loops, the amount of which is proportional to an argument passed to the function. Here's a hypothetical ...
2
votes
1answer
141 views

On-the-fly Terrain Generation Based on An Existing Terrain

This question is very similar to that posed here. My problem is that I have a map, something like this: This map is made using 2D Perlin noise, and then running through the created heightmap ...
2
votes
2answers
231 views

How to make a color progression out of a color palette

My goal with this algorithm I'm working on is to output a color progression out of some provided colors. By color progression I mean creating the "fade" effect between two colors (color A, color B) ...
2
votes
2answers
164 views

Estimate a Fractal dimension of 2d image

I want to estimate a value of Fractal dimension for some part of 2d image (photo). How can I calculate estimation of this value, e.g. for 15x15 pixel subimage with rgb colors? Thanks.
2
votes
1answer
339 views

Fractals explained

For a while now I've been interested in fractals, the math behind them and the visuals they can produce. I just can't really figure out how to map the mathematical formula to a piece of code that ...
2
votes
1answer
229 views

Genetic Programming with the Mandelbrot Set

I'm reading a chapter in this fascinating book about using genetic programming to interactively evolve images. Most of the function set is comprised of simple arithmetic and trig functions (which ...
2
votes
1answer
612 views

How to render Mandelbulb-style 3D fractals

I'm interested in experimenting with equations for 3D fractals (a la Mandelbulb). Does anyone know of a framework that will allow me to supply a 3-coordinate, Mandelbrot-style function, identifying a ...
2
votes
4answers
579 views

improving drawing pythagoras tree

I have written program for drawing pythagoras tree fractal. Can anybody see any way of improving it ? Now it is 89 LOC. import java.awt.*; import java.util.Scanner; import javax.swing.*; public ...
2
votes
2answers
928 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've taken a look at ...
2
votes
6answers
2k views

Fractal Encryption

I've heard that one can encrypt data using drawings of the Mandlebrot set, and that this encryption algorithm is quantum-safe (can't be broken with a quantum computer, unlike many commonly-used ...
1
vote
0answers
99 views

Opengl ES 2.0, FBOs, and Fragment Shaders

Here's my render loop: Bind a custom FBO Bind a texture (previously associated with the FBO as COLOR_ATTACHMENT0) Render using a custom fragment shader which chooses fragment colors on the basis of ...
1
vote
1answer
71 views

Creating seamless worldmaps with Fractal Brownian Motion

I'm creating heightmaps using Fractal Brownian Motion. I'm then coloring it based on the heights and mapping it to a sphere. My problem is that the heightmap doesn't wrap seamlessly. I've used the ...
1
vote
1answer
55 views

How can i represent a number with greater precision than float using only floats and/or integers

I've written a MandelBrot shader based on this: http://blogs.msdn.com/b/shawnhar/archive/2006/12/11/sixty-fractals-per-second.aspx float4 PixelShader(float2 texCoord : TEXCOORD0) : COLOR0 { ...
1
vote
2answers
98 views

Julia Set In Javascript

I'm messing around with some Mandlebrot set stuff because I think the pictures it produces are pretty. I thought I might try to tackle the problem of drawing one in javascript to see what I could do. ...
1
vote
0answers
82 views

Applications of strange attractors & fractals AND project ideas?

I was searching for projects I need to do for a couple of courses - parallel algos and high performance computing - in my grad school and I came across Strange Attractors and Fractals. I was thinking ...
1
vote
1answer
80 views

Coordinate System of Flame Fractals

I have been doing some research on flame fractals in preparation of creating my own flame fractal generator. I just have one question: What coordinate system is used in the flame fractal algorithm? ...
1
vote
2answers
246 views

Midpoint Displacement Terrain Artifacts

I am trying to implement the midpoint displacement algorithm in Java. It's also called the diamond square algorithm. My reference is http://www.lighthouse3d.com/opengl/terrain/index.php3?mpd. It seems ...
1
vote
2answers
135 views

Graphic library for plot/drow fractal on Java

I'm looking for a graphic library that allow me to plot a pixel point in a specific color with the purpose of draw a fractal (mandelbrot set). I've read the basic math behind fractal and I understand ...
1
vote
2answers
141 views

F# Fractal - a bug I can't figure out

I'm trying to make an example I've found on the net work. It's a 3D fractal in F#. Here it is: http://tomasp.net/blog/infinite-cheese.aspx. The source code is available for download at the end of the ...
1
vote
2answers
231 views

Open-source replacement of Intel Image Processing library

Is there any open-source library to replace proprietary Intel Image Processing Library? At first I need to do image loading-saving, filtering (3x3,5x5 and so) with arbitrary kernel. Support of ...
1
vote
1answer
107 views

fractal microscope simulator

I've done work on software used for controlling imaging hardware, such as microscopes, that are sometimes hard to get time on. This means it is difficult to test out new/different algorithms which ...
1
vote
4answers
153 views

Building and animating fractals

Can anyone recommend any software/books required to learn and build fractal patterns? I want to also be able to animate the fractal patterns too. Like something off of winamp.
1
vote
1answer
274 views

Sierpinski triangle AS3 problem

I am trying to write sierpinski triangle on AS3 ,but it looks like i am missing something.I am stuck in this lines of code and trying to solve what is the problem.I made the calculations but it seems ...
1
vote
2answers
272 views

PHP GD snowflake fractal

How can you make a Koch Snowflake Fractal using php gd so that it comes out like this... Is it possible? Is there another resource I can use?
1
vote
1answer
337 views

Generating random tree branch

I want to generate (an image of) a single branch of a tree (the "woody plant" kind). Maybe similar to this branch, or this one. I need it to be interesting but simple, so just one branch, with a few ...
1
vote
1answer
496 views

Fractal terrain generation problem

I'm trying to get a simple 1D fractal terrain generator to work for a 2D game. But for some reason it always either makes a hill, a valley, or a flat line, as seen in this output of the segments (x1, ...
1
vote
3answers
697 views

Fractal based Image compression algorithm (and source code)

I am looking for a decent fractal based compression algorithm for images. So far I only find dead links to the FIF image format and dead links pointing to Iterated Systems Inc which then became ...
1
vote
2answers
1k views

How to model rules for generating geometric patterns?

For my problem it would be best to find a numeric representation of kazakh national ornaments for generating new ones. But other approaches are also fine. The ornaments essentially consist of ...

1 2