python鼠标点击后画圆_单击圆圈内的任何位置时,使用Python验证鼠标位置是否在圆圈内....

我正在研究

Python中的一个项目,即确定一个人的多任务效率.该项目的一部分是让用户使用鼠标在屏幕上响应事件.我决定让用户点击一个球.但是我的代码验证鼠标光标实际上是在圆圈的范围内.

有关方法的代码如下.圆的半径是10.

#boolean method to determine if the cursor is within the position of the circle

@classmethod

def is_valid_mouse_click_position(cls, the_ball, mouse_position):

return (mouse_position) == ((range((the_ball.x - 10),(the_ball.x + 10)),

range((the_ball.y + 10), (the_ball.y - 10))))

#method called when a pygame.event.MOUSEBUTTONDOWN is detected.

def handle_mouse_click(self):

print (Ball.is_valid_mouse_click_position(self.the_ball,pygame.mouse.get_pos))

无论我在圈内单击,布尔值仍然返回False.

最佳答案 我不知道pygame,但也许你想要这样的东西:

distance = sqrt((mouse_position.x - the_ball.x)**2 + (mouse_position.y - the_ball.y)**2)

这是获得鼠标位置和球心之间距离的标准距离公式.然后你会想做:

return distance <= circle_radius

此外,要使sqrt工作,您需要从数学导入sqrt开始

注意:您可以执行以下操作:

x_good = mouse_position.x in range(the_ball.x - 10, the_ball.x + 10)

y_good = mouse_position.y in range(the_ball.y - 10, the_ball.y + 10)

return x_good and y_good

这更符合你所写的内容 – 但这会给你一个允许的区域,这是一个正方形.要获得一个圆,您需要计算距离,如上所示.

注意:我的回答是假设mouse_position具有属性x和y.我不知道这是否真的是因为我不知道pygame,正如我所提到的那样.

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值