返回列表 回复 发帖
调一下颜色,再把迭代次数提高:

捕获.JPG (32.72 KB)

捕获.JPG

恭喜并感谢榕坚兄,作得真好.
一直以为迭代时那张表格很讨厌,其实这次是它帮了大忙。迭代10次观察那张表的数字变化检查到了之前做法与代码的不同之处。修改后终于行了。
94# 榕坚
美图竟然是这样练就的。我也讨厌过那表格,看来当刮目相看了。
恭喜榕老师,谢谢分享成功的果实。

表格只是观察的一种方法。
谁能把这段英文给翻译一下(关于UF中whitesq逻辑变量的定义):This predefined symbol returns true if the x-coordinate and the y-coordinate of the pixel being calculated give an odd number when added together; otherwise, it returns false. If you think of the screen as a large checkerboard with white and black squares with the size of a single pixel, #whitesq returns true for every white pixel.
从字面上看:象素点的坐标奇、偶数是怎么定义的呢?
这个UF分形,我以失败告终。
Carr2004 {
; Updated for UF2 by Erik Reckase, March 2000
          ; Modified Sylvie Gallet frm. [101324,3444], 1996
init:
  z=c=pixel, z1=imag(p1-cos(2*(pixel)))*z-p2
  int iter=0, int limit=round(real(p1)), float bailout=16
loop:
  IF (iter==limit)
    z = z1, c = p3
  ENDIF
  z=z*z+c
  iter=iter+1
bailout:
  |z| <= bailout
default:
  title = "Carr 2004"
  periodicity = 0
  maxiter = 500
  magn = 1.3
  center = (-.4,0)
  method = multipass
  param p1
    caption = "Iter Lim/Julia Scale"
    default = (50,1)
    hint = "The real part of this parameter acts as an \
            iteration limit, where the formula's calculation \
            changes.  The imaginary part of this parameter \
            scales the Julia structure."
  endparam
  param p2
    caption = "Julia Center"
    default = (-0.3,0)
  endparam
  param p3
    caption = "Julia Params"
    default = (-0.65,-0.4)
  endparam
}
此分形位于carr2000.ufm中
2.JPG
98# 柳烟


carr系列是UF中难度较大的一个系列,之前做过一个不成样的。不过看这个代码好象还可以,正在扫描图形,完了后试一试。
怎么弄出了这么个东西来:

捕获.JPG (52.19 KB)

捕获.JPG

M集内部应该没有问题,外部那些多余的色块应该是cos函数造成的。
返回列表