Changeset 5081 in orxonox.OLD for trunk/src/lib/graphics/render2D/element_2d.cc
- Timestamp:
- Aug 19, 2005, 12:49:21 PM (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/lib/graphics/render2D/element_2d.cc
r5068 r5081 177 177 } 178 178 179 180 void Element2D::setRelCoor2D (const Vector& relCoord) 181 { 182 } 183 184 185 void Element2D::setRelCoor2D (float x, float y, float z) 186 { 187 } 188 189 void Element2D::setRelCoorSoft2D(const Vector& relCoordSoft, float bias) 190 { 191 } 192 193 void Element2D::setRelCoorSoft2D(float x, float y, float dontCare, float bias) 194 { 195 } 196 197 void Element2D::setAbsCoor2D (const Vector& absCoord) 198 { 199 } 200 201 void Element2D::setAbsCoor2D (float x, float y, float depth) 202 { 203 } 204 205 void Element2D::shiftCoor (const Vector& shift) 206 { 207 } 208 209 210 void Element2D::setRelDir2D (float relDir) 211 { 212 } 213 214 void Element2D::setRelDirSoft2D(float relDirSoft, float bias) 215 { 216 } 217 218 void Element2D::setAbsDir2D (float absDir) 219 { 220 } 221 222 void Element2D::shiftDir (float shiftDir) 223 { 224 } 225 226 227 void Element2D::addChild2D (Element2D* child, int parentingMod) 228 { 229 } 230 231 void Element2D::addChild2D (const char* childName) 232 { 233 } 234 235 void Element2D::removeChild2D (Element2D* child) 236 { 237 } 238 239 void Element2D::remove2D() 240 { 241 } 242 243 244 void Element2D::setParent2D (Element2D* parent) 245 { 246 } 247 248 void Element2D::setParent2D (const char* parentName) 249 { 250 } 251 252 253 void Element2D::softReparent(PNode* parentNode, float bias) 254 { 255 } 256 257 void Element2D::softReparent(const char* parentName, float bias) 258 { 259 } 260 261 262 void Element2D::setParentMode2D (const char* parentingMode) 263 { 264 } 265 266 267 void Element2D::update2D (float dt) 268 { 269 } 270 271 272 void Element2D::debug (unsigned int depth, unsigned int level) const 273 { 274 } 275 276 void Element2D::debugDraw2D(unsigned int depth, float size, Vector color) const 277 { 278 } 279 280 281 // helper functions // 282 const char* Element2D::parentingModeToChar(int parentingMode) 283 { 284 } 285 286 E2D_PARENT_MODE Element2D::charToParentingMode(const char* parentingMode) 287 { 288 } 289 290 291 292 293 294 179 295 /** 180 296 * ticks the 2d-Element
Note: See TracChangeset
for help on using the changeset viewer.