Age | Commit message (Collapse) | Author | |
---|---|---|---|
2011-07-10 | missing newline | Marius Kintel | |
2011-07-10 | Moved dev binaries | Marius Kintel | |
2011-07-10 | Started adapting to reorganized testdata folders | Marius Kintel | |
2011-05-01 | Reorganized regression test folders | Marius Kintel | |
2011-05-01 | expected file for include-test | Marius Kintel | |
2011-04-30 | Bugfix: Include of absolute paths to files in the root path weren't parsed ↵ | Marius Kintel | |
correctly; caused a '/' character to be written to stdout | |||
2011-04-30 | dxf-export expected file | Marius Kintel | |
2011-04-29 | expected file for hull-tests | Marius Kintel | |
2011-04-29 | typo | Marius Kintel | |
2011-04-29 | expected file for minkowski-tests | Marius Kintel | |
2011-04-29 | Added expected files for hull and string-test | Marius Kintel | |
2011-04-29 | Added null-tests for hull and minkowski | Marius Kintel | |
2011-04-29 | Renamed to follow test naming scheme | Marius Kintel | |
2011-04-29 | Added hull() | Marius Kintel | |
2011-04-29 | bugfix: hull() was missing name() implementation | Marius Kintel | |
2011-04-29 | Support test cases with space in the filename | Marius Kintel | |
2011-04-29 | bugfix: Cache output for non-existing files should be 0.0 | Marius Kintel | |
2011-04-28 | Added hull() | Marius Kintel | |
2011-04-28 | Merge branch 'master' into visitor | Marius Kintel | |
2011-04-28 | Merged with master | Marius Kintel | |
2011-04-28 | minkowski() and hull() tests from Len | Marius Kintel | |
2011-04-28 | reset version to using date-tag | Marius Kintel | |
2011-04-28 | Minor adjustments | Marius Kintel | |
2011-04-27 | Updated version to 2011.04 | Marius Kintel | |
2011-04-19 | bugfix: 64-bit build of gmp was broken under Leopard, bumped to mpfr 3.0.1 | Marius Kintel | |
2011-04-18 | Added some notes/ideas on visual debugging inspired by Stuart Young | Marius Kintel | |
2011-04-13 | package mpfr and gmp with binaries - thanks Giles | Marius Kintel | |
2011-04-13 | Changed circle calculation to match sphere tessellation; makes example022 ↵ | Marius Kintel | |
look better | |||
2011-04-12 | Merge branch 'master' into sphere-cyl | Marius Kintel | |
2011-04-12 | Must specify both long and short options | Marius Kintel | |
2011-04-12 | Run some tests | Marius Kintel | |
2011-04-12 | bugfix: Pass short options to boost program_options | Marius Kintel | |
2011-04-12 | Added bug | Marius Kintel | |
2011-04-12 | Ported recent changes to master into the visitor branch | Marius Kintel | |
2011-04-12 | Merge branch 'master' of github.com:openscad/openscad | Marius Kintel | |
2011-04-12 | Added note about 2D only for hull() | Marius Kintel | |
2011-04-10 | Added hull() and 2D minkowski | Marius Kintel | |
2011-04-10 | misc. fixes: Now supports hull() in OpenCSG mode, dump supports hull(), ↵ | Marius Kintel | |
convexity not needed for hull() | |||
2011-04-10 | Added warning about missing 3D version of hull() | Marius Kintel | |
2011-04-10 | indentation | Marius Kintel | |
2011-04-10 | Merge branch 'master' into convex-hull | Giles Bathgate | |
Conflicts: src/cgaladv_minkowski2.cc | |||
2011-04-10 | Removed excessive debug output | Marius Kintel | |
2011-04-10 | Bugfix: Handling of input-file was not working | Marius Kintel | |
2011-04-10 | Updated test, you no longer need to union the ojects passed to hull. | Giles Bathgate | |
2011-04-09 | Convex hull now works properly with multiple children that do not ↵ | Giles Bathgate | |
neccecerily need to be touching. | |||
2011-04-09 | Slight improvement. You no longer need an arbitary shape in the script for ↵ | Giles Bathgate | |
it to work. See changes in testdata/scad/convex_hull.scad The square(2) was never rendered it was just there because the hull is calculated when it itterates onto the second child. I also removed the unneeded parameter. | |||
2011-04-09 | Added test script for convex hull. | Giles Bathgate | |
2011-04-09 | Basic implementation of convex hull for 2d polyhedra. | Giles Bathgate | |
The code was provided to me by Len Trigg via email. | |||
2011-04-09 | Merge branch 'minkowski2' into convex-hull | Giles Bathgate | |
2011-04-09 | 2d Minkowski mostly working | Len Trigg | |
When the 2d minkowski was enabled the nef2p2 was bailing out too early. I added a simple p2nef2 based on what projection.cc was doing, and applied it to the outer_boundary of the polygon_with_holes_2. It now seems to work for simple scad code such as: minkowski() { translate([25,0,0]) square(20); circle(r=3); } |