diff pytouhou/utils/matrix.pxd @ 620:e5361b74b9ad

Remove 3d scaling code for matrix, as it isn’t used anywhere in the codebase.
author Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
date Wed, 01 Apr 2015 02:28:54 +0200
parents db28538cd399
children
line wrap: on
line diff
--- a/pytouhou/utils/matrix.pxd
+++ b/pytouhou/utils/matrix.pxd
@@ -9,7 +9,6 @@ cdef Matrix *new_identity() nogil
 
 cdef void mul(Matrix *mat1, Matrix *mat2) nogil
 cdef void flip(Matrix *mat) nogil
-cdef void scale(Matrix *mat, float x, float y, float z) nogil
 cdef void scale2d(Matrix *mat, float x, float y) nogil
 cdef void translate(Matrix *mat, float[3] offset) nogil
 cdef void translate2d(Matrix *mat, float x, float y) nogil