Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | 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() | ||||
* | Use dmnsn_object::intrinsic_trans from Python. | Tavian Barnes | 2011-09-12 | 2 | -5/+5 |
| | |||||
* | 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 | 3 | -58/+12 |
| | |||||
* | Don't dynamically allocate timers. | Tavian Barnes | 2011-08-21 | 2 | -20/+9 |
| | |||||
* | Support thread cancelation, and handle ^C in the client. | Tavian Barnes | 2011-08-19 | 2 | -3/+10 |
| | |||||
* | Handle reflection correctly in the client. | Tavian Barnes | 2011-08-18 | 1 | -2/+5 |
| | |||||
* | Rename "translucency" to "transparency". | Tavian Barnes | 2011-08-12 | 2 | -3/+3 |
| | | | | 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 |
| | |||||
* | Add [] accessors to Canvases. | Tavian Barnes | 2011-07-29 | 2 | -0/+36 |
| | |||||
* | Support rendering image subregions. | Tavian Barnes | 2011-07-29 | 2 | -7/+47 |
| | | | | This is the first step to supporting distributed renders. | ||||
* | Add leopard pigment. | Tavian Barnes | 2011-07-28 | 2 | -0/+7 |
| | |||||
* | Make the checker pattern a singleton. | Tavian Barnes | 2011-07-28 | 2 | -9/+1 |
| | |||||
* | Remove color_maps. | Tavian Barnes | 2011-07-28 | 2 | -37/+0 |
| | |||||
* | Reduce duplication between demo.py and demo.dmnsn. | Tavian Barnes | 2011-07-26 | 2 | -130/+7 |
| | |||||
* | Add some sanity checking. | Tavian Barnes | 2011-07-26 | 1 | -1/+6 |
| | |||||
* | Implement quick_color for Pigments. | Tavian Barnes | 2011-07-13 | 2 | -10/+19 |
| | |||||
* | Support flags-style syntax for --quality. | Tavian Barnes | 2011-07-13 | 1 | -4/+59 |
| | |||||
* | Implement triangles. | Tavian Barnes | 2011-07-13 | 3 | -0/+37 |
| | |||||
* | Clean up tests a bit. | Tavian Barnes | 2011-07-13 | 1 | -4/+3 |
| | |||||
* | Use a default diffuse amount of 0.7. | Tavian Barnes | 2011-06-17 | 1 | -1/+1 |
| | | | | | POV-Ray's default of 0.6 was added to a 0.1 ambient. But when you do the sRGB correctly, 0.6 + 0.1 ~= 0.6. | ||||
* | Add pigment= and finish= shorthand to Object.__init__(). | Tavian Barnes | 2011-06-17 | 2 | -34/+77 |
| | |||||
* | Use /usr/bin/env python3 rather than /usr/bin/python3. | Tavian Barnes | 2011-06-16 | 4 | -4/+4 |
| | |||||
* | Implement Progress class. | Tavian Barnes | 2011-06-16 | 5 | -7/+140 |
| | |||||
* | Fix python module license. | Tavian Barnes | 2011-06-16 | 2 | -12/+14 |
| | |||||
* | More slight style fixes. | Tavian Barnes | 2011-06-16 | 1 | -4/+4 |
| | |||||
* | Use types for command-line options, and support --quality. | Tavian Barnes | 2011-06-16 | 1 | -1/+8 |
| | |||||
* | Make python module more "pythonic". | Tavian Barnes | 2011-06-15 | 5 | -190/+562 |
| | | | | Use lower_case instead of mixedCase, and add docstrings. | ||||
* | Add .pigment and .finish properties to Textures. | Tavian Barnes | 2011-06-15 | 2 | -50/+60 |
| | |||||
* | Use propper extensions for tests. | Tavian Barnes | 2011-06-14 | 1 | -0/+1 |
| | |||||
* | Add Timers to Python module. | Tavian Barnes | 2011-06-14 | 2 | -0/+59 |
| |