12

我有这个代码来绘制我的视差背景

pGLState.pushModelViewGLMatrix();
final float cameraWidth = pCamera.getWidth();
final float cameraHeight = pCamera.getHeight();
final float shapeWidthScaled = this.mShape.getWidthScaled();
final float shapeHeightScaled = this.mShape.getHeightScaled();

//reposition

float baseOffsetX = (pParallaxValueX * this.mParallaxFactorX);
if (this.mRepeatX) {
    baseOffsetX = baseOffsetX % shapeWidthScaled;
    while(baseOffsetX > 0) {
            baseOffsetX -= shapeWidthScaled;
    }
}

float baseOffsetY = (pParallaxValueY * this.mParallaxFactorY);
if (this.mRepeatY) {
    baseOffsetY = baseOffsetY % shapeHeightScaled;
    while(baseOffsetY > 0) {
        baseOffsetY -= shapeHeightScaled;
    }                              
}

//draw

pGLState.translateModelViewGLMatrixf(baseOffsetX, baseOffsetY, 0);
float currentMaxX = baseOffsetX;
float currentMaxY = baseOffsetY;
do {     

    //rows     

    this.mShape.onDraw(pGLState, pCamera);
    if (this.mRepeatY) {
        currentMaxY = baseOffsetY;   

        //columns  

        do {       
            pGLState.translateModelViewGLMatrixf(0, shapeHeightScaled, 0);
            currentMaxY += shapeHeightScaled;                                              
            this.mShape.onDraw(pGLState, pCamera);
        } while(currentMaxY < cameraHeight);      

        //end columns

        pGLState.translateModelViewGLMatrixf(0, -currentMaxY + baseOffsetY, 0);                                    
    }

pGLState.translateModelViewGLMatrixf(shapeWidthScaled, 0, 0);
currentMaxX += shapeWidthScaled;
} while (this.mRepeatX && currentMaxX < cameraWidth); 

//end rows

pGLState.popModelViewGLMatrix();

不旋转相机时一切正常。

旋转时,我认为平铺 ( this.mShape) 应该再绘制四次(顶部、底部、左侧和右侧),因此角落中的空白区域不可见。例如,当旋转 45 度时,但我不知道该怎么做。

4

1 回答 1

4

从解释看来,你有一组 2x2 的瓷砖,你想旋转它们。但是当你这样做的时候,角落里有缝隙吗?所以不要这样做

    [][]
    [][]

2x2 瓷砖套装这样做

    [][][]
    [][][]
    [][][]

设置 3x3 瓷砖并将其置于中心瓷砖的中心,然后在其周围填充。

如果重要的是你有一个 4 瓷砖图案,中间有一个公共角落,那么你将不得不这样做

    [][][][]
    [][][][]
    [][][][]
    [][][][]

4x4 瓷砖套装。基本上只是围绕你的 2x2 构建。现在,当您旋转背景时,角落不会有间隙。

其余的只是数学。

在 opengl 中,您正在旋转世界,而不是对象。所以这样想,你正在旋转 x,y,z 平面

        |
        |
    ---------
        |
        |

     \      /
      \    /
       \  /
        ><
       /  \
      /    \
     /      \

所以现在几何图形将旋转到它被绘制的位置加上旋转。因此,如果我在 x,y,z (10,0,0) 有一个角的正方形,该点仍将位于 (10,0,0) 但 X 轴将旋转 45' 所以对象将在 XY 平面上以 45' 角距 (0,0,0) 的原点 10 个 X 单位距离。

所以它只是关于在偏移处重绘你的瓷砖。

于 2012-09-04T02:35:30.647 回答