Ignore:
Timestamp:
07/16/08 11:28:52 (16 years ago)
Author:
mattausch
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • GTP/trunk/App/Demos/Vis/FriendlyCulling/src/ResourceManager.cpp

    r2839 r2840  
    88#include "Matrix4x4.h" 
    99#include "Vector3.h" 
     10#include "Transform3.h" 
    1011 
    1112 
     
    4142        str.read(reinterpret_cast<char *>(&hasTrafo), sizeof(bool)); 
    4243 
    43         Matrix4x4 *trafo; 
     44        Matrix4x4 *m; 
    4445         
    4546        SceneEntity *sceneGeom; 
     
    4748        if (!hasTrafo) 
    4849        { 
    49                 trafo = NULL; 
     50                m = NULL; 
    5051        } 
    5152        else 
    5253        { 
    53                 trafo = new Matrix4x4(); 
    54                 str.read(reinterpret_cast<char *>(trafo->x), sizeof(Matrix4x4)); 
    55                 mTrafos.push_back(trafo); 
    56         } 
    57  
     54                m = new Matrix4x4(); 
     55                str.read(reinterpret_cast<char *>(m->x), sizeof(Matrix4x4)); 
     56        } 
     57 
     58        Transform3 *trafo = new Transform3(m); 
     59        mTrafos.push_back(trafo); 
     60         
    5861        // use instancing 
    5962        sceneGeom = new SceneEntity(trafo); 
Note: See TracChangeset for help on using the changeset viewer.