当前位置: 首页>>代码示例>>Python>>正文


Python Cube.cw_corners_on_face方法代码示例

本文整理汇总了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
开发者ID:buggi22,项目名称:cube-solver,代码行数:20,代码来源:solver.py


注:本文中的cube.Cube.cw_corners_on_face方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。