Changeset 3193 in orxonox.OLD for orxonox/trunk/src/array.h
- Timestamp:
- Dec 16, 2004, 4:00:43 PM (21 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
orxonox/trunk/src/array.h
r3185 r3193 31 31 void debug(void); 32 32 private: 33 //! One entry of the Array 33 34 struct Entry 34 35 { 35 GLfloat value; 36 Entry* next; 36 GLfloat value; //!< The value of this Entry. 37 Entry* next; //!< Pointer to the Next entry. 37 38 }; 38 39 39 GLfloat* array; 40 int entryCount; 41 bool finalized; 42 Entry* firstEntry; 43 Entry* currentEntry; 40 GLfloat* array; //!< The array that will be produced when finalizing the Array. 41 int entryCount; //!< The count of Entries in this Array. 42 bool finalized; //!< If this variable is set to true, the Array can not be changed anymore. true if finalized, false else (initially). 43 Entry* firstEntry; //!< Pointer to the first Entry of this Array 44 Entry* currentEntry; //!< Pointer to the current Entry of this Array. The one Entry we are working with. 44 45 45 46
Note: See TracChangeset
for help on using the changeset viewer.