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/Particles/OSGParticlesBase.h

    r436 r459  
    359359 
    360360 
    361     void pushToSizes               (const Vec3f& value   ); 
    362     void insertIntoSizes      (UInt32                uiIndex, 
    363                                              const Vec3f& value   ); 
    364     void replaceInSizes   (UInt32                uiIndex, 
    365                                              const Vec3f& value   ); 
    366     void replaceInSizes  (const Vec3f& pOldElem, 
    367                                              const Vec3f& pNewElem); 
    368     void removeFromSizes (UInt32                uiIndex ); 
    369     void removeFromSizes(const Vec3f& value   ); 
    370     void clearSizes                 (void                          ); 
    371  
    372  
    373  
    374  
    375  
    376     void pushToIndices             (const Int32& value   ); 
    377     void insertIntoIndices      (UInt32                uiIndex, 
    378                                              const Int32& value   ); 
    379     void replaceInIndices  (UInt32                uiIndex, 
    380                                              const Int32& value   ); 
    381     void replaceInIndices (const Int32& pOldElem, 
    382                                              const Int32& pNewElem); 
    383     void removeFromIndices (UInt32                uiIndex ); 
    384     void removeFromIndices(const Int32& value   ); 
    385     void clearIndices               (void                          ); 
    386  
    387  
    388  
    389  
    390  
    391     void pushToTextureZs           (const Real32& value   ); 
    392     void insertIntoTextureZs      (UInt32                uiIndex, 
    393                                              const Real32& value   ); 
    394     void replaceInTextureZs  (UInt32                uiIndex, 
    395                                              const Real32& value   ); 
    396     void replaceInTextureZs (const Real32& pOldElem, 
    397                                              const Real32& pNewElem); 
    398     void removeFromTextureZs (UInt32                uiIndex ); 
    399     void removeFromTextureZs(const Real32& value   ); 
    400     void clearTextureZs             (void                          ); 
    401  
    402  
     361    void pushToSizes                       (const Vec3f     &value   ); 
     362    void insertIntoSizes                   (      UInt32     uiIndex, 
     363                                            const Vec3f     &value   ); 
     364    void replaceInSizes                    (      UInt32     uiIndex, 
     365                                            const Vec3f     &value   ); 
     366    void replaceInSizes                    (const Vec3f     &pOldElem, 
     367                                            const Vec3f     &pNewElem); 
     368    void removeFromSizes                   (      UInt32     uiIndex ); 
     369    void removeFromSizes                   (const Vec3f     &value   ); 
     370    void clearSizes                        (      void               ); 
     371 
     372 
     373 
     374    void pushToIndices                     (const Int32     &value   ); 
     375    void insertIntoIndices                 (      UInt32     uiIndex, 
     376                                            const Int32     &value   ); 
     377    void replaceInIndices                  (      UInt32     uiIndex, 
     378                                            const Int32     &value   ); 
     379    void replaceInIndices                  (const Int32     &pOldElem, 
     380                                            const Int32     &pNewElem); 
     381    void removeFromIndices                 (      UInt32     uiIndex ); 
     382    void removeFromIndices                 (const Int32     &value   ); 
     383    void clearIndices                      (      void               ); 
     384 
     385 
     386 
     387    void pushToTextureZs                   (const Real32    &value   ); 
     388    void insertIntoTextureZs               (      UInt32     uiIndex, 
     389                                            const Real32    &value   ); 
     390    void replaceInTextureZs                (      UInt32     uiIndex, 
     391                                            const Real32    &value   ); 
     392    void replaceInTextureZs                (const Real32    &pOldElem, 
     393                                            const Real32    &pNewElem); 
     394    void removeFromTextureZs               (      UInt32     uiIndex ); 
     395    void removeFromTextureZs               (const Real32    &value   ); 
     396    void clearTextureZs                    (      void               ); 
    403397 
    404398