Refactored merged rotation code

This commit is contained in:
Bert Münnich
2013-08-10 15:55:18 +02:00
parent 7e51c35801
commit 56142bd3ba
5 changed files with 20 additions and 30 deletions

View File

@ -39,10 +39,10 @@ typedef enum {
} direction_t;
typedef enum {
ROTATE_90,
ROTATE_270,
ROTATE_180
} rotate_t;
DEGREE_90 = 1,
DEGREE_180 = 2,
DEGREE_270 = 3
} degree_t;
typedef enum {
FLIP_HORIZONTAL,