about summary refs log tree commit diff
path: root/editor/pamflip/flip.h
blob: ace93044ae1fce8f495c662b4de393454143732e (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