From 259c7326f78d5495f5dc51c619932599a5279f68 Mon Sep 17 00:00:00 2001 From: Sebastiano Tronto Date: Sun, 22 Oct 2023 12:49:20 +0200 Subject: Progess with transformation implementation --- src/cube.h | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'src/cube.h') diff --git a/src/cube.h b/src/cube.h index 129062d..67f04bf 100644 --- a/src/cube.h +++ b/src/cube.h @@ -21,7 +21,12 @@ bool iserror(cube_t); int readmoves(char *, move_t *); void writemoves(move_t *, int, char *); +trans_t readtrans(char *); +void writetrans(trans_t, char *); + cube_t move(cube_t, move_t); cube_t inverse(cube_t); cube_t compose(cube_t, cube_t); + +/* See utils/TRANSFORMATIONS.txt for how transformations are applied */ cube_t transform(cube_t, trans_t); -- cgit v1.3