我正在尝试将西门子星图绘制成空位图。当我在考虑圆形像素坐标的公式时,pogramm告诉我,它会产生一个长数而不是一个整数。
double d = 0.001;
Bitmap bmp = Bitmap.createBitmap(w, h, Bitmap.Config.ARGB_8888);
for(int r = Rin; r < Rout; r++){
double phi = 0;
while( phi < 2* Math.PI){
for(int i = 0; i<Math.PI/nPeriods*1/d; i++){
int x = Math.round(X_Center + Math.cos(phi)*r);
int y = Math.round(Y_Center + Math.sin(phi)*r);
bmp.setPixel(x,y,Color.BLACK);
phi = phi+d;
}
for(int i = 0; i<Math.PI/nPeriods*1/d; i++){
phi = phi+d;
}
}
}
我在Matlab中尝试过这种算法,它运行正常。谁能告诉我我的错误?
答案 0 :(得分:2)
您需要使用以下代码将Math.round结果转换为整数:
int x = (int) Math.round(X_Center + Math.cos(phi)*r);