about summary refs log tree commit diff
path: root/editor/pamflip/flip.h
diff options
context:
space:
mode:
Diffstat (limited to 'editor/pamflip/flip.h')
-rw-r--r--editor/pamflip/flip.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/editor/pamflip/flip.h b/editor/pamflip/flip.h
new file mode 100644
index 00000000..612a7f84
--- /dev/null
+++ b/editor/pamflip/flip.h
@@ -0,0 +1,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