- Timestamp:
- 01/10/07 22:38:49 (18 years ago)
- Location:
- GTP/trunk/Lib/Vis/Preprocessing/src
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
GTP/trunk/Lib/Vis/Preprocessing/src/Makefile
r1966 r1967 1 1 ############################################################################# 2 2 # Makefile for building: preprocessor 3 # Generated by qmake (2.00a) (Qt 4.1.2) on: st 10. I 21:3 0:2720073 # Generated by qmake (2.00a) (Qt 4.1.2) on: st 10. I 21:33:14 2007 4 4 # Project: preprocessor.pro 5 5 # Template: app … … 63 63 $(MAKE) -f $(MAKEFILE).Debug uninstall 64 64 65 Makefile: preprocessor.pro C:/Qt/4.1.2/mkspecs/win32-msvc 2005\qmake.conf C:/Qt/4.1.2/mkspecs/qconfig.pri \65 Makefile: preprocessor.pro C:/Qt/4.1.2/mkspecs/win32-msvc.net\qmake.conf C:/Qt/4.1.2/mkspecs/qconfig.pri \ 66 66 C:\Qt\4.1.2\mkspecs\features\qt_config.prf \ 67 67 C:\Qt\4.1.2\mkspecs\features\exclusive_builds.prf \ -
GTP/trunk/Lib/Vis/Preprocessing/src/QtInterface/QtGlRenderer.cpp
r1966 r1967 705 705 if (!ok) 706 706 break; 707 QTextStream ts(&text); 708 ts>>mViewPoint.x>>mViewPoint.y>>mViewPoint.z; 709 mViewCellsManager->GetViewPoint(mViewPoint); 710 updateGL(); 707 if (sscanf(text.toAscii(), "%f %f %f", &mViewPoint.x, &mViewPoint.y, &mViewPoint.z) == 3) { 708 updateGL(); 709 } 711 710 break; 712 711 } -
GTP/trunk/Lib/Vis/Preprocessing/src/default.env
r1966 r1967 37 37 38 38 Preprocessor { 39 totalSamples 25000000039 totalSamples 10000000 40 40 samplesPerPass 1000000 41 41 # initialSamples 2000000 … … 50 50 rayCastMethod 1 51 51 52 #type sampling52 type sampling 53 53 # type vss 54 54 # type rss 55 type combined55 # type combined 56 56 # type render 57 57 detectEmptyViewSpace true
Note: See TracChangeset
for help on using the changeset viewer.