- UID
- 7
- 帖子
- 2888
- 精华
- 10
- 积分
- 2836
|
同一系列的另一个也挺有趣的:
Tah-MandelJulia {
;
;Hey, looky here! It averages the point in the
;mandelbot set with that of the julia seed!
;Sorry, this it's own switch.
;
init:
cj = @seed
zj = #pixel
cm = #pixel
zm = @start
loop:
zj = zj^@power + cj
zm = zm^@power + cm
z = (zm + zj)/2
bailout:
|z| <= @bailout
default:
title = "MandelJulia"
param power
caption = "Power"
default = (2,0)
hint = "The Exponent, stupid."
endparam
param seed
Caption = "Seed"
Default = (.26,.0016)
Hint = "The Julia-type seed."
endparam
param restart
caption = "Restart Interval"
default = 1.0
min = 1e-10
hint = "Specifies the number of iterations before c is reset."
endparam
param start
caption = "Start Value"
default = (0,0)
hint = "Mess it up."
endparam
param bailout
caption = "Bailout value"
default = 4.0
min = 1.0
hint = "Contain yourself!"
endparam
}
这个比较容易做。
给M集纹身: |
-
-
捕获.JPG
(34.12 KB)
-
-
Fractal1.jpg
(87.33 KB)
|