Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | math: Make vectors have an array instead of different fields. | Tavian Barnes | 2015-10-25 | 1 | -4/+4 |
| | |||||
* | Modularize the libdimension codebase. | Tavian Barnes | 2015-10-25 | 1 | -4/+4 |
| | |||||
* | canvas: Kill optimizers' ->ptr field. | Tavian Barnes | 2014-06-19 | 1 | -2/+2 |
| | |||||
* | objects: Implement smooth triangle fans. | Tavian Barnes | 2014-06-08 | 1 | -14/+26 |
| | |||||
* | objects: Implement triangle fans. | Tavian Barnes | 2014-06-07 | 1 | -0/+27 |
| | |||||
* | csg: Avoid copying the child array for unions. | Tavian Barnes | 2014-06-04 | 1 | -8/+5 |
| | |||||
* | triangles: Better API. | Tavian Barnes | 2014-06-04 | 1 | -5/+12 |
| | |||||
* | object: Use pool. | Tavian Barnes | 2014-05-31 | 1 | -24/+14 |
| | |||||
* | texture: Use pool. | Tavian Barnes | 2014-05-31 | 1 | -9/+1 |
| | |||||
* | finish: Use pool. | Tavian Barnes | 2014-05-31 | 1 | -12/+4 |
| | |||||
* | pigment: Use pool. | Tavian Barnes | 2014-05-31 | 1 | -15/+3 |
| | |||||
* | scene: Get rid of dmnsn_delete_scene(). | Tavian Barnes | 2014-05-30 | 1 | -3/+0 |
| | |||||
* | map: Use pool. | Tavian Barnes | 2014-05-30 | 1 | -1/+1 |
| | |||||
* | pattern: Use pool. | Tavian Barnes | 2014-05-30 | 1 | -7/+3 |
| | |||||
* | interior: Use pool. | Tavian Barnes | 2014-05-30 | 1 | -8/+1 |
| | |||||
* | light: Use pool. | Tavian Barnes | 2014-05-30 | 1 | -5/+1 |
| | |||||
* | camera: Use pool. | Tavian Barnes | 2014-05-30 | 1 | -5/+1 |
| | |||||
* | canvas: Use pool. | Tavian Barnes | 2014-05-30 | 1 | -6/+2 |
| | |||||
* | scene: Use pool. | Tavian Barnes | 2014-05-30 | 1 | -1/+1 |
| | |||||
* | python: Add simple global pool interface. | Tavian Barnes | 2014-05-30 | 1 | -0/+18 |
| | |||||
* | future: Add a dmnsn_future_is_done() function. | Tavian Barnes | 2014-04-26 | 1 | -0/+3 |
| | |||||
* | future: Add a race-free way to examine a partial computation. | Tavian Barnes | 2014-04-23 | 1 | -1/+7 |
| | | | | | | This allows safe OpenGL previews, for example. dmnsn_future* learned the dmnsn_future_{pause,resume}() functions which cause all worker threads to block. render.test now survives Helgrind with no errors. | ||||
* | client: Respond to ^C right away if possible. | Tavian Barnes | 2012-12-17 | 1 | -1/+3 |
| | |||||
* | Fix compilation with new versions of Cython. | Tavian Barnes | 2012-06-05 | 1 | -1/+1 |
| | |||||
* | Make triangles smooth. | Tavian Barnes | 2011-12-17 | 1 | -3/+12 |
| | |||||
* | Allow one-element CSG operations. | Tavian Barnes | 2011-12-17 | 1 | -8/+8 |
| | |||||
* | Re-think colors. | Tavian Barnes | 2011-12-14 | 1 | -36/+74 |
| | | | | | | | | | Color is a property of light, and thus doesn't include information about transparency. But canvas pixels and object pigments represent a color and a degree of transparency. The new type dmnsn_tcolor/ TColor encapsulates that information. Also, fix the transparent shadow implementation. | ||||
* | Hide the presence of dimension.wrapper from wrapper types. | Tavian Barnes | 2011-12-05 | 1 | -0/+1634 |
| | |||||
* | Ship dimension client inside the Python package. | Tavian Barnes | 2011-10-31 | 1 | -1590/+0 |
| | |||||
* | Make API more consistent. | Tavian Barnes | 2011-10-30 | 1 | -11/+19 |
| | | | | Object methods should be dmnsn_<object>_<fn>(). | ||||
* | Rename progress objects to future objects. | Tavian Barnes | 2011-10-19 | 1 | -27/+26 |
| | |||||
* | Make the default background for a scene Black. | Tavian Barnes | 2011-09-29 | 1 | -4/+2 |
| | | | | Fixes segfault on Scene(...).raytrace(). | ||||
* | Document the _Transformable methods. | Tavian Barnes | 2011-09-23 | 1 | -0/+3 |
| | |||||
* | Add a filename parameter to _raise_OSError(). | Tavian Barnes | 2011-09-20 | 1 | -5/+8 |
| | |||||
* | Fix --disable-png behaviour in the Python module. | Tavian Barnes | 2011-09-18 | 1 | -3/+13 |
| | |||||
* | Add ImageMaps to Python module. | Tavian Barnes | 2011-09-18 | 1 | -7/+37 |
| | |||||
* | Add finalizers to Progress objects. | Tavian Barnes | 2011-09-18 | 1 | -1/+11 |
| | | | | | Allows fclose() to be called after the PNG file is written, for example. | ||||
* | Add .scale(), .translate(), and .rotate() methods to transformable objects. | Tavian Barnes | 2011-09-18 | 1 | -6/+14 |
| | |||||
* | Document and fix some things in the Python module. | Tavian Barnes | 2011-09-16 | 1 | -22/+28 |
| | |||||
* | Make Textures transformable. | Tavian Barnes | 2011-09-16 | 1 | -0/+5 |
| | |||||
* | Transform normals as pseudovectors, not vectors. | Tavian Barnes | 2011-09-14 | 1 | -1/+1 |
| | | | | | | | | Also clarify the vector transformation API. Instead of dmnsn_transform_vector(), we have: - dmnsn_transform_point() - dmnsn_transform_direction() - dmnsn_transform_normal() | ||||
* | Use dmnsn_object::intrinsic_trans from Python. | Tavian Barnes | 2011-09-12 | 1 | -5/+4 |
| | |||||
* | Constrain some invariants a bit tighter in Python module. | Tavian Barnes | 2011-09-07 | 1 | -7/+15 |
| | |||||
* | Replace sky_spheres with a single background pigment. | Tavian Barnes | 2011-08-21 | 1 | -43/+10 |
| | |||||
* | Don't dynamically allocate timers. | Tavian Barnes | 2011-08-21 | 1 | -15/+5 |
| | |||||
* | Support thread cancelation, and handle ^C in the client. | Tavian Barnes | 2011-08-19 | 1 | -3/+9 |
| | |||||
* | Handle reflection correctly in the client. | Tavian Barnes | 2011-08-18 | 1 | -2/+5 |
| | |||||
* | Rename "translucency" to "transparency". | Tavian Barnes | 2011-08-12 | 1 | -2/+2 |
| | | | | Perhaps I should look up terms before I use them. | ||||
* | Use regular def for Matrix.inverse(). | Tavian Barnes | 2011-08-12 | 1 | -2/+3 |
| | | | | cpdef seems to generate non-ISO-C code. | ||||
* | Take *args and **kwargs in Cylinder(). | Tavian Barnes | 2011-08-03 | 1 | -2/+4 |
| |