2012年12月29日

MandelbrotSet 分形艺术(C++实现)

摘要: 转自 EasyX,不过我重构了代码。运行结果:源程序: 1 // MandelbrotSet.cpp 2 3 #include "graphics.h" 4 #include <conio.h> 5 6 struct Complex 7 { 8 double re; 9 double im;10 11 public:12 Complex operator * (const Complex &other) const13 {14 Complex c;15 c.re = this->re * other.re - this->i... 阅读全文

posted @ 2012-12-29 23:58 jjtx 阅读(1794) 评论(7) 推荐(0) 编辑

导航