Ignore:
Timestamp:
08/20/06 22:48:01 (18 years ago)
Author:
mattausch
Message:
 
File:
1 edited

Legend:

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

    r1221 r1233  
    3030#include "ViewCellsManager.h" 
    3131#include "GzFileInputSource.h" 
    32 #include "VspOspTree.h" 
     32#include "OspTree.h" 
     33#include "VspTree.h" 
    3334#include "KdTree.h" 
    3435 
     
    260261} 
    261262 
    262 void ViewCellsParseHandlers::StartViewSpacePartitionElement(const std::string &element, 
     263void ViewCellsParseHandlers::StartViewSpaceHierarchyElement(const std::string &element, 
    263264                                                                                                                        AttributeList& attributes) 
    264265{ 
     
    283284 
    284285 
    285 void ViewCellsParseHandlers::StartObjectSpacePartitionElement(const std::string &element, 
     286void ViewCellsParseHandlers::StartObjectSpaceHierarchyElement(const std::string &element, 
    286287                                                                                                                          AttributeList& attributes) 
    287288{ 
     
    340341 
    341342        // decides about the view cell hierarchy 
    342         if (element == "ViewSpacePartition") 
    343         { 
    344                 //StartViewSpacePartition(attributes); 
     343        if (element == "ViewSpaceHierarchy") 
     344        { 
     345                //StartViewSpaceHierarchy(attributes); 
    345346                cout << "parsing view space partition" << endl; 
    346347                mCurrentTask = PARSE_VSP; 
     
    348349 
    349350        // decides about the view cell hierarchy 
    350         if (element == "ObjectSpacePartition") 
    351         { 
    352                 //StartObjectSpacePartition(attributes); 
     351        if (element == "ObjectSpaceHierarchy") 
     352        { 
     353                //StartObjectSpaceHierarchy(attributes); 
    353354                cout << "parsing object space partition" << endl; 
    354355                mCurrentTask = PARSE_OSP; 
     
    373374        { 
    374375        case PARSE_VSP: 
    375                 StartViewSpacePartitionElement(element, attributes); 
     376                StartViewSpaceHierarchyElement(element, attributes); 
    376377                break; 
    377378        case PARSE_OSP: 
    378                 StartObjectSpacePartitionElement(element, attributes); 
     379                StartObjectSpaceHierarchyElement(element, attributes); 
    379380                break; 
    380381        case PARSE_VIEWCELLS: 
Note: See TracChangeset for help on using the changeset viewer.