- 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.cpp
r2 r54 420 420 } 421 421 422 #ifdef OSG_1_COMPAT 423 SFUInt32 *ParticlesBase::getSFMode(void) 424 { 425 return this->editSFMode(); 426 } 427 #endif 428 422 429 //! Get the Particles::_sfPositions field. 423 430 const SFGeoVectorPropertyPtr *ParticlesBase::getSFPositions(void) const … … 438 445 } 439 446 447 #ifdef OSG_1_COMPAT 448 MFVec3f *ParticlesBase::getMFSizes(void) 449 { 450 return this->editMFSizes(); 451 } 452 #endif 453 440 454 //! Get the Particles::_sfSecPositions field. 441 455 const SFGeoVectorPropertyPtr *ParticlesBase::getSFSecPositions(void) const … … 468 482 } 469 483 484 #ifdef OSG_1_COMPAT 485 MFInt32 *ParticlesBase::getMFIndices(void) 486 { 487 return this->editMFIndices(); 488 } 489 #endif 490 470 491 MFReal32 *ParticlesBase::editMFTextureZs(void) 471 492 { … … 480 501 } 481 502 503 #ifdef OSG_1_COMPAT 504 MFReal32 *ParticlesBase::getMFTextureZs(void) 505 { 506 return this->editMFTextureZs(); 507 } 508 #endif 509 482 510 SFUInt32 *ParticlesBase::editSFDrawOrder(void) 483 511 { … … 492 520 } 493 521 522 #ifdef OSG_1_COMPAT 523 SFUInt32 *ParticlesBase::getSFDrawOrder(void) 524 { 525 return this->editSFDrawOrder(); 526 } 527 #endif 528 494 529 SFBool *ParticlesBase::editSFDynamic(void) 495 530 { … … 504 539 } 505 540 541 #ifdef OSG_1_COMPAT 542 SFBool *ParticlesBase::getSFDynamic(void) 543 { 544 return this->editSFDynamic(); 545 } 546 #endif 547 506 548 SFUInt32 *ParticlesBase::editSFPump(void) 507 549 { … … 516 558 } 517 559 560 #ifdef OSG_1_COMPAT 561 SFUInt32 *ParticlesBase::getSFPump(void) 562 { 563 return this->editSFPump(); 564 } 565 #endif 566 518 567 SFParticleBSPTree *ParticlesBase::editSFBsp(void) 519 568 { … … 528 577 } 529 578 579 #ifdef OSG_1_COMPAT 580 SFParticleBSPTree *ParticlesBase::getSFBsp(void) 581 { 582 return this->editSFBsp(); 583 } 584 #endif 585 530 586 SFInt32 *ParticlesBase::editSFNumParticles(void) 531 587 { … … 539 595 return &_sfNumParticles; 540 596 } 597 598 #ifdef OSG_1_COMPAT 599 SFInt32 *ParticlesBase::getSFNumParticles(void) 600 { 601 return this->editSFNumParticles(); 602 } 603 #endif 541 604 542 605
