561 |
4917 d 6 h |
awk |
/trunk/ |
Added GLGraphics::Console, a Quake-style console.
Added test application for console (test/GLGraphics-console).
Fixed Vec3f operator>>. The following now works:
CGLA::Vec3f in(0,1,2);
std::stringstream ss;
ss << in;
CGLA::Vec3f out;
ss >> out;
assert(in == out);
Didn't test any other VecXX types or Matrix types.. They might be broken.
Misc:
Fixed CMake Policy CMP0005 error.
Missing #include <iterator> in Manifold.cpp.
Disable ExportBuildSettings (deprecated in CMake) |
|
/trunk/src/GLGraphics/Console.cpp /trunk/src/GLGraphics/Console.h /trunk/test/GLGraphics-console /trunk/test/GLGraphics-console/CMakeLists.txt /trunk/test/GLGraphics-console/console_test.cpp
/trunk/CMakeLists.txt /trunk/src/CGLA/ArithVec.h /trunk/src/GLGraphics/CMakeLists.txt /trunk/src/HMesh/Manifold.cpp
|
385 |
6095 d 8 h |
jab |
/trunk/ |
CMakefiles included.
Note that exceptions were removed from Geometry/Polygonize.cpp since it did not play nice with visual studio 2005. An improved solution is needed so that the program does not just abort. |
|
/trunk/CMakeLists.txt /trunk/GELConfig.cmake.in /trunk/GELFindGlew.cmake /trunk/GELFindGlut.cmake /trunk/GELFindLapack.cmake /trunk/GELUse.cmake /trunk/apps/BloomenthalPolygonize/CMakeLists.txt /trunk/apps/BoundaryCollapse/CMakeLists.txt /trunk/apps/Decimator/CMakeLists.txt /trunk/apps/MeshDistance/CMakeLists.txt /trunk/apps/OBJViewer/CMakeLists.txt /trunk/apps/Pathtracer/CMakeLists.txt /trunk/apps/RangeScanViewer/CMakeLists.txt /trunk/apps/Raytracer/CMakeLists.txt /trunk/apps/VolumePolygonize/CMakeLists.txt /trunk/src/CGLA/CMakeLists.txt /trunk/src/GLGraphics/CMakeLists.txt /trunk/src/Geometry/CMakeLists.txt /trunk/src/HMesh/CMakeLists.txt /trunk/src/LinAlg/CMakeLists.txt /trunk/src/Util/CMakeLists.txt /trunk/test/CGLA-covariance/CMakeLists.txt /trunk/test/CGLA-mat/CMakeLists.txt /trunk/test/CGLA-ogl/CMakeLists.txt /trunk/test/CGLA-simple/CMakeLists.txt /trunk/test/CGLA-vec/CMakeLists.txt /trunk/test/Geometry-kdtree/CMakeLists.txt /trunk/test/LinAlg-eigensolver/CMakeLists.txt /trunk/test/LinAlg-leastsq/CMakeLists.txt /trunk/test/Util-resman/CMakeLists.txt
/trunk/apps/BoundaryCollapse/boundary_collapse.cpp /trunk/src/Geometry/Polygonizer.cpp
|