Mercurial > touhou
comparison pytouhou/utils/matrix.pxd @ 223:98c64ffcbdff
Make pytouhou.ui.{background,texture} Cython modules as they are only used by Cython modules.
author | Thibaut Girka <thib@sitedethib.com> |
---|---|
date | Sun, 18 Dec 2011 21:23:51 +0100 |
parents | fab7ad2f0d8b |
children | efae61ad6efe |
comparison
equal
deleted
inserted
replaced
222:5cac48b328ad | 223:98c64ffcbdff |
---|---|
1 cdef class Matrix: | 1 cdef class Matrix: |
2 cdef public data | 2 cdef public list data |
3 | 3 |
4 cpdef flip(Matrix self) | 4 cpdef flip(Matrix self) |
5 cpdef scale(Matrix self, x, y, z) | 5 cpdef scale(Matrix self, x, y, z) |
6 cpdef scale2d(Matrix self, x, y) | 6 cpdef scale2d(Matrix self, x, y) |
7 cpdef translate(Matrix self, x, y, z) | 7 cpdef translate(Matrix self, x, y, z) |