blob: 0a2cc88e6c988cedd4bc243067ad69cadff109a0 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#ifndef P_TRANSFORMROTATE
#define P_TRANSFORMROTATE
#include "PixelCallback.h"
#include "../global.h"
typedef struct TransformRotate {
double angle;
} TransformRotate;
PixelCallback* TransformRotate_setup(TransformRotate obj);
#endif /* P_TRANSFORMROTATE */
|