More work on Cairo bindings

This commit is contained in:
Joshua Granick
2015-05-01 12:25:53 -07:00
parent c526e8eab8
commit ceab8ce28b
16 changed files with 1271 additions and 5 deletions

View File

@@ -0,0 +1,36 @@
#ifndef LIME_MATH_MATRIX_3_H
#define LIME_MATH_MATRIX_3_H
#include <hx/CFFI.h>
namespace lime {
class Matrix3 {
public:
Matrix3 ();
Matrix3 (double a, double b, double c, double d, double tx, double ty);
Matrix3 (value matrix3);
value Value ();
double a;
double b;
double c;
double d;
double tx;
double ty;
};
}
#endif

View File

@@ -14,6 +14,7 @@ namespace lime {
public:
Rectangle ();
Rectangle (double x, double y, double width, double height);
Rectangle (value rect);
double height;