コード例 #1
0
 public void RotateCube(IFacelet facelet, double angle)
 {
     RotateCube(facelet.Normal, angle);
 }
コード例 #2
0
ファイル: Solver.cs プロジェクト: kfawell/Utility-RubiksCube
 protected void SetFrontDirection(IFacelet frontFacelet, IFacelet topFacelet)
 {
     SetFrontDirection(frontFacelet.Normal, topFacelet.Normal);
 }
コード例 #3
0
 public bool IsSameNormal(IFacelet other)
 {
     return Normal.IsSame(other.Normal);
 }
コード例 #4
0
 public bool IsSameLayer(IFacelet other)
 {
     return IsSameLayer(other, other.Normal);
 }
コード例 #5
0
 public bool IsSameLayer(IFacelet other, Vector3D normal)
 {
     return CubieCenter.IsOnPlane(other.CubieCenter, normal);
 }