Welcome to PCSH MATH!

板橋高中 數學科教學研究會

 

 

 

 

最新消息

NEWS

NEW!!
Mandelbrot set

For Each c in Complex  
repeats = 0  
z = 0  
Do  
z = z^2 + c  
repeats = repeats + 1  
Loop until abs(z) >   EscapeRadius or repeats >   MaxRepeats  
If repeats > MaxRepeats    Then   
Draw c,Black  
Else  
Draw c,color(z,c,repeats)  
End If  
Next