Changeset 1967


Ignore:
Timestamp:
01/10/07 22:38:49 (17 years ago)
Author:
bittner
Message:
 
Location:
GTP/trunk/Lib/Vis/Preprocessing/src
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • GTP/trunk/Lib/Vis/Preprocessing/src/Makefile

    r1966 r1967  
    11############################################################################# 
    22# Makefile for building: preprocessor 
    3 # Generated by qmake (2.00a) (Qt 4.1.2) on: st 10. I 21:30:27 2007 
     3# Generated by qmake (2.00a) (Qt 4.1.2) on: st 10. I 21:33:14 2007 
    44# Project:  preprocessor.pro 
    55# Template: app 
     
    6363        $(MAKE) -f $(MAKEFILE).Debug uninstall 
    6464 
    65 Makefile: preprocessor.pro  C:/Qt/4.1.2/mkspecs/win32-msvc2005\qmake.conf C:/Qt/4.1.2/mkspecs/qconfig.pri \ 
     65Makefile: preprocessor.pro  C:/Qt/4.1.2/mkspecs/win32-msvc.net\qmake.conf C:/Qt/4.1.2/mkspecs/qconfig.pri \ 
    6666                C:\Qt\4.1.2\mkspecs\features\qt_config.prf \ 
    6767                C:\Qt\4.1.2\mkspecs\features\exclusive_builds.prf \ 
  • GTP/trunk/Lib/Vis/Preprocessing/src/QtInterface/QtGlRenderer.cpp

    r1966 r1967  
    705705        if (!ok) 
    706706          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        } 
    711710        break; 
    712711  } 
  • GTP/trunk/Lib/Vis/Preprocessing/src/default.env

    r1966 r1967  
    3737 
    3838Preprocessor { 
    39         totalSamples 250000000 
     39        totalSamples 10000000 
    4040        samplesPerPass 1000000 
    4141#       initialSamples 2000000 
     
    5050        rayCastMethod 1 
    5151         
    52 #       type sampling 
     52        type sampling 
    5353#       type vss 
    5454#       type rss 
    55         type combined 
     55#       type combined 
    5656#       type render 
    5757        detectEmptyViewSpace true 
Note: See TracChangeset for help on using the changeset viewer.