comparison pytouhou/ui/renderer.pxd @ 412:5fe6cd6ceb48

Refactor the maths functions out of Renderer.
author Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
date Wed, 12 Jun 2013 18:30:08 +0200
parents 1c773544eaeb
children d8630c086926
comparison
equal deleted inserted replaced
411:2428296cccab 412:5fe6cd6ceb48
18 cdef VertexFloat *background_vertex_buffer 18 cdef VertexFloat *background_vertex_buffer
19 19
20 cpdef render_elements(self, elements) 20 cpdef render_elements(self, elements)
21 cpdef render_background(self) 21 cpdef render_background(self)
22 cpdef prerender_background(self, background) 22 cpdef prerender_background(self, background)
23 cpdef ortho_2d(self, left, right, bottom, top)
24 cpdef look_at(self, eye, center, up)
25 cpdef perspective(self, fovy, aspect, zNear, zFar)
26 cpdef setup_camera(self, dx, dy, dz)