返回列表 回复 发帖
怎么这么寂静,是否春雷即将炸响。

j.JPG (31.15 KB)

j.JPG

4叶玫瑰J.JPG (13.86 KB)

4叶玫瑰J.JPG

8叶玫瑰J.JPG (16.41 KB)

8叶玫瑰J.JPG

8叶玫瑰J'.JPG (33.58 KB)

8叶玫瑰J'.JPG

191# dyk

还是这个效果好,如琉璃般质感。
UF中又一种奇怪的M集构造,还看不出到底有什么意义:
sft_Dizzy1Mandy {
; Setemkia FallingTree, a.k.a Fawn/Kia
; 16 June 2002

init:
  complex z0 = @start
  complex r0 = sqrt(|z0|)+flip(atan2(z0))
  complex z1 = 0
  complex r1 = 0
  float   ss = @step*#magn^(-5/12)
  float   ang = 0
  int     iter = 0
          #z = #pixel

loop:
  z1 = z0
  r1 = r0
  z0 = z0^@m+#pixel
  ang = atan2(z0) , if (ang < 0) , ang = 2*#pi+ang , endif
  r0 = sqrt(|z0|)+flip(ang)
  if @weighted==false
    ang = (imag(r0)+imag(r1))/2
  else
    ang = (real(r0)*imag(r0)+real(r1)*imag(r1))/(real(r0)+real(r1))
  endif
  if @addsub==1, ang = -ang, endif
  #z = #z + ss*#e^flip(atan2(z0-z1)+ang)
  iter = iter+1

bailout:
  iter < #maxiter

default:
  title   = "Dizzy #1 Mandy"
  center  = (0,0)
  magn    = 1.5
  maxiter = 19
  method  = onepass
  periodicity = 0

  param start
    caption = "Starting point"
    default = (0,0)
    hint    = "Mandelbrot perturbation. Standard Mandy uses (0,0)."
  endparam
  param m
    caption = "Mandy power"
    default = 2.0
    hint    = "Power of the Mandelbrot set. Standard Mandy uses 2.0."
  endparam
  param step
    caption = "Step size"
    default = 0.25
    min     = 1.0e-12
    hint    = "On each iteration a step of this length is made in a chaotic \
               direction.  Actually, the step length is scalled by the \
               current magnification."
  endparam
  param addsub
    caption = "Delta Angle Usage"
    enum    = "Add" "Subtract"
    default = 1
    hint    = "Specify whether to add or subtract the change in direction."
  endparam
  param weighted
    caption = "Weighted Average"
    default = false
    hint    = "Use weighted average in computing change of direction."
  endparam
}

Fractal1.jpg (23.27 KB)

Fractal1.jpg

上楼文件在UF中那个位置?我搜索没找着
195# 柳烟


在sft-dizzy.ufm中
196# 榕坚
UF中,怎么图是纯色呢,参数如何设定
197# 柳烟


就是默认的参数,迭代次数不能太大,30以内。我知道了,你可能选了面板outside中的basic,你换一下别的模式看看。
198# 榕坚
谢谢,按你说的,在UF中搞出图象了.
199# 柳烟


代码不是很长,但弄来弄去就是没法得到UF的效果。
代码中的atan2 这个函数是什么意思,查帮助搞不明白.
返回列表