本文整理汇总了Python中cube.Cube.cw_corners_on_face方法的典型用法代码示例。如果您正苦于以下问题:Python Cube.cw_corners_on_face方法的具体用法?Python Cube.cw_corners_on_face怎么用?Python Cube.cw_corners_on_face使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类cube.Cube
的用法示例。
在下文中一共展示了Cube.cw_corners_on_face方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: find_unsolved
# 需要导入模块: from cube import Cube [as 别名]
# 或者: from cube.Cube import cw_corners_on_face [as 别名]
def find_unsolved(self, cube, print_debug=False):
unsolved = []
for dest_edge, dest_edge2 in Cube.cw_corners_on_face('up'):
#print dest_edge, dest_edge2
if cube.get_color('up', dest_edge, dest_edge2) != 'yellow':
corner_neighbors = Cube.cw_neighbor_corners(
('up', dest_edge, dest_edge2))
#print corner_neighbors
colors = [cube.get_color(face, edge, edge2)
for face, edge, edge2 in corner_neighbors]
#print colors
yellow_index = colors.index('yellow')
assert yellow_index == 1 or yellow_index == 2
yellow_corner = corner_neighbors[yellow_index]
unsolved.append(Unsolved(
yellow_corner[0], yellow_corner[1], yellow_corner[2],
'up', dest_edge, dest_edge2))
return unsolved