//还需加PI 和 mabs 函数

double chg(double x,double y)
{
double tmps;
if(mabs(x-)<1e-)
{
if(y>) tmps=90.0;
else tmps=270.0;
}
else
{
tmps=y/x; //将这个点的斜率求出来
if(mabs(y-)<1e-)
{
if(x>) tmps=0.0;
else tmps=180.0;
}
else
{
tmps=atan(tmps);//求出角度
tmps=(180.0/PI)*tmps;
if(y*x > &&y<)
tmps += 180.0;
if(y*x<)
{
tmps*=-;
if(x<)
tmps=180.0-tmps;
else
{
tmps=360.0-tmps;
}
}
}
}
return tmps;
}
05-27 19:31