返回列表 回复 发帖
Carr2047.gsp (37.48 KB)
未命名.jpg
放大一局部更好看:
未命名.jpg
Carr3202(YAXIS).gsp (76.79 KB)
未命名.jpg
http://u.115.com/file/f6ebb8f906#
制作这类分形,要发扬我军连续作战,不怕疲劳的精神,沉得住气的精神才行。
115网盘取消了大众分享功能,上面各楼层连接已无用,部分视频,已陆续转到我的百度盘中。连接是:
http://pan.baidu.com/share/home?uk=1663457603
以前那些分形,初整时,有种初生牛犊不怕虎的精神,胆子确实大,失败了又重来,非整出个东西不可。现在重看这些帖子,很是惊讶当初那来的这股子力量。现在重新干时,反而谨小慎微,放不开手脚,以前整过的东西,今日反而有些陌生了,哎呀。
sin(z^2)+c的N-M集:
未命名.jpg
sin(z^2)+C的N-M集.gsp (19.46 KB)
原115盘的UF中分形文件制作视频文件,已转到
http://pan.baidu.com/share/manage
Carr 柳烟2013-4-9 {
; Updated for UF2 by Erik Reckase, March 2000
           ; Modified Sylvie Gallet frm.   REVISED 4/12/96
init:
  w=2*(pixel+0.2)+1/(2*(pixel+0.2)),z=c=pixel
  float iter=1, rad=6, center=(1,.1)
  pix=(10*pixel+(8,-5))*(-.1,-.95)
  zn = center+rad/(pix-center), float limit = real(p1)
  bool test0 = TRUE, bool test3=FALSE
  float b1=16, float b2=.0001
loop:
  test0 = !test0
  IF (iter==limit)
    z = zn
  ENDIF
  IF (iter<limit)
    z = z^2+c
    IF (!test3)
      test3 = (|z|>b1)
    ENDIF
    IF test3 && test0
      z = (0,0)
    ENDIF
    float zfinal = |z|
    float bfinal = b1
  ELSE
    IF w==0
      z1 = 0
    ELSE

      z1 = (w^4+1)/(3*w^3)
    ENDIF
    w = w- z1
    float bfinal = |z1|
    float zfinal = b2
  ENDIF
  iter = iter+1.099
bailout:
  zfinal <= bfinal
default:
  title = "Carr 柳烟2013-4-9"
  periodicity = 0
  maxiter = 500
  magn = 1
  center = (0,0)
  method = multipass
  param p1
    caption = "Iteration Limit"
    default = (100,0)
    hint = "The real part of this parameter signifies the point \
            at which the iterating formula changes.  The imag \
            part is not used, but remains for Fractint compat."
  endparam
}
此代码是柳烟作品,可是我把这代码用GSP造,结果在迭代时,不知如何操作,以至于画板文件搞不出来。UF中效果图是:
Fractal2.png
Fractal2.png
这是两个分形的并行叠加,画板容易实现,只需将迭代初点合并,同时着色参数用判断合并。
N &amp; M set.jpg
N & M set.gsp (23.13 KB)
返回列表