Ignore:
Timestamp:
05/29/06 18:54:02 (18 years ago)
Author:
mattausch
Message:
 
File:
1 edited

Legend:

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

    r944 r991  
    4141                        const Vector3 boxSize = sceneBox.Size() * Vector3(0.0025f, 0.01f, 0.0025f); 
    4242                        AxisAlignedBox3 box(pt2, pt2 + boxSize); 
    43                         Mesh *mesh = CreateBox(box); 
     43                        Mesh *mesh = CreateMeshFromBox(box); 
    4444 
    4545                        mesh->Preprocess(); 
     
    6060                        Vector3 boxSize = sceneBox.Size() * Vector3(0.0025, 0.01, 0.0025); 
    6161                        AxisAlignedBox3 box(pt2, pt2 + boxSize); 
    62                         Mesh *mesh = CreateBox(box); 
     62                        Mesh *mesh = CreateMeshFromBox(box); 
    6363 
    6464                        mesh->Preprocess(); 
     
    7878                Vector3 boxSize = sceneBox.Size() * Vector3(0.005, 0.02, 0.005); 
    7979                AxisAlignedBox3 box(pt2 + 0.1, pt2 + boxSize); 
    80                 Mesh *mesh = CreateBox(box); 
     80                Mesh *mesh = CreateMeshFromBox(box); 
    8181 
    8282                mesh->Preprocess(); 
Note: See TracChangeset for help on using the changeset viewer.