My First Project

Hi guys, I’m new to Snap! and just joined today. My first project is a mandelbrot set!

Very nice for a brand new user! It is pretty slow, but eh, what can you do.

Welcome to Snap! Nice project!

Little improvement you could make: If someone wants to render it at a bigger res, by changing stage size:
Animation

Then.. This would happen:
Animation

You can solve this by using the [costume # V] of [ V] block:

(BTW, if you’re wondering how I got that picture, you can right click a block/blocks and then “script pic…” to save a PNG of that script.)

And boom!
Animation

Hope you have a great Snap! experience :~)

Hi, welcome to Snap!!

I think people worry about speed too much; it’s great that the project works at all. :~) But if it worries you, one easy thing you could do would be to take advantage of the symmetry around the X axis and either use another sprite to draw the same calculated values up from the bottom or after drawing the top half just stamp
untitled script pic (10)
onto the bottom half of the stage. (I think… I haven’t actually tried this.)

Welcome to snap! Making a project like this after just joining today is incredibly impressive!
One thing you could do to make it faster is to put your code in a
warp { } block.

This would be how I would do it:

Putting it together

Ohh, thank you so much!!