Ignore:
Timestamp:
05/22/06 07:53:18 (18 years ago)
Author:
mattausch
Message:

added stuff for view cell ziping (not working yet!)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • GTP/trunk/Lib/Vis/Preprocessing/src/X3dParser.cpp

    r870 r971  
    1414#include <xercesc/parsers/SAXParser.hpp> 
    1515#include <xercesc/util/OutOfMemoryException.hpp> 
    16  
     16#include <xercesc/util/BinFileInputStream.hpp> 
    1717// --------------------------------------------------------------------------- 
    1818//  Includes 
     
    3232namespace GtpVisibilityPreprocessor { 
    3333 
     34float X3dParser::DEFAULT_VIEWCELL_HEIGHT = 5.0f; 
    3435 
    3536// --------------------------------------------------------------------------- 
     
    537538} 
    538539 
     540/*************************************************************************/ 
     541/*                     X3dParser implementation                          */ 
     542/*******************+*****************************************************/ 
     543 
     544X3dParser::X3dParser(): 
     545mViewCellHeight(DEFAULT_VIEWCELL_HEIGHT)  
     546{} 
    539547 
    540548bool 
     
    916924      { 
    917925        const unsigned long startMillis = XMLPlatformUtils::getCurrentMillis(); 
     926        //GzBinFileInputStream str(filename.c_str()); 
     927         
    918928        parser->parse(filename.c_str()); 
    919929        const unsigned long endMillis = XMLPlatformUtils::getCurrentMillis(); 
     
    960970} 
    961971 
    962 } 
     972 
     973 
     974 
     975} 
Note: See TracChangeset for help on using the changeset viewer.