我正在使用带有openFrameworks的Android平板电脑。我想使用加速度计来根据加速度计数据旋转图像。
我正在使用以下代码根据加速度计数据绘制图像。
ofPushMatrix();
ofTranslate(ofGetWidth()/2, ofGetHeight()/2);
im.setAnchorPoint(normAccel.x*ofGetWidth()/2, normAccel.y*ofGetHeight()/2);
im.draw(-300,-300);
ofPopMatrix();
但我不知道如何旋转图像。我不确定我是否可以使用getOrientation()或getMatrix()方法来旋转图像。任何指导都会非常感激。