Mercurial > touhou
view pytouhou/utils/vector.pxd @ 583:47cf4e3d159d
Use libepoxy to discover the actual GL version we are using, and available extensions.
author | Emmanuel Gil Peyrot <linkmauve@linkmauve.fr> |
---|---|
date | Sun, 05 Oct 2014 20:38:06 +0200 |
parents | 7f016dfbdfb1 |
children |
line wrap: on
line source
cdef struct Vector: float x, y, z cdef Vector sub(Vector vec1, Vector vec2) cdef Vector cross(Vector vec1, Vector vec2) cdef float dot(Vector vec1, Vector vec2) nogil cdef Vector normalize(Vector vec)