Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
只是想知道如何垂直显示 mandelbrot 集,就像水平放置的 mandelbrot 集:
我想更像是从垂直轴查看较小的尺寸。
使用与显示水平 Mandelbrot 集完全相同的方程,但y使用x和切换。x-y
y
x
-y
伪代码:
if width > height: transpose_coordinates(pixels)
或者像伊维拉说的
if width > height: rotate(img, 90)