本文整理汇总了Python中horizons.util.Circle.remove方法的典型用法代码示例。如果您正苦于以下问题:Python Circle.remove方法的具体用法?Python Circle.remove怎么用?Python Circle.remove使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类horizons.util.Circle
的用法示例。
在下文中一共展示了Circle.remove方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: get_random_location
# 需要导入模块: from horizons.util import Circle [as 别名]
# 或者: from horizons.util.Circle import remove [as 别名]
def get_random_location(self, in_range):
"""Returns a random location in walking_range, that we can find a path to
@param in_range: int, max distance to returned point from current position
@return: Instance of Point or None"""
possible_walk_targets = Circle(self.position, in_range).get_coordinates()
possible_walk_targets.remove(self.position.to_tuple())
self.session.random.shuffle(possible_walk_targets)
for coord in possible_walk_targets:
target = Point(*coord)
if self.check_move(target):
return target
return None