1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
pub use ffi::Matrix;
use ffi;
pub trait MatrixTrait {
fn null() -> Matrix;
fn new(xx: f64, yx: f64, xy: f64, yy: f64, x0: f64, y0: f64) -> Matrix;
fn multiply(left: &Matrix, right: &Matrix) -> Matrix;
fn identity() -> Matrix;
fn init(&mut self, xx: f64, yx: f64, xy: f64, yy: f64, x0: f64, y0: f64);
fn translate(&mut self, tx: f64, ty: f64);
fn scale(&mut self, sx: f64, sy: f64);
fn rotate(&mut self, angle: f64);
fn invert(&mut self);
fn transform_distance(&self, _dx: f64, _dy: f64) -> (f64, f64);
fn transform_point(&self, _x: f64, _y: f64) -> (f64, f64);
}
impl MatrixTrait for Matrix {
fn null() -> Matrix {
Matrix{
xx: 0.0,
yx: 0.0,
xy: 0.0,
yy: 0.0,
x0: 0.0,
y0: 0.0
}
}
fn new(xx: f64, yx: f64, xy: f64, yy: f64, x0: f64, y0: f64) -> Matrix{
let mut matrix = Matrix::null();
matrix.init(xx, yx, xy, yy, x0, y0);
matrix
}
fn multiply(left: &Matrix, right: &Matrix) -> Matrix {
let mut matrix = Matrix::null();
unsafe {
ffi::cairo_matrix_multiply(&mut matrix, left, right);
}
matrix
}
fn identity() -> Matrix {
let mut matrix = Matrix::null();
unsafe {
ffi::cairo_matrix_init_identity(&mut matrix);
}
matrix
}
fn init(&mut self, xx: f64, yx: f64, xy: f64, yy: f64, x0: f64, y0: f64) {
unsafe {
ffi::cairo_matrix_init(self, xx, yx, xy, yy, x0, y0)
}
}
fn translate(&mut self, tx: f64, ty: f64) {
unsafe {
ffi::cairo_matrix_translate(self, tx, ty)
}
}
fn scale(&mut self, sx: f64, sy: f64) {
unsafe {
ffi::cairo_matrix_scale(self, sx, sy)
}
}
fn rotate(&mut self, angle: f64) {
unsafe {
ffi::cairo_matrix_rotate(self, angle)
}
}
fn invert(&mut self) {
let result = unsafe{
ffi::cairo_matrix_invert(self)
};
result.ensure_valid();
}
fn transform_distance(&self, _dx: f64, _dy: f64) -> (f64, f64){
let mut dx = _dx;
let mut dy = _dy;
unsafe {
ffi::cairo_matrix_transform_distance(self, &mut dx, &mut dy);
}
(dx, dy)
}
fn transform_point(&self, _x: f64, _y: f64) -> (f64, f64){
let mut x = _x;
let mut y = _y;
unsafe {
ffi::cairo_matrix_transform_point(self, &mut x, &mut y);
}
(x, y)
}
}