- Timestamp:
- 09/06/06 00:48:55 (2 years ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/Source/System/NodeCores/Drawables/Particles/OSGParticlesBase.inl
r2 r54 91 91 } 92 92 93 #ifdef OSG_1_COMPAT 94 inline 95 UInt32 &ParticlesBase::getMode(void) 96 { 97 return this->editMode(); 98 } 99 #endif 100 93 101 //! Set the value of the Particles::_sfMode field. 94 102 inline … … 236 244 } 237 245 246 #ifdef OSG_1_COMPAT 247 inline 248 UInt32 &ParticlesBase::getDrawOrder(void) 249 { 250 return this->editDrawOrder(); 251 } 252 #endif 253 238 254 //! Set the value of the Particles::_sfDrawOrder field. 239 255 inline … … 261 277 } 262 278 279 #ifdef OSG_1_COMPAT 280 inline 281 bool &ParticlesBase::getDynamic(void) 282 { 283 return this->editDynamic(); 284 } 285 #endif 286 263 287 //! Set the value of the Particles::_sfDynamic field. 264 288 inline … … 286 310 } 287 311 312 #ifdef OSG_1_COMPAT 313 inline 314 UInt32 &ParticlesBase::getPump(void) 315 { 316 return this->editPump(); 317 } 318 #endif 319 288 320 //! Set the value of the Particles::_sfPump field. 289 321 inline … … 311 343 } 312 344 345 #ifdef OSG_1_COMPAT 346 inline 347 ParticleBSPTree &ParticlesBase::getBsp(void) 348 { 349 return this->editBsp(); 350 } 351 #endif 352 313 353 //! Set the value of the Particles::_sfBsp field. 314 354 inline … … 336 376 } 337 377 378 #ifdef OSG_1_COMPAT 379 inline 380 Int32 &ParticlesBase::getNumParticles(void) 381 { 382 return this->editNumParticles(); 383 } 384 #endif 385 338 386 //! Set the value of the Particles::_sfNumParticles field. 339 387 inline … … 369 417 } 370 418 419 #ifdef OSG_1_COMPAT 420 inline 421 Vec3f &ParticlesBase::getSizes(const UInt32 index) 422 { 423 return this->editSizes(index); 424 } 425 426 inline 427 MFVec3f &ParticlesBase::getSizes(void) 428 { 429 return this->editSizes(); 430 } 431 432 #endif 433 434 371 435 //! Get the Particles::_mfSizes field. 372 436 inline … … 400 464 } 401 465 466 #ifdef OSG_1_COMPAT 467 inline 468 Int32 &ParticlesBase::getIndices(const UInt32 index) 469 { 470 return this->editIndices(index); 471 } 472 473 inline 474 MFInt32 &ParticlesBase::getIndices(void) 475 { 476 return this->editIndices(); 477 } 478 479 #endif 480 481 402 482 //! Get the Particles::_mfIndices field. 403 483 inline … … 430 510 return _mfTextureZs; 431 511 } 512 513 #ifdef OSG_1_COMPAT 514 inline 515 Real32 &ParticlesBase::getTextureZs(const UInt32 index) 516 { 517 return this->editTextureZs(index); 518 } 519 520 inline 521 MFReal32 &ParticlesBase::getTextureZs(void) 522 { 523 return this->editTextureZs(); 524 } 525 526 #endif 527 432 528 433 529 //! Get the Particles::_mfTextureZs field.
