Changeset 2852 in orxonox.OLD for orxonox/trunk
- Timestamp:
- Nov 14, 2004, 6:25:32 AM (20 years ago)
- Location:
- orxonox/trunk/importer
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
orxonox/trunk/importer/object.cc
r2851 r2852 151 151 \brief Draws the Object number groupNumber 152 152 It does this by just calling the List that must have been created earlier. 153 \param groupNumber The number of the Group that will be displayed.153 \param groupNumber The number of the group that will be displayed. 154 154 */ 155 155 void Object::draw (int groupNumber) 156 156 { 157 if (groupNumber >= groupCount) 158 { 159 if (verbose>=2) 160 printf ("You requested object number %i, but this File only contains of %i Objects.\n", groupNumber-1, groupCount); 161 return; 162 } 157 163 if (verbose >=2) 158 164 printf("drawing the requested 3D-Objects if found.\n"); … … 176 182 177 183 } 184 185 /** 186 \brief Draws the Object with a specific groupname 187 It does this by just calling the List that must have been created earlier. 188 \param groupName The name of the group that will be displayed. 189 */ 178 190 void Object::draw (char* groupName) 179 191 { … … 197 209 } 198 210 211 /** 212 \returns Count of the Objects in this File 213 */ 214 int Object::getGroupCount (void) 215 { 216 return groupCount; 217 } 199 218 200 219 /** -
orxonox/trunk/importer/object.h
r2851 r2852 34 34 void draw (int groupNumber); 35 35 void draw (char* groupName); 36 int getGroupCount(); 36 37 37 38 private:
Note: See TracChangeset
for help on using the changeset viewer.