标签: c++ image position coordinates
我在计算要在屏幕上呈现的图像的位置时遇到问题。
示例:
我有一张图片378x51,屏幕为1024x768。
378x51
1024x768
我知道计算中心的图像是:
screen.x / 2 - image.x / 2 screen.y / 2 - image.y / 2
我的问题是用一些float来计算,以确定的坐标进行渲染。
float
float screenPosX = 0.3 float screenPoY = 0.4
假设浮点数的最大值为1.0f
我需要使用这些坐标渲染当前图像。