Age | Commit message (Collapse) | Author | |
---|---|---|---|
2013-07-28 | In this commit i'll change just the Qt project, c and header files to get ↵ | Ivo Noorhoff | |
OpenSCAD building and working on Windows 7 compiled with Visual Studio Express 2012. A couple of things needed changing : * MSVC 2012 has no trunc or round, i have added those to mathc99 and included mathc99 to the files needed. The implementations were taken from boost. * MSVC 2012 stl does now allow accessing out of bounds elements in std:vector as an array, so "chain->objects[i]" will fail in "OpenCSGRenderer::renderCSGChain". Whatever the platform, it will me a good idea to change this code to something that does not trigger undefined behavior. * MSVC 2012 cannot figure out the types involved in "if (file_size == 80 + 4 + 50*facenum) {", i have added a cast to force it to "if (file_size == static_cast<std::streamoff>(80 + 4 + 50*facenum)) {". The next round would be regression testing and debugging and possibly more changes to the OpenSCAD main code. The round after that would be changing the .pro and .pri files to create correct visual studio solutions. | |||
2013-05-25 | Tuning of highlight and background modifiers | Marius Kintel | |
2013-05-24 | Initial implementation of improved operator handling. Provides the bulk of ↵ | Marius Kintel | |
work for #304 | |||
2013-05-09 | Quick feasibility test for #304 | Marius Kintel | |
2011-12-25 | Color overriding now works. The outermost color will win if multiple colors ↵ | Marius Kintel | |
are specified for the same object | |||
2011-12-11 | Some small refactoring of color handling to support using the color() module ↵ | Marius Kintel | |
to change only alpha | |||
2011-12-04 | Killed some warnings | Marius Kintel | |
2011-10-04 | Rewrote some hard to read linear algebra code to use Eigen | Marius Kintel | |
2011-09-30 | Cleaned up some unnecessary includes | Marius Kintel | |
2011-09-11 | Reenabled PolySet caching. Pass shared_ptrs to polysets around to better ↵ | Marius Kintel | |
manage memory | |||
2011-09-08 | Killed some warnings | Marius Kintel | |
2011-09-02 | disable setting alpha without color | Marius Kintel | |
2011-09-02 | Refactoring: Moved color functionality into separate module and node | Marius Kintel | |
2011-08-05 | Started on getBoundingBox functionality, refactored some vector code as part ↵ | Marius Kintel | |
of this initiative | |||
2011-08-04 | Merge branch 'master' into visitor | Marius Kintel | |
Conflicts: src/OpenCSGRenderer.cc src/csgops.cc src/mainwin.cc src/polyset.cc src/projection.cc | |||
2011-08-03 | fix broken build on systems that use case sensitive filenames (linux) | Don Bright | |