Show
Ignore:
Timestamp:
12/29/06 10:28:00 (2 years ago)
Author:
cneumann
Message:

- regenerated all base files to include the full set

of access functions for non-ptr mfields.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/Source/System/NodeCores/Drawables/Terrain/QuadTree/OSGQuadTreeTerrainBase.h

    r436 r459  
    506506 
    507507 
    508     void pushToHeightError           (const Real32& value   ); 
    509     void insertIntoHeightError      (UInt32                uiIndex, 
    510                                              const Real32& value   ); 
    511     void replaceInHeightError  (UInt32                uiIndex, 
    512                                              const Real32& value   ); 
    513     void replaceInHeightError (const Real32& pOldElem, 
    514                                              const Real32& pNewElem); 
    515     void removeFromHeightError (UInt32                uiIndex ); 
    516     void removeFromHeightError(const Real32& value   ); 
    517     void clearHeightError            (void                          ); 
    518  
    519  
    520  
    521  
    522  
    523     void pushToHeightQuad           (const Real32& value   ); 
    524     void insertIntoHeightQuad      (UInt32                uiIndex, 
    525                                              const Real32& value   ); 
    526     void replaceInHeightQuad  (UInt32                uiIndex, 
    527                                              const Real32& value   ); 
    528     void replaceInHeightQuad (const Real32& pOldElem, 
    529                                              const Real32& pNewElem); 
    530     void removeFromHeightQuad (UInt32                uiIndex ); 
    531     void removeFromHeightQuad(const Real32& value   ); 
    532     void clearHeightQuad            (void                          ); 
    533  
    534  
     508    void pushToHeightError                 (const Real32    &value   ); 
     509    void insertIntoHeightError             (      UInt32     uiIndex, 
     510                                            const Real32    &value   ); 
     511    void replaceInHeightError              (      UInt32     uiIndex, 
     512                                            const Real32    &value   ); 
     513    void replaceInHeightError              (const Real32    &pOldElem, 
     514                                            const Real32    &pNewElem); 
     515    void removeFromHeightError             (      UInt32     uiIndex ); 
     516    void removeFromHeightError             (const Real32    &value   ); 
     517    void clearHeightError                  (      void               ); 
     518 
     519 
     520 
     521    void pushToHeightQuad                  (const Real32    &value   ); 
     522    void insertIntoHeightQuad              (      UInt32     uiIndex, 
     523                                            const Real32    &value   ); 
     524    void replaceInHeightQuad               (      UInt32     uiIndex, 
     525                                            const Real32    &value   ); 
     526    void replaceInHeightQuad               (const Real32    &pOldElem, 
     527                                            const Real32    &pNewElem); 
     528    void removeFromHeightQuad              (      UInt32     uiIndex ); 
     529    void removeFromHeightQuad              (const Real32    &value   ); 
     530    void clearHeightQuad                   (      void               ); 
    535531 
    536532