Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | 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 |
| | |||||
* | Support max() and min(). | Tavian Barnes | 2010-03-20 | 8 | -2/+78 |
| | |||||
* | Implement almost all float functions. | Tavian Barnes | 2010-03-20 | 7 | -37/+386 |
| | |||||
* | A bunch more float functions. | Tavian Barnes | 2010-03-20 | 8 | -43/+315 |
| | |||||
* | Make float equality comparisons more relaxed. | Tavian Barnes | 2010-03-19 | 3 | -18/+25 |
| | |||||
* | Support exp(). | Tavian Barnes | 2010-03-19 | 8 | -4/+21 |
| | |||||
* | Clean up dmnsn_eval_{unary,binary}(). | Tavian Barnes | 2010-03-19 | 1 | -75/+88 |
| | |||||
* | Fix some warnings reported by clang static analysis. | Tavian Barnes | 2010-03-18 | 3 | -2/+7 |
| | |||||
* | Rename dmnsn_bvst_copy() to dmnsn_copy_bvst(). | Tavian Barnes | 2010-03-16 | 3 | -3/+3 |
| | |||||
* | Check for realloc() failures. | Tavian Barnes | 2010-03-12 | 2 | -0/+5 |
| | |||||
* | Check for malloc() failures. | Tavian Barnes | 2010-03-12 | 3 | -6/+13 |
| | |||||
* | Check for strdup() failures. | Tavian Barnes | 2010-03-12 | 2 | -5/+13 |
| | |||||
* | Use PATRICIA tries for symbol table scopes. | Tavian Barnes | 2010-03-12 | 1 | -146/+309 |
| | |||||
* | Say "1 thread" instead of "1 threads". | Tavian Barnes | 2010-03-11 | 1 | -1/+4 |
| | |||||
* | Warn about "rounding" not "casting" floats to integers. | Tavian Barnes | 2010-03-11 | 1 | -1/+1 |
| | |||||
* | Preliminary support for global_settings. | Tavian Barnes | 2010-03-09 | 7 | -83/+177 |
| |