Mercurial > touhou
view pytouhou/utils/vector.pxd @ 530:64d9117b9209
Replace the --no-music option with --no-sound, disabling sound rendering altogether.
author | Emmanuel Gil Peyrot <linkmauve@linkmauve.fr> |
---|---|
date | Thu, 27 Mar 2014 21:30:04 +0100 |
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)