Android图形。相机-如何设置垂直于表面的位置?

问题描述 投票:0回答:1

android的类导入android.graphics.Camera具有使用的默认位置。但是有一个method to change the camera's position

我如何调整相机的倾斜度,使其看起来与表面垂直。有点像从飞机上看向地面?

这是到目前为止我尝试过的事情:

mCamera.setLocation(0f,9f,0f)

但是这不会使视角垂直于地面。

android opengl-es android-graphics
1个回答
0
投票

您需要旋转相机,我不知道此API,但似乎您有rotate methods

我会尝试使用mCamera.rotateX(90)作为开始。

© www.soinside.com 2019 - 2024. All rights reserved.