summaryrefslogtreecommitdiffstats
path: root/dimension
Commit message (Collapse)AuthorAgeFilesLines
* Modularize the libdimension codebase.Tavian Barnes2015-10-251-1/+1
|
* sphere: Use tightest possible bounding boxes.Tavian Barnes2014-06-072-3/+71
|
* gl: Make drawing faster by using a better pixel format.Tavian Barnes2014-04-271-1/+1
|
* client: Don't swallow import errors from the preview module.Tavian Barnes2014-04-261-10/+2
|
* preview: Handle ^C in more places.Tavian Barnes2014-04-261-5/+10
|
* future: Add a dmnsn_future_is_done() function.Tavian Barnes2014-04-261-1/+1
|
* future: Add a race-free way to examine a partial computation.Tavian Barnes2014-04-231-1/+4
| | | | | | 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 Barnes2012-12-172-7/+24
|
* Use inheritance for spheres in cube test.Tavian Barnes2011-12-161-19/+23
|
* Re-think colors.Tavian Barnes2011-12-141-4/+4
| | | | | | | | | 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.
* Rename complex test to cube test.Tavian Barnes2011-12-042-3/+3
|
* Use a separate class for sRGB colors.Tavian Barnes2011-12-043-10/+13
|
* Let Future objects be used as context managers.Tavian Barnes2011-11-041-41/+28
|
* Add a preview window written with PyQt.Tavian Barnes2011-11-043-2/+93
|
* Ship dimension client inside the Python package.Tavian Barnes2011-10-316-233/+301
|
* Make API more consistent.Tavian Barnes2011-10-301-2/+2
| | | | Object methods should be dmnsn_<object>_<fn>().
* Rename progress objects to future objects.Tavian Barnes2011-10-191-5/+5
|
* Don't import dimension right away in dimension.in.Tavian Barnes2011-09-291-1/+2
| | | | Fixes make distcheck.
* Use double rather than single quotes for Python strings.Tavian Barnes2011-09-221-2/+2
|
* Use a sandbox dict for globals when exec()ing the scene file.Tavian Barnes2011-09-221-116/+120
|
* chdir() into the same directory as the scene file.Tavian Barnes2011-09-201-3/+17
|
* Fix --disable-png behaviour in the Python module.Tavian Barnes2011-09-181-1/+7
|
* Add ImageMaps to Python module.Tavian Barnes2011-09-181-1/+1
|
* Add .scale(), .translate(), and .rotate() methods to transformable objects.Tavian Barnes2011-09-181-13/+9
|
* Replace sky_spheres with a single background pigment.Tavian Barnes2011-08-212-16/+6
|
* Don't dynamically allocate timers.Tavian Barnes2011-08-211-2/+2
|
* Support thread cancelation, and handle ^C in the client.Tavian Barnes2011-08-191-9/+21
|
* Add --adc-bailout option.Tavian Barnes2011-08-181-0/+8
|
* Handle reflection correctly in the client.Tavian Barnes2011-08-182-3/+3
|
* Clean up lights in complex.dmnsn even more.Tavian Barnes2011-08-071-2/+2
|
* Clean up lights in complex test.Tavian Barnes2011-08-031-9/+5
|
* Fix progress bars.Tavian Barnes2011-07-291-1/+1
|
* Fix region sanity check.Tavian Barnes2011-07-291-6/+8
|
* Print argument defaults in --help.Tavian Barnes2011-07-291-3/+4
|
* Change --region format.Tavian Barnes2011-07-291-2/+2
|
* Support rendering image subregions.Tavian Barnes2011-07-291-31/+61
| | | | This is the first step to supporting distributed renders.
* Remove color_maps.Tavian Barnes2011-07-281-18/+18
|
* Fix up formatting a bit in complex test.Tavian Barnes2011-07-191-2/+2
|
* Support flags-style syntax for --quality.Tavian Barnes2011-07-131-1/+1
|
* Implement triangles.Tavian Barnes2011-07-131-0/+22
|
* Clean up tests a bit.Tavian Barnes2011-07-131-4/+3
|
* Fix complex test colors.Tavian Barnes2011-07-101-1/+1
|
* Use a default diffuse amount of 0.7.Tavian Barnes2011-06-171-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 Barnes2011-06-172-25/+21
|
* Use /usr/bin/env python3 rather than /usr/bin/python3.Tavian Barnes2011-06-161-1/+1
|
* Put the client in bindir.Tavian Barnes2011-06-162-4/+15
|
* Implement Progress class.Tavian Barnes2011-06-161-8/+26
|
* More slight style fixes.Tavian Barnes2011-06-161-33/+36
|
* Use types for command-line options, and support --quality.Tavian Barnes2011-06-161-7/+11
|
* Add Python client.Tavian Barnes2011-06-165-0/+383
|