Skip to content

Commit

Permalink
Update binary_utils.h
Browse files Browse the repository at this point in the history
  • Loading branch information
nilsbrenkman authored Jan 17, 2024
1 parent e4b040b commit 880b575
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions src/binary_utils.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
struct {
degrees heading;
degrees attitude;
degrees bank;
} rotation;

enum degrees { R_0, R_90, R_180, R_270 };

void rotate_cube(cube_t *source,
cube_t *dest,
rotation * rotation) {

cube_t *buffer = new cube_t;



}

0 comments on commit 880b575

Please sign in to comment.