about summary refs log tree commit diff
path: root/editor/pamflip/flip.h
blob: 612a7f84fdc7a4ba0e1ec80d2030a0882243b731 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef FLIP_H_INCLUDED
#define FLIP_H_INCLUDED

struct xformCore {
    /* a b
       c d
    */
    int a;  /* -1, 0, or 1 */
    int b;  /* -1, 0, or 1 */
    int c;  /* -1, 0, or 1 */
    int d;  /* -1, 0, or 1 */
};



#endif