setPixel; Pixelkoordinates with Datatype' long'

时间:2017-02-02 12:53:24

标签: android math android-bitmap imaging

我正在尝试将西门子星图绘制成空位图。当我在考虑圆形像素坐标的公式时,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;
            }
        }
    }

enter image description here

我在Matlab中尝试过这种算法,它运行正常。谁能告诉我我的错误?

1 个答案:

答案 0 :(得分:2)

您需要使用以下代码将Math.round结果转换为整数:

int x = (int) Math.round(X_Center + Math.cos(phi)*r);