Ignore:
Timestamp:
01/22/07 16:59:09 (17 years ago)
Author:
bittner
Message:

timer start

File:
1 edited

Legend:

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

    r2003 r2014  
    767767                if (!node->IsLeaf()) 
    768768                { 
    769                         KdInterior *in = dynamic_cast<KdInterior *>(node); 
     769                        KdInterior *in = (KdInterior *)node; 
    770770                        position = in->mPosition; 
    771771                        axis = in->mAxis; 
     
    812812                { 
    813813                        // compute intersection with all objects in this leaf 
    814                         KdLeaf *leaf = dynamic_cast<KdLeaf *>(node); 
     814                  KdLeaf *leaf = (KdLeaf *)node; 
    815815 
    816816                        // add view cell to intersections 
Note: See TracChangeset for help on using the changeset viewer.