Skip to content

Commit 5c695ad

Browse files
author
Carlos Une
committed
Add cairo_types.f90: cairo_matrix_t; Issue #2
1 parent 767db43 commit 5c695ad

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

src/cairo-types.f90

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
module cairo_types
2+
use iso_c_binding, only: c_double
3+
implicit none
4+
5+
type, bind(c) :: cairo_matrix_t
6+
real(c_double) :: xx
7+
real(c_double) :: yx
8+
real(c_double) :: xy
9+
real(c_double) :: yy
10+
real(c_double) :: x0
11+
real(c_double) :: y0
12+
end type
13+
14+
end module

0 commit comments

Comments
 (0)