返回列表 回复 发帖
184# changxde


这与陷阱法做法不同,但与陷阱法好象有异曲同工之处:

general_jul-2lines1-6.JPG (51.91 KB)

general_jul-2lines1-6.JPG

general_jul-2lines1-5.JPG (45.93 KB)

general_jul-2lines1-5.JPG

最近这版块很宁静,是否意味着暴风雨前夜呢?

general_jul-2lines1-8.JPG (65.51 KB)

general_jul-2lines1-8.JPG

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

195# 柳烟


在sft-dizzy.ufm中
197# 柳烟


就是默认的参数,迭代次数不能太大,30以内。我知道了,你可能选了面板outside中的basic,你换一下别的模式看看。
199# 柳烟


代码不是很长,但弄来弄去就是没法得到UF的效果。
203# 柳烟
是这样的,它一直迭代到给定的最大迭代次数为止。UF可能在数值处理或着色中用了什么办法使数值总不会溢出。
被它深深吸引了,这个M集又是怎么做的呢?
Section of the Mandelbrot set for 4(1 - z)2/(1 + 4z + 2z2 - z3):


http://www.juliasets.dk/Ratio.htm
206# mjj_ljh


已经加上去了,可是就是得不到那些类似回形针似的链条啊。
真是奇怪,连着几个都不成功:


http://www.juliasets.dk/Ratio.htm

捕获.JPG (33.22 KB)

捕获.JPG

返回列表