Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Validate command line arguments. | Tavian Barnes | 2010-04-17 | 1 | -8/+8 | |
| | ||||||
* | Warn on division by zero, instead of crashing. | Tavian Barnes | 2010-04-17 | 1 | -6/+36 | |
| | ||||||
* | New --resilience command-line argument. | Tavian Barnes | 2010-04-16 | 1 | -19/+30 | |
| | ||||||
* | Document --quality. | Tavian Barnes | 2010-04-16 | 1 | -1/+2 | |
| | ||||||
* | Implement image_{width,height}. | Tavian Barnes | 2010-04-16 | 8 | -7/+19 | |
| | ||||||
* | Initial support for image_maps. | Tavian Barnes | 2010-04-15 | 7 | -7/+71 | |
| | ||||||
* | Fix canvas_pigments with negative coordinates. | Tavian Barnes | 2010-04-15 | 1 | -7/+4 | |
| | ||||||
* | Support transforming pigments and textures in dimension. | Tavian Barnes | 2010-04-15 | 8 | -30/+97 | |
| | ||||||
* | Support planes in dimension. | Tavian Barnes | 2010-04-15 | 9 | -2/+59 | |
| | ||||||
* | Add plane object. | Tavian Barnes | 2010-04-15 | 4 | -0/+93 | |
| | ||||||
* | Support infinitely large bounding boxes. | Tavian Barnes | 2010-04-15 | 2 | -10/+17 | |
| | ||||||
* | Add transformations to textures and pigments. | Tavian Barnes | 2010-04-15 | 9 | -131/+149 | |
| | | | | | Also, object intersection callbacks are now responsible for handling their own transformations. | |||||
* | New canvas pigment (image map). | Tavian Barnes | 2010-04-13 | 3 | -0/+61 | |
| | ||||||
* | Remove a bunch of errno.h includes. | Tavian Barnes | 2010-04-13 | 19 | -19/+0 | |
| | ||||||
* | Fix low-quality renders. | Tavian Barnes | 2010-04-11 | 1 | -0/+2 | |
| | ||||||
* | Get rid of some duplication in csg.c, and fix missed add of dmnsn_epsilon. | Tavian Barnes | 2010-04-11 | 1 | -163/+23 | |
| | ||||||
* | Add --quality option. | Tavian Barnes | 2010-04-11 | 1 | -1/+20 | |
| | ||||||
* | Print usage information in dimension. | Tavian Barnes | 2010-04-11 | 2 | -18/+47 | |
| | ||||||
* | Improve CSG and light handling. | Tavian Barnes | 2010-04-10 | 7 | -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 Barnes | 2010-04-10 | 1 | -0/+2 | |
| | ||||||
* | Don't use dynamic memory for dmnsn_intersection's. | Tavian Barnes | 2010-04-07 | 9 | -242/+231 | |
| | | | | Drops us from ~400,000 allocs to ~1000. Oops ><. | |||||
* | Calculate CSG bounding boxes more accurately. | Tavian Barnes | 2010-04-07 | 1 | -9/+3 | |
| | ||||||
* | New dmnsn_malloc() function, and friends. | Tavian Barnes | 2010-04-07 | 41 | -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 Barnes | 2010-04-07 | 9 | -81/+340 | |
| | ||||||
* | Implement CSG differences in libdimension. | Tavian Barnes | 2010-04-06 | 2 | -2/+140 | |
| | ||||||
* | Re-cast rays properly in intersections and merges. | Tavian Barnes | 2010-04-06 | 1 | -9/+38 | |
| | ||||||
* | Add CSG merges to libdimension. | Tavian Barnes | 2010-04-06 | 2 | -1/+126 | |
| | ||||||
* | Add CSG intersections to libdimension. | Tavian Barnes | 2010-04-06 | 2 | -1/+126 | |
| | ||||||
* | Fix BVST benchmark. | Tavian Barnes | 2010-04-06 | 1 | -13/+13 | |
| | ||||||
* | Add CSG unions to libdimension. | Tavian Barnes | 2010-04-06 | 5 | -2/+191 | |
| | ||||||
* | New dmnsn_bounding_box type. | Tavian Barnes | 2010-04-06 | 8 | -110/+135 | |
| | ||||||
* | New dmnsn_vector_min() and _max() functions. | Tavian Barnes | 2010-04-06 | 2 | -7/+22 | |
| | ||||||
* | Make inside_fn's return bool. | Tavian Barnes | 2010-04-05 | 4 | -10/+12 | |
| | ||||||
* | Set errno on failures. | Tavian Barnes | 2010-04-01 | 22 | -39/+117 | |
| | ||||||
* | Add --disable-png configure option. | Tavian Barnes | 2010-04-01 | 4 | -2/+73 | |
| | ||||||
* | Add --disable-gl configure option. | Tavian Barnes | 2010-04-01 | 4 | -2/+64 | |
| | ||||||
* | Plug memory leak. | Tavian Barnes | 2010-03-31 | 1 | -0/+2 | |
| | ||||||
* | Support object identifiers. | Tavian Barnes | 2010-03-31 | 5 | -11/+106 | |
| | ||||||
* | Fix parsing of #include files containing #if. | Tavian Barnes | 2010-03-24 | 1 | -18/+18 | |
| | ||||||
* | New dmnsn_clear_canvas() function. | Tavian Barnes | 2010-03-24 | 3 | -0/+16 | |
| | | | | Makes valgrind happier about the GL test. | |||||
* | Use $var instead of __var__ for internal symbols. | Tavian Barnes | 2010-03-23 | 4 | -29/+29 | |
| | ||||||
* | Allow identifiers beginning with _. | Tavian Barnes | 2010-03-23 | 1 | -1/+1 | |
| | ||||||
* | Standardise diagnostics a bit. | Tavian Barnes | 2010-03-23 | 3 | -6/+6 | |
| | ||||||
* | Whitespace fix. | Tavian Barnes | 2010-03-23 | 1 | -1/+1 | |
| | ||||||
* | Implement macro support. | Tavian Barnes | 2010-03-23 | 11 | -85/+398 | |
| | ||||||
* | Implement most vector functions. | Tavian Barnes | 2010-03-23 | 7 | -40/+285 | |
| | ||||||
* | Support the ternary operator. | Tavian Barnes | 2010-03-22 | 9 | -51/+90 | |
| | ||||||
* | Handle built-in vector IDs the same way as floats. | Tavian Barnes | 2010-03-22 | 4 | -45/+72 | |
| | ||||||
* | Add built-in float constants. | Tavian Barnes | 2010-03-22 | 7 | -7/+91 | |
| | ||||||
* | Support logical ! operator. | Tavian Barnes | 2010-03-22 | 7 | -2/+17 | |
| |