summaryrefslogtreecommitdiffstats
path: root/libdimension/camera.c
Commit message (Collapse)AuthorAgeFilesLines
* malloc: New DMNSN_MALLOC() macro to save a sizeof().Tavian Barnes2014-05-061-2/+2
|
* Use macros to initialize refcounts.Tavian Barnes2011-12-241-3/+3
|
* Make API more consistent.Tavian Barnes2011-10-301-1/+1
| | | | Object methods should be dmnsn_<object>_<fn>().
* Update copyright years.Tavian Barnes2011-08-311-1/+1
|
* Vast libdimension API and internals improvements.Tavian Barnes2011-06-131-2/+2
| | | | | Couldn't really do these while I was trying to be POV-Ray compatible, 'cause they would've broken compatibility.
* Don't allocate reference counts on the heap.Tavian Barnes2011-05-281-2/+1
|
* Add refcounts to cameras.Tavian Barnes2011-05-211-3/+5
|
* Don't use awkward (*fptr)() syntax.Tavian Barnes2011-04-031-2/+2
|
* Update email address.Tavian Barnes2011-03-081-1/+1
|
* Make some empty parameter lists explicit.Tavian Barnes2010-11-301-1/+1
|
* Document libdimension with Doxygen.Tavian Barnes2010-11-141-0/+14
|
* Add dmnsn_free() to match dmnsn_malloc().Tavian Barnes2010-09-261-1/+1
|
* Fix some copyright dates.Tavian Barnes2010-05-101-1/+1
|
* Fix some includes.Tavian Barnes2010-04-271-0/+1
|
* Remove a bunch of errno.h includes.Tavian Barnes2010-04-131-1/+0
|
* New dmnsn_malloc() function, and friends.Tavian Barnes2010-04-071-7/+2
| | | | | | I'm tired of checking for malloc failures everywhere, considering it never happens. So just bail out whenever it does. A lot of stuff is guaranteed to succeed if it returns now.
* Set errno on failures.Tavian Barnes2010-04-011-0/+3
|
* Fix up license blurbs and copyright year.Tavian Barnes2010-01-271-1/+1
|
* Add destructor callbacks for polymorphic C types, and use their baseTavian Barnes2009-07-161-2/+11
| | | | dmnsn_delete_*() function.
* Update license copyrights to 2009.Tavian Barnes2009-07-081-1/+1
|
* New C++ dmnsn_camera* wrapper.Tavian Barnes2009-07-011-57/+0
|
* Add lots of comments, and some code fixes discovered in the process.Tavian Barnes2009-06-261-0/+10
|
* Properly forward-declare dmnsn_object and dmnsn_camera, and take aTavian Barnes2009-06-131-6/+23
| | | | transformation matrix in dmnsn_new_perspective_camera().
* Add camera type.Tavian Barnes2009-06-131-0/+66