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.
I do not have any experience with programming fractals. Of course I've seen the famous Mandelbrot images and such. Can …
theory fractalsI'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 fractalsI'm currently writing a program to generate really enormous (65536x65536 pixels and above) Mandelbrot images, and I'd like to devise …
algorithm colors fractals mandelbrotI have this so far in python import turtle import math t = turtle.Turtle() t.shape("turtle") t.lt(90) lv = 11 …
python turtle-graphics fractalsI have the following Mandelbrot set code in C. I am doing the calculation and creating a .ppm file for …
c colors set fractals mandelbrotI'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-noiseI've heard that one can encrypt data using drawings of the Mandlebrot set, and that this encryption algorithm is quantum-safe (…
algorithm encryption fractalsI have some images for which I want to calculate the Minkowski/box count dimension to determine the fractal characteristics …
python numpy image-processing fractalsI am trying to draw a fractal tree in Python, which has 3 branches. I know how to draw a tree …
python turtle-graphics fractals