我做一个Mandlebrot集的程序,将代码做成一个类库,按书中查到地代码输入进去之后 ,总有一句话编译出错:
mypen.Color=Color.FromArgb((10+55*n) System.Decimal.Mod 255),(20+33*n) System.Decimal.Mod 255,(30+11*n)system.Decimal.Mod 255);
不知道在C#中这段代码错在哪里了,应该怎么用法?
以下是整段类库程序:
using System;
namespace CFmand
{
/// <summary>
/// Class1 的摘要说明。
/// </summary>
public class CFMand
{
public void MSB(Pen mypen,int sx,int sy,int nmax)
{
System.Drawing.Graphics mydraw;
mydraw=pictureBox1.CreateGraphics();
mypen=new Pen();
float power=1;
double cxmin=-4.2;
double cxmax=1;
int cymin=-2;
int cymax=3;
int i,j,n;
double m,L;
double cx,cy;
double x,y,xx,yy;
double dx,dy;
x=0;
y=0;
L=4;
dx=(cxmax-cxmin)/(sx)/power;
dy=(cymax-cymin)/(sy)/power;
for(i=0;i<=(int)(power*sx);i++)
{
cx=cxmin+i*dx;
for(j=0;j<=(int)(power*sy);j++)
{
cy=cymin+j*dy;
x=0;
y=0;
for(n=0;n<=nmax;n++)
{
xx=x*x-y*y+cx;
yy=2*x*y+cy;
m=xx+yy;
if(m>L)continue;
x=xx;
y=yy;
}
try
{
mypen.Color=Color.FromArgb((10+55*n) System.Decimal.Mod 255),(20+33*n) System.Decimal.Mod 255,(30+11*n)system.Decimal.Mod 255);
mydraw.DrawArc(mypen,(int)(cx*power*sx/(cxmax-cxmin)+400),(int)(200+cy*power*sy/(cymax-cymin)),1,1,0,360);
}
catch(Exception e)
{
Console.WriteLine("{0}Exception caught.",e);
}
}
}
}
}
}