|
Revision 13041, 361 bytes
(checked in by robert, 14 months ago)
|
|
Ran script to remove trailing spaces and tabs
|
-
Property svn:eol-style set to
native
-
Property svn:keywords set to
Author Date Id Revision
|
| Line | |
|---|
| 1 | #include <osgParticle/Emitter> |
|---|
| 2 | #include <osgParticle/ParticleProcessor> |
|---|
| 3 | |
|---|
| 4 | #include <osg/CopyOp> |
|---|
| 5 | |
|---|
| 6 | osgParticle::Emitter::Emitter() |
|---|
| 7 | : ParticleProcessor(), |
|---|
| 8 | _usedeftemp(true) |
|---|
| 9 | { |
|---|
| 10 | } |
|---|
| 11 | |
|---|
| 12 | osgParticle::Emitter::Emitter(const Emitter& copy, const osg::CopyOp& copyop) |
|---|
| 13 | : ParticleProcessor(copy, copyop), |
|---|
| 14 | _usedeftemp(copy._usedeftemp), |
|---|
| 15 | _ptemp(copy._ptemp) |
|---|
| 16 | { |
|---|
| 17 | } |
|---|