返回列表 回复 发帖
一边看伦登奥运举重,一边关注扫图。
将根作色法与光滑牛集作色法结合起来,造一幅:
e.jpg
用HSV作色:
f.jpg
又是别样风味:
g.jpg
f(z)=z^5+2*z^4+3*z^3-4*z^2-5*z-6的N集,根作色。此多项式的五个根用magle软件求出。
g.jpg
f(z)=z5+2z4+3z3-4z2-5z-6.gsp (32.73 KB)
02.jpg
01.jpg
(z2-1)(z2-c2)的N集.gsp (25.4 KB)
将M集加点对称平移变换:
1.gif
M集20150119.gsp (13.78 KB)
20# xiaongxp
向老师新年快乐!晚上无事,又无睡意,对打麻将等又没兴趣,看看电视,玩玩电脑,混时间呗。
Mandelbrot {
;
; Generic Mandelbrot set.
;
init:
  z = @start
  c= #pixel
  x=real(c)
  y=imag(c)
  int k=0
  while (k<@TH)
  x=abs(x)-2.5
  y=abs(y)-2
  k = k+1
  endwhile
  x=abs(x)-2
  y=abs(y)-1
  c=x+flip(y)
loop:
  z = z^@power + c
bailout:
  |z| <= @bailout
default:
  title = "Mandelbrot"
  center = (-0.5, 0)
  helpfile = "Uf*.chm"
  helptopic = "Html\formulas\standard\mandelbrot.html"
$IFDEF VER50
  rating = recommended
$ENDIF
  param start
    caption = "Starting point"
    default = (0,0)
    hint = "The starting point parameter can be used to distort the Mandelbrot \
            set. Use (0, 0) for the standard Mandelbrot set."
  endparam
  param power
    caption = "Power"
    default = (2,0)

  endparam
  param TH
    caption = "th"
    default = 5

  endparam
  float param bailout
    caption = "Bailout value"
    default = 4.0
    min = 1.0
$IFDEF VER40
    exponential = true
$ENDIF
    hint = "This parameter defines how soon an orbit bails out while \
            iterating. Larger values give smoother outlines; values around 4 \
            give more interesting shapes around the set. Values less than 4 \
            will distort the fractal."
  endparam
}
2.gif
如何将一个乌龟通过变换,变成指针均往左或右的乌龟阵势?有了点想法,但不知能否实现。
24# zhongba
谢谢精妙文件,设计十分巧妙。
返回列表