Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Jul 6, 2005, 12:19:35 PM (19 years ago)
Author:
patrick
Message:

orxonox/trunk: prepearing the objModel for triangles export support a la Patrick. @Bensch: I hope you will agree with my approach

File:
1 edited

Legend:

Unmodified
Added
Removed
  • orxonox/trunk/src/lib/graphics/importer/array.h

    r4746 r4791  
    4040    /**   \returns The Count of entries in the Array*/
    4141    inline unsigned int getCount()const { return this->entryCount; };
     42    inline int getIndex(T* entry) const;
    4243    void debug() const ;
    4344
     
    153154}
    154155
     156
     157
     158template<class T>
     159int Array<T>::getIndex(T* entry) const
     160{
     161
     162}
     163
     164
    155165/**
    156166   \brief Simple debug info about the Array
     
    161171  PRINT(0)("entryCount=%i, address=%p\n", this->entryCount, this->array);
    162172}
     173
    163174#endif
Note: See TracChangeset for help on using the changeset viewer.