- UID
- 263
- 帖子
- 942
- 精华
- 6
- 积分
- 1117
|
elseif @style == 3
if ttype == 0
z = z + (.5,.5)
d = abs(real(z)) + abs(imag(z)) - .5
else
;d = imag(z)-.5
d = abs(real(z)) - imag(z) - .5
endif
endif
其中两个“ ;d = imag(z)-.5
d = abs(real(z)) - imag(z) - .5
”并行,到底是用哪一个呢?这是我最初看此代码时一直不理解的地方,还以为是你误改了,看来还是程序本身就这样。 |
|