]> git.jsancho.org Git - gacela.git/commitdiff
(no commit message)
authorjsancho <devnull@localhost>
Sun, 20 Dec 2009 08:54:53 +0000 (08:54 +0000)
committerjsancho <devnull@localhost>
Sun, 20 Dec 2009 08:54:53 +0000 (08:54 +0000)
gacela_draw.lisp

index d992ba5d57cbcca68a40f7d3f1f44e32368e3b74..dae68d4f8fced5924fb1f038327bd4d6d293158e 100644 (file)
 (defun translate (x y &optional (z 0))
   (glTranslatef x y z))
 
-(defun rotate (xrot yrot zrot)
+(defun rotate (&rest rot)
+  (cond ((3d-mode?) (apply #'3d-rotate rot))
+       (t (apply #'2d-rotate rot))))
+
+(defun 3d-rotate (xrot yrot zrot)
   (glRotatef xrot 1 0 0)
   (glRotatef yrot 0 1 0)
   (glRotatef zrot 0 0 1))
 
 (defun 2d-rotate (rot)
-  (rotate 0 0 rot))
\ No newline at end of file
+  (glRotatef rot 0 0 1))
+
+(defun to-origin ()
+  (glLoadIdentity))