summaryrefslogtreecommitdiff
path: root/2d/vector2.scm
Commit message (Collapse)AuthorAgeFilesLines
* Replace vector2 module with a more generic vector module.David Thompson2014-06-071-112/+0
| | | | | | | | | | | | | | | | | | | | | | | | | * 2d/vector2.scm: Delete it. * 2d/vector.scm: New file. * Makefile.am (SOURCES): s/vector2/vector. * 2d/font.scm: * 2d/keyboard.scm: * 2d/mouse.scm: * 2d/rect.scm: * 2d/shader.scm: * 2d/sprite.scm: * 2d/texture.scm: * 2d/transform.scm: * 2d/window.scm: * examples/2048/2048: * examples/animation.scm: * examples/coroutine.scm: * examples/font.scm: * examples/particles.scm: * examples/simple.scm: * examples/tilemap.scm: Use vectors instead of defunct vector2.
* Add v= procedure.David Thompson2014-05-271-0/+5
| | | | * 2d/vector2.scm (v=): New procedure.
* Add scalar multiplication support to v* and remove vscale.David Thompson2014-05-271-8/+7
| | | | | * 2d/vector2.scm (vscale): Delete it. (v*): Add support for scalar multiplication.
* Remove vector2-translate and vector2-scale.David Thompson2014-03-291-11/+1
| | | | | * 2d/vector2.scm (vector2-translate): Delete it. (vector2-scale): Delete it.
* Replace figl with the new guile-opengl official release.David Thompson2014-03-231-1/+0
|
* Change license to GPLv3+.David Thompson2014-03-081-8/+8
|
* Clean up docstrings for vector2 module.David Thompson2013-09-151-13/+13
|
* Add procedures to perform a gl-translate or gl-scale given a vector2 object.David Thompson2013-08-271-1/+13
|
* Create new 2D vector module.David Thompson2013-08-271-0/+107