Skip to main content
0 votes
0 answers
70 views

I recently wrote a program which renders the mandelbrot set and encountered some irrelevent issues, which some helpful users solved for me. One user reccommended I change an aspect of my code for ...
Jessica's user avatar
  • 41
3 votes
2 answers
129 views

I am trying to make a python program that can render the mandelbrot set. My full program can output an image of the set, but for some reason, it displays it cut up into opposite facing quarters. This ...
Jessica's user avatar
  • 41
2 votes
1 answer
101 views

I wrote some code to render the Mandelbrot set with continuous coloring, but the bulbs on the period-2 blub are not colored correctly. regions that should not escape are colored as though the escape ...
Apostla's user avatar
  • 127
3 votes
1 answer
99 views

I was working on a Mandelbrot set at first, then added a Julia set to the same window. The problem is I don't know the formula for my exact situation. Also, the Julia set slid to the bottom-left side. ...
NeKon's user avatar
  • 314
2 votes
0 answers
121 views

I am trying to find the eigenvectors and eigenvalues for very large square symmetric matrices. They are Laplacian matrices on the vicsek fractal. The matrices are in the scale of (5n ⋅ 4 + 1) where i ...
ThatWeirdGuyChris's user avatar
2 votes
1 answer
94 views

I am currently reading the book "The Fractal Geometry of Nature" by Benoit Mandelbrot. I tried to write a program to visualize some of the curves found in the book by using L-system ...
FloG's user avatar
  • 25
3 votes
0 answers
53 views

Note: I am not 100% sure if this question belongs here, as I dont know if the error is in the programming or in the math, please excuse me and direct me to where to post it Hi, I am trying to make an ...
Daniel Cruz's user avatar
  • 2,429
-1 votes
1 answer
92 views

I want to create a function to get absolute id of fractal subobject by layer/row and column id. In an fractal object there are repeating subobjects, you can split them into layers. Any object with ...
koji0285's user avatar
1 vote
0 answers
107 views

While implementing the mandelbrot set using java, I found that the rendering time of the program is ridiculously slower than other programs. public class FractalFormula { private Complex[] ...
noen's user avatar
  • 61
0 votes
0 answers
135 views

I have a function, that draws a koch snowflake, but i have to change it to draw a randomized koch snowflake, that means: To obtain it, it is sufficient to rotate the new vertex inward or outward at ...
Roman Soroka's user avatar
-1 votes
1 answer
1k views

I am wondering about performance in Raylib, especially using the DrawTexture and NewImageFromImage functions. I have the code below, it's written in Go so I am using the go-bindings found here : https:...
Hultan's user avatar
  • 125
5 votes
5 answers
672 views

Ive written a function which uses turtle to draw a Mandelbrot set, however its very slow (~10's minutes) for any decent resolution, how could I make my code more efficient? import math, turtle screen ...
Kris's user avatar
  • 51
1 vote
1 answer
71 views

At the moment, I'm working on a fractal renderer for stuff like the Mandelbrot set for my computer science coursework, and I want to use recursion instead of iteration on the function below since it ...
Cavaloncoker's user avatar
2 votes
1 answer
237 views

I've been trying to create a simple fractal tree program using P5.js, for displaying on a website, but I seem to be getting unexpected behavior. Code and picture attached. function setup() { ...
Yonahel's user avatar
  • 23
3 votes
0 answers
89 views

I'm a newbie in coding and I have been playing with Fractal tree and OOP from the Coding Train videos. The tree is generated as object trunks with its child branches in constructor function. class ...
Leonardo's user avatar

15 30 50 per page
1
2 3 4 5
37