*/
typedef enum {
TDM_TRANSFORM_NORMAL = 0, /**< no transform */
- TDM_TRANSFORM_90 = 1, /**< rotate 90 degrees clockwise */
- TDM_TRANSFORM_180 = 2, /**< rotate 180 degrees clockwise */
- TDM_TRANSFORM_270 = 3, /**< rotate 270 degrees clockwise */
+ TDM_TRANSFORM_90 = 1, /**< rotate 90 degrees counter-clockwise */
+ TDM_TRANSFORM_180 = 2, /**< rotate 180 degrees counter-clockwise */
+ TDM_TRANSFORM_270 = 3, /**< rotate 270 degrees counter-clockwise */
TDM_TRANSFORM_FLIPPED = 4, /**< no rotate and horizontal flip */
- TDM_TRANSFORM_FLIPPED_90 = 5, /**< rotate 90 degrees clockwise and horizontal flip */
- TDM_TRANSFORM_FLIPPED_180 = 6, /**< rotate 180 degrees clockwise and horizontal flip */
- TDM_TRANSFORM_FLIPPED_270 = 7, /**< rotate 270 degrees clockwise and horizontal flip */
+ TDM_TRANSFORM_FLIPPED_90 = 5, /**< rotate 90 degrees counter-clockwise and horizontal flip */
+ TDM_TRANSFORM_FLIPPED_180 = 6, /**< rotate 180 degrees counter-clockwise and horizontal flip */
+ TDM_TRANSFORM_FLIPPED_270 = 7, /**< rotate 270 degrees counter-clockwise and horizontal flip */
} tdm_transform;
/**