More work on Cairo bindings
This commit is contained in:
36
project/include/math/Matrix3.h
Normal file
36
project/include/math/Matrix3.h
Normal 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
|
||||
@@ -14,6 +14,7 @@ namespace lime {
|
||||
public:
|
||||
|
||||
Rectangle ();
|
||||
Rectangle (double x, double y, double width, double height);
|
||||
Rectangle (value rect);
|
||||
|
||||
double height;
|
||||
|
||||
Reference in New Issue
Block a user