Ignore:
Timestamp:
04/21/08 08:36:04 (16 years ago)
Author:
mattausch
Message:
 
File:
1 edited

Legend:

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

    r2638 r2655  
    2222#endif // _USE_HAVRAN_SSE 
    2323#endif // USE_HAVRAN_RAYCASTER 
     24 
    2425#include "HavranRayCaster.h" 
    2526 
     
    8283HavranRayCaster::ExportBinTree(const string &filename) 
    8384{ 
     85#ifdef USE_HAVRAN_RAYCASTER  
    8486  return mKtbtree->ExportBinTree(filename); 
     87#endif 
    8588} 
    8689 
     
    8891HavranRayCaster::ImportBinTree(const string &filename, ObjectContainer &objects) 
    8992{ 
     93#ifdef USE_HAVRAN_RAYCASTER  
    9094  return mKtbtree->ImportBinTree(filename, objects); 
     95#endif 
    9196} 
    9297 
     
    381386                                      ) 
    382387{ 
     388#ifdef USE_HAVRAN_RAYCASTER 
     389 
    383390  int hit_triangles[16]; 
    384391  float dist[16]; 
     
    408415  } 
    409416 
    410  
     417#endif // USE_HAVRAN_RAYCASTER  
    411418  return; 
    412419} 
Note: See TracChangeset for help on using the changeset viewer.