summaryrefslogtreecommitdiff
path: root/src/OpenCSGRenderer.cc
AgeCommit message (Collapse)Author
2013-07-28In 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-25Tuning of highlight and background modifiersMarius Kintel
2013-05-24Initial implementation of improved operator handling. Provides the bulk of ↵Marius Kintel
work for #304
2013-05-09Quick feasibility test for #304Marius Kintel
2011-12-25Color overriding now works. The outermost color will win if multiple colors ↵Marius Kintel
are specified for the same object
2011-12-11Some small refactoring of color handling to support using the color() module ↵Marius Kintel
to change only alpha
2011-12-04Killed some warningsMarius Kintel
2011-10-04Rewrote some hard to read linear algebra code to use EigenMarius Kintel
2011-09-30Cleaned up some unnecessary includesMarius Kintel
2011-09-11Reenabled PolySet caching. Pass shared_ptrs to polysets around to better ↵Marius Kintel
manage memory
2011-09-08Killed some warningsMarius Kintel
2011-09-02disable setting alpha without colorMarius Kintel
2011-09-02Refactoring: Moved color functionality into separate module and nodeMarius Kintel
2011-08-05Started on getBoundingBox functionality, refactored some vector code as part ↵Marius Kintel
of this initiative
2011-08-04Merge branch 'master' into visitorMarius Kintel
Conflicts: src/OpenCSGRenderer.cc src/csgops.cc src/mainwin.cc src/polyset.cc src/projection.cc
2011-08-03fix broken build on systems that use case sensitive filenames (linux)Don Bright
contact: Jan Huwald // Impressum