Skip to main content
Filter by
Sorted by
Tagged with
2 votes
1 answer
86 views

I am working on a mandelbrot renderer to generate zoom videos, it is working pretty well but I am now trying to make it faster. What I want to implement is a tile based rendering: I split the image ...
Loïc Pottier's user avatar
0 votes
0 answers
92 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
131 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
102 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
105 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
  • 312
2 votes
0 answers
130 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
95 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
55 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
109 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
145 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
692 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
242 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
93 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
0 votes
2 answers
496 views

Symmetric Pythagorean Tree My code isn't able to produce a symmetric pythagorean tree as shown above. from turtle import * from math import sin, cos def main(): t = Turtle() # Initiate turtle to ...
RE2XX's user avatar
  • 1
2 votes
1 answer
435 views

Searching the web I couldn't find any example on how to use a bitmap (a raster image) as orbit trap to color a Julia set or Mandelbrot set. Here Inigo Quilez is explaining the method he uses in only ...
petem's user avatar
  • 820
0 votes
0 answers
66 views

I am trying to generate a "Crab Curve" (as shown in this link) by using the following recursive C function /* x1: x-coordinate of first point y1: y-coordinate of first point x2: x-coordinate ...
aheuchamps's user avatar
0 votes
1 answer
274 views

Most of the literature gives the method of estimating fractal dimension for grayscale images using differential box couting methods. But they considered only 8 bit images which has 256 gray levels. ...
tu6703's user avatar
  • 1
0 votes
1 answer
65 views

I am trying to visualize the Mandelbrot set using UnityEngine and C#. What I have right now does not look completely wrong but also not right. The Circular shapes for example are very blurred out. Why ...
Cake's user avatar
  • 198
2 votes
3 answers
274 views

I have implemented the Newton fractal in C. I was wondering if anyone knows how I can improve the efficiency of the code without using threads or multiple processes. I have tried unrolling the while ...
mehdi mirzaie's user avatar
0 votes
0 answers
136 views

I am trying to create a beautiful render of the Buddhabrot fractal with a mathematical background and I want to make it faster and more importantly, prettier. I have a script (buddhabrot_functions) ...
user555076's user avatar
0 votes
1 answer
148 views

I am trying to figure out a way to draw this: but somehow I cant do this. I realize that the image is the same it's just 4 times in the right place. Here is the code that I have so far, can somebody ...
GratefullyDead's user avatar
0 votes
1 answer
126 views

I'm trying to convert Python -> CL for a program that calculates x,y color values for the Mandelbrot set. The python version takes about 1.2 seconds to complete. I tried using the CL cookbook for ...
Unsatisfied Zebra's user avatar
0 votes
1 answer
396 views

I have some images for which I want to calculate the Mass-Radius dimension to determine the fractal characteristics in the image. Here is one of them : Ottawa.png: The mass dimension defines the ...
Jotadiolyne Dicci's user avatar
1 vote
1 answer
134 views

I want to draw a Koch curve in Julia without recursion. My strategy is to divide the given line into three segments using the segPoints function: function seg_points(startPoint, endPoint, n=3) ...
Milo's user avatar
  • 31
1 vote
1 answer
204 views

I'm currently coding a Mandelbrot set using matplotlib with a zoom function to infinitely zoom in on any section of it, however when I zoom in the new data that's calculated is off-center from the ...
meable's user avatar
  • 118
1 vote
1 answer
222 views

im making a python program to take an image and determine the fractal dimension with different grid sizes for the box counting. i had previously had it working and it got deleted and i cant remember ...
meak's user avatar
  • 13
0 votes
0 answers
46 views

I'm still a student in C. I need to do a practical task for this semester but I can't. I've tried everything, but it doesn't seems to work. What I need to do is to create a fractal which is a figure ...
Arthur Araújo Rabelo's user avatar
0 votes
2 answers
3k views

I'm currently doing a project where I need to create Koch's Snowflake. I decided to use turtle for this assignment. The user can enter an "order" which determineres the amount of sides the ...
chrisleeming's user avatar
2 votes
0 answers
375 views

I have a task to compute fractal dimensions of a given image (of a fractal). Specifically, I want to compute the dimension of information and the dimension of correlation (Grassberger, 1983; ...
ExhaustedCProgrammer's user avatar
1 vote
2 answers
329 views

I've tried to do a star fractal drawing a star using tkinter and putting an image as a background. from tkinter import * from PIL import ImageTk, Image import tkinter as tk app = Tk() app.title(&...
asteia apo seires's user avatar
0 votes
1 answer
420 views

I know how to render a beautiful Mandelbulb with ray-tracing, as this one. But how to get a beautiful Mandelbulb as a 3D mesh? The Mandelbulb can be constructed as an isosurface, and I tried to do ...
Stéphane Laurent's user avatar
1 vote
2 answers
198 views

I am new to ImageJ software. I want to extract the boundary of the lake which I am analyzing. I am outlining the method that I saw in a article. The author says: " As an example we take the ...
ofenerci's user avatar
  • 181
0 votes
1 answer
63 views

I need to create a Sierpinksi Triangle using 0L-System with Python. See here: enter image description here I'm stuck here, I can't complete the triangle. My code: from turtle import * def sierpinksi(...
Tom Riddle's user avatar
4 votes
1 answer
304 views

I'm writing a program that plots the Mandelbrot set in C. I've been able to display it and it looks fine however when I lower the number of iterations I get this effect that generates what I can only ...
Gabriel's user avatar
  • 75
3 votes
0 answers
308 views

I'm doing the Mandelbrot set in c as a school project. This is my code: int mandelbrot(int x, int y, t_data *data) { double complex c; double complex z; double cx; double ...
Bradass_FaLLaG's user avatar
-2 votes
1 answer
281 views

This is my current code which is currently creating two images instead of zooming in. How would I change the code to create on fractal that zooms in its self? Thank you so much! import numpy as np ...
Olivia 's user avatar
0 votes
1 answer
472 views

I am trying to generate a lattice of points in the shape of a Menger sponge or Sierpinski sponge. https://en.wikipedia.org/wiki/Menger_sponge This link details how the shape is mathematically ...
please_help_me's user avatar
0 votes
1 answer
139 views

Im trying to make a program that plots different julia sets and am first trying to plot the mandelbrot set. However, when i try to plot something on the tkinter canvas nothing shows up. I've also ...
Fadi Touza's user avatar
0 votes
0 answers
91 views

I wrote a very basic, poorly optimized fractal generator. However, it has one major flaw: the iterating function diverges() that is used to verify whether a complex number is in the Mandelbrot set or ...
Mael's user avatar
  • 1
0 votes
0 answers
63 views

I am not well versed in MATLAB however I need to use it to complete a project, I need to write a code which creates a big polygon and "n" small polygons , where "n" is the number ...
Bhairav's user avatar
1 vote
0 answers
196 views

I'm trying to code the Mandelbrot set as a fun project. I did it on my own, so it probably isn't optimized very well. I have a few questions about how to make my code better and how to add certain ...
Eli Bauer's user avatar
-1 votes
1 answer
256 views

I am using an algorithm to measure fractal dimention (https://francescoturci.net/2016/03/31/box-counting-in-numpy/) or box counting method over 3 images: 1 2 3 My adapted code is: ` #importing ...
Daniel Molina's user avatar
1 vote
1 answer
330 views

I will give some context to the function that I wrote: getFractalPointHeight() is a function that is supposed to return the height of the fractal noise based on the coordinates of a Perlin noise image ...
Gabriel's user avatar
  • 75
1 vote
1 answer
469 views

https://github.com/bananaboy139/fractal/tree/OpenGL-shader https://github.com/bananaboy139/fractal/blob/OpenGL-shader/images/2.png?raw=true this is the original image I made with zig. https://github....
Bananaboy's user avatar
1 vote
1 answer
297 views

I recently created a program to explore Mandelbrot's fractal and after calculated the image I drew it but in a weird way. How can I paint it in clean way? The only way I found is to override the paint ...
Joshua's user avatar
  • 61
0 votes
1 answer
251 views

I am making an application in WPF C# that generates fractals. I am using this code that someone made to create a OpenCL kernel and run it in C#: https://www.codeproject.com/Articles/1116907/How-to-Use-...
ProgramPhantom's user avatar
0 votes
0 answers
90 views

Question Suppose one has 3 random coordinates with 3 random functions that describe the continuous lines between them*, how would one create a vector plot in Python that allows for smooth lines after ...
a.t.'s user avatar
  • 2,917

1
2 3 4 5
12