Age | Commit message (Collapse) | Author | |
---|---|---|---|
2014-02-05 | Scale axis display on high-DPI displays | Marius Kintel | |
2013-09-12 | fix issue #430 | Don Bright | |
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-03-06 | fix strecthing with --imgsize per bug rept from Marius Kintel | don bright | |
2013-03-05 | compile fix: include opencsg.h | Marius Kintel | |
2013-03-04 | render settings wrong syntax | don bright | |
2013-03-04 | cleanup tab spacing | don bright | |
2013-03-04 | move FAR_FAR_AWAY (gl clipping limit) to rendersettings | don bright | |
2013-03-04 | cleanups | don bright | |
2013-03-03 | add --projection=ortho|perspective option to cmdline | don bright | |
2013-03-03 | try to fix gimbal camera view on Offscreen mode | don bright | |
2013-03-03 | add imgsize cmdline parameter for png output | don bright | |
2013-03-03 | fix bugs in testing | don bright | |
2013-03-03 | make Camera into single class, simplify code | don bright | |
2013-03-03 | remove boost::variant stuff. trim code. add 'vector cam' cmdline option | don bright | |
2013-03-02 | add Camera.h per bug rept from Marius Kintel | don bright | |
2013-02-27 | rework Camera using boost::variant. first working --gimbalcam version | don bright | |
2013-02-26 | fix bugs for test compile | don bright | |
2013-02-26 | begin to implement --viewport option, by adding Camera class + children | don bright | |
2013-02-25 | first working version of opencsg png export from gui binary | don bright | |
also guiopencsgtest introduced. passes 100% of 'normal' tests | |||
2013-02-25 | split out axes functions. begin to split out opencsg pre-rendering | don bright | |
2013-02-24 | unify intializeGL(), remove duplicate code | don bright | |
2013-02-24 | merge enable_opencsg_shaders into GLView, remove duplicate code | don bright | |
from QGLView and OffscreenView | |||
2013-02-24 | Merge branch 'master' of github.com:openscad/openscad into issue11_2 | don bright | |
Conflicts: RELEASE_NOTES openscad.pro src/mainwin.cc | |||
2013-02-24 | consolidate resizeGL() | don bright | |
2013-02-24 | finish unify camera. unify getRenderInfo. fix width on libraryinfo box. | don bright | |
2013-02-24 | put qglview.h into mainwin for deps. unify camera functions into glview. | don bright | |
remove duplicate code. | |||
2013-02-23 | create GLView as parent of OffscreenView and QGLView. combine setRenderer() | don bright | |