Top "Fractals" questions

Fractals are interesting mathematical objects with a special behaviour in a complex-plane [Re, Im], depending on their initial position ( location ). Visualised in popular media, typically as shapes with infinite dimensionality that exhibit a sort of self-similarity.

How to program a fractal?

I do not have any experience with programming fractals. Of course I've seen the famous Mandelbrot images and such. Can …

theory fractals
Tkinter create image function error (pyimage1 does not exist)

I'm a student from the outside world with no previous programming experience. I have been learning Python as an extension …

canvas tkinter python-3.3 fractals
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 …

algorithm colors fractals mandelbrot
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 …

python recursion for-loop nested fractals
Drawing a fractal tree in Python, not sure how to proceed

I have this so far in python import turtle import math t = turtle.Turtle() t.shape("turtle") t.lt(90) lv = 11 …

python turtle-graphics fractals
Improvement to my Mandelbrot set code

I have the following Mandelbrot set code in C. I am doing the calculation and creating a .ppm file for …

c colors set fractals mandelbrot
In need of Fractional Brownian Noise (FBM) vs Perlin Noise clarification

I'm researching the various types of noise for terrain generation and I'm a little confused regarding when noise becomes perlin …

graphics noise terrain fractals perlin-noise
Fractal Encryption

I've heard that one can encrypt data using drawings of the Mandlebrot set, and that this encryption algorithm is quantum-safe (…

algorithm encryption fractals
Python fractal box count - fractal dimension

I have some images for which I want to calculate the Minkowski/box count dimension to determine the fractal characteristics …

python numpy image-processing fractals
Drawing a fractal tree in Python

I am trying to draw a fractal tree in Python, which has 3 branches. I know how to draw a tree …

python turtle-graphics fractals