diff options
| author | Sebastiano Tronto <sebastiano@tronto.net> | 2022-12-26 12:41:36 +0100 |
|---|---|---|
| committer | Sebastiano Tronto <sebastiano@tronto.net> | 2022-12-26 12:41:36 +0100 |
| commit | cecdb7c5a0fc4821bc56c6aae5428925ec1baa15 (patch) | |
| tree | 5f478c2154ffafe55f1866edd82546d1472fb6c3 /src/moves.c | |
| parent | 1ac26de8dcb76323a5f96eab200a027236cb55d0 (diff) | |
| download | nissy-cecdb7c5a0fc4821bc56c6aae5428925ec1baa15.tar.gz nissy-cecdb7c5a0fc4821bc56c6aae5428925ec1baa15.zip | |
Fixed fst_inverse
Diffstat (limited to '')
| -rw-r--r-- | src/moves.c | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/src/moves.c b/src/moves.c index 51012db..a9dfdc0 100644 --- a/src/moves.c +++ b/src/moves.c | |||
| @@ -106,6 +106,24 @@ apply_move(Move m, Cube *cube) | |||
| 106 | compose(&move_array[m], cube); | 106 | compose(&move_array[m], cube); |
| 107 | } | 107 | } |
| 108 | 108 | ||
| 109 | void | ||
| 110 | apply_move_centers(Move m, Cube *cube) | ||
| 111 | { | ||
| 112 | compose_centers(&move_array[m], cube); | ||
| 113 | } | ||
| 114 | |||
| 115 | void | ||
| 116 | apply_move_corners(Move m, Cube *cube) | ||
| 117 | { | ||
| 118 | compose_corners(&move_array[m], cube); | ||
| 119 | } | ||
| 120 | |||
| 121 | void | ||
| 122 | apply_move_edges(Move m, Cube *cube) | ||
| 123 | { | ||
| 124 | compose_edges(&move_array[m], cube); | ||
| 125 | } | ||
| 126 | |||
| 109 | Alg * | 127 | Alg * |
| 110 | cleanup(Alg *alg) | 128 | cleanup(Alg *alg) |
| 111 | { | 129 | { |
