summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Add transformations to textures and pigments.Tavian Barnes2010-04-159-131/+149
| | | | | Also, object intersection callbacks are now responsible for handling their own transformations.
* New canvas pigment (image map).Tavian Barnes2010-04-133-0/+61
|
* Remove a bunch of errno.h includes.Tavian Barnes2010-04-1319-19/+0
|
* Fix low-quality renders.Tavian Barnes2010-04-111-0/+2
|
* Get rid of some duplication in csg.c, and fix missed add of dmnsn_epsilon.Tavian Barnes2010-04-111-163/+23
|
* Add --quality option.Tavian Barnes2010-04-111-1/+20
|
* Print usage information in dimension.Tavian Barnes2010-04-112-18/+47
|
* Improve CSG and light handling.Tavian Barnes2010-04-107-139/+296
| | | | | | - Lights can be inside CSG objects - Lights can be modified by transformations - CSG objects can contain only one object
* Forgot to lex 'translate' and 'scale'.Tavian Barnes2010-04-101-0/+2
|
* Don't use dynamic memory for dmnsn_intersection's.Tavian Barnes2010-04-079-242/+231
| | | | Drops us from ~400,000 allocs to ~1000. Oops ><.
* Calculate CSG bounding boxes more accurately.Tavian Barnes2010-04-071-9/+3
|
* New dmnsn_malloc() function, and friends.Tavian Barnes2010-04-0741-959/+438
| | | | | | 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.
* Implement CSG in front-end.Tavian Barnes2010-04-079-81/+340
|
* Implement CSG differences in libdimension.Tavian Barnes2010-04-062-2/+140
|
* Re-cast rays properly in intersections and merges.Tavian Barnes2010-04-061-9/+38
|
* Add CSG merges to libdimension.Tavian Barnes2010-04-062-1/+126
|
* Add CSG intersections to libdimension.Tavian Barnes2010-04-062-1/+126
|
* Fix BVST benchmark.Tavian Barnes2010-04-061-13/+13
|
* Add CSG unions to libdimension.Tavian Barnes2010-04-065-2/+191
|
* New dmnsn_bounding_box type.Tavian Barnes2010-04-068-110/+135
|
* New dmnsn_vector_min() and _max() functions.Tavian Barnes2010-04-062-7/+22
|
* Make inside_fn's return bool.Tavian Barnes2010-04-054-10/+12
|
* Set errno on failures.Tavian Barnes2010-04-0122-39/+117
|
* Add --disable-png configure option.Tavian Barnes2010-04-014-2/+73
|
* Add --disable-gl configure option.Tavian Barnes2010-04-014-2/+64
|
* Plug memory leak.Tavian Barnes2010-03-311-0/+2
|
* Support object identifiers.Tavian Barnes2010-03-315-11/+106
|
* Fix parsing of #include files containing #if.Tavian Barnes2010-03-241-18/+18
|
* New dmnsn_clear_canvas() function.Tavian Barnes2010-03-243-0/+16
| | | | Makes valgrind happier about the GL test.
* Use $var instead of __var__ for internal symbols.Tavian Barnes2010-03-234-29/+29
|
* Allow identifiers beginning with _.Tavian Barnes2010-03-231-1/+1
|
* Standardise diagnostics a bit.Tavian Barnes2010-03-233-6/+6
|
* Whitespace fix.Tavian Barnes2010-03-231-1/+1
|
* Implement macro support.Tavian Barnes2010-03-2311-85/+398
|
* Implement most vector functions.Tavian Barnes2010-03-237-40/+285
|
* Support the ternary operator.Tavian Barnes2010-03-229-51/+90
|
* Handle built-in vector IDs the same way as floats.Tavian Barnes2010-03-224-45/+72
|
* Add built-in float constants.Tavian Barnes2010-03-227-7/+91
|
* Support logical ! operator.Tavian Barnes2010-03-227-2/+17
|
* Support max() and min().Tavian Barnes2010-03-208-2/+78
|
* Implement almost all float functions.Tavian Barnes2010-03-207-37/+386
|
* A bunch more float functions.Tavian Barnes2010-03-208-43/+315
|
* Make float equality comparisons more relaxed.Tavian Barnes2010-03-193-18/+25
|
* Support exp().Tavian Barnes2010-03-198-4/+21
|
* Clean up dmnsn_eval_{unary,binary}().Tavian Barnes2010-03-191-75/+88
|
* Fix some warnings reported by clang static analysis.Tavian Barnes2010-03-183-2/+7
|
* Rename dmnsn_bvst_copy() to dmnsn_copy_bvst().Tavian Barnes2010-03-163-3/+3
|
* Check for realloc() failures.Tavian Barnes2010-03-122-0/+5
|
* Check for malloc() failures.Tavian Barnes2010-03-123-6/+13
|
* Check for strdup() failures.Tavian Barnes2010-03-122-5/+13
|