反转整数值
我有一个场景,我想我可以通过 PC Monitor 的例子来传达(虽然不是真实的)。
假设我有两台分辨率和属性不同的显示器。一台显示器在屏幕上从上 (0) 到下(最大值)绘制鼠标光标,另一台显示器从下 (0) 到上(最大值)绘制鼠标光标。换句话说,在绘制鼠标光标时,两者都有彼此相反的 y 轴,我需要编写一个公式,将一个显示器光标位置转换为另一个显示器光标位置,给定一个显示器 x 和 y 光标位置,反之亦然。
什么公式最适合这个?
I have a scenario which I think I can convey giving PC Monitor example (not real though).
Assume I have two monitors both of different resolution and properties. One monitor draws mouse cursor on screen from top (0) to bottom (max-value) and other draws mouse from bottom (0) to top (max-value). In other words both have reverse y-axis of each other in drawing mouse cursor and I need to write a formula that will convert one monitor cursor position to another and vice versa given one monitor x and y cursor positions.
What formula is the best suited for this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
需要知道
left_x
和left_y
(以及每个显示器的分辨率)。The
left_x
andleft_y
(as well as the resolutions for each display) would need to be known.