Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | objects: Implement smooth triangle fans. | Tavian Barnes | 2014-06-08 | 2 | -14/+27 |
| | |||||
* | Use // comments when possible. | Tavian Barnes | 2014-06-07 | 1 | -1/+1 |
| | |||||
* | objects: Implement triangle fans. | Tavian Barnes | 2014-06-07 | 2 | -0/+37 |
| | |||||
* | csg: Avoid copying the child array for unions. | Tavian Barnes | 2014-06-04 | 2 | -8/+6 |
| | |||||
* | triangles: Better API. | Tavian Barnes | 2014-06-04 | 2 | -10/+14 |
| | |||||
* | object: Use pool. | Tavian Barnes | 2014-05-31 | 2 | -48/+31 |
| | |||||
* | texture: Use pool. | Tavian Barnes | 2014-05-31 | 2 | -13/+3 |
| | |||||
* | finish: Use pool. | Tavian Barnes | 2014-05-31 | 2 | -23/+11 |
| | |||||
* | pigment: Use pool. | Tavian Barnes | 2014-05-31 | 2 | -22/+7 |
| | |||||
* | scene: Get rid of dmnsn_delete_scene(). | Tavian Barnes | 2014-05-30 | 2 | -4/+0 |
| | |||||
* | map: Use pool. | Tavian Barnes | 2014-05-30 | 2 | -4/+2 |
| | |||||
* | pattern: Use pool. | Tavian Barnes | 2014-05-30 | 2 | -11/+7 |
| | |||||
* | interior: Use pool. | Tavian Barnes | 2014-05-30 | 2 | -10/+2 |
| | |||||
* | light: Use pool. | Tavian Barnes | 2014-05-30 | 2 | -8/+3 |
| | |||||
* | camera: Use pool. | Tavian Barnes | 2014-05-30 | 2 | -9/+3 |
| | |||||
* | canvas: Use pool. | Tavian Barnes | 2014-05-30 | 2 | -9/+5 |
| | |||||
* | scene: Use pool. | Tavian Barnes | 2014-05-30 | 2 | -2/+2 |
| | |||||
* | python: Add simple global pool interface. | Tavian Barnes | 2014-05-30 | 3 | -3/+31 |
| | |||||
* | future: Add a dmnsn_future_is_done() function. | Tavian Barnes | 2014-04-26 | 2 | -0/+4 |
| | |||||
* | future: Add a race-free way to examine a partial computation. | Tavian Barnes | 2014-04-23 | 2 | -2/+10 |
| | | | | | | 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. | ||||
* | Fix some warnings found by higher warning levels than -Wall. | Tavian Barnes | 2014-03-01 | 1 | -0/+3 |
| | |||||
* | client: Respond to ^C right away if possible. | Tavian Barnes | 2012-12-17 | 1 | -1/+3 |
| | |||||
* | Replace INCLUDES with AM_CFLAGS. | Tavian Barnes | 2012-12-16 | 1 | -3/+1 |
| | |||||
* | Fix compilation with new versions of Cython. | Tavian Barnes | 2012-06-05 | 1 | -1/+1 |
| | |||||
* | Make triangles smooth. | Tavian Barnes | 2011-12-17 | 2 | -4/+19 |
| | |||||
* | Allow one-element CSG operations. | Tavian Barnes | 2011-12-17 | 1 | -8/+8 |
| | |||||
* | Re-think colors. | Tavian Barnes | 2011-12-14 | 3 | -59/+99 |
| | | | | | | | | | 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 | 3 | -6/+8 |
| | |||||
* | Use a separate class for sRGB colors. | Tavian Barnes | 2011-12-04 | 3 | -71/+101 |
| | |||||
* | Add .intensity() and .gray() methods to Colors. | Tavian Barnes | 2011-12-01 | 1 | -0/+5 |
| | |||||
* | Be more consistent about using sRGB in the client. | Tavian Barnes | 2011-11-28 | 3 | -12/+16 |
| | | | | Also, expose the sRGB C and C^-1 functions. | ||||
* | Get rid of dmnsn_color_is_black(). | Tavian Barnes | 2011-11-07 | 3 | -9/+0 |
| | |||||
* | Let Future objects be used as context managers. | Tavian Barnes | 2011-11-04 | 1 | -0/+8 |
| | |||||
* | Don't hold the GIL for blocking operations. | Tavian Barnes | 2011-11-03 | 2 | -4/+8 |
| | |||||
* | Add --enable-debug configure option. | Tavian Barnes | 2011-10-31 | 1 | -0/+4 |
| | |||||
* | Ship dimension client inside the Python package. | Tavian Barnes | 2011-10-31 | 4 | -15/+12 |
| | |||||
* | Make API more consistent. | Tavian Barnes | 2011-10-30 | 3 | -21/+29 |
| | | | | Object methods should be dmnsn_<object>_<fn>(). | ||||
* | Rename progress objects to future objects. | Tavian Barnes | 2011-10-19 | 2 | -38/+37 |
| | |||||
* | Make the default background for a scene Black. | Tavian Barnes | 2011-09-29 | 1 | -4/+2 |
| | | | | Fixes segfault on Scene(...).raytrace(). | ||||
* | Add `doc' target to libdimension-python, using pydoc. | Tavian Barnes | 2011-09-25 | 1 | -0/+9 |
| | |||||
* | Document the _Transformable methods. | Tavian Barnes | 2011-09-23 | 1 | -0/+3 |
| | |||||
* | Use double rather than single quotes for Python strings. | Tavian Barnes | 2011-09-22 | 4 | -15/+15 |
| | |||||
* | 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 | 3 | -5/+16 |
| | |||||
* | Add ImageMaps to Python module. | Tavian Barnes | 2011-09-18 | 2 | -7/+39 |
| | |||||
* | 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 | 2 | -2/+4 |
| | | | | | | | | Also clarify the vector transformation API. Instead of dmnsn_transform_vector(), we have: - dmnsn_transform_point() - dmnsn_transform_direction() - dmnsn_transform_normal() |