Ran script to remove trailing spaces and tabs
This commit is contained in:
@@ -1,13 +1,13 @@
|
||||
/* -*-c++-*- OpenSceneGraph - Copyright (C) 1998-2006 Robert Osfield
|
||||
/* -*-c++-*- OpenSceneGraph - Copyright (C) 1998-2006 Robert Osfield
|
||||
*
|
||||
* This library is open source and may be redistributed and/or modified under
|
||||
* the terms of the OpenSceneGraph Public License (OSGPL) version 0.0 or
|
||||
* This library is open source and may be redistributed and/or modified under
|
||||
* the terms of the OpenSceneGraph Public License (OSGPL) version 0.0 or
|
||||
* (at your option) any later version. The full license is in LICENSE file
|
||||
* included with this distribution, and on the openscenegraph.org website.
|
||||
*
|
||||
*
|
||||
* This library is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* OpenSceneGraph Public License for more details.
|
||||
*/
|
||||
//osgParticle - Copyright (C) 2002 Marco Jez
|
||||
@@ -41,16 +41,16 @@ namespace osgParticle
|
||||
virtual const char* className() const { return "Emitter"; }
|
||||
virtual bool isSameKindAs(const osg::Object* obj) const { return dynamic_cast<const Emitter*>(obj) != 0; }
|
||||
virtual void accept(osg::NodeVisitor& nv) { if (nv.validNodeMask(*this)) { nv.pushOntoNodePath(this); nv.apply(*this); nv.popFromNodePath(); } }
|
||||
|
||||
|
||||
/// Get the particle template.
|
||||
inline const Particle& getParticleTemplate() const;
|
||||
|
||||
|
||||
/// Set the particle template (particle is copied).
|
||||
inline void setParticleTemplate(const Particle& p);
|
||||
|
||||
|
||||
/// Return whether the particle system's default template should be used.
|
||||
inline bool getUseDefaultTemplate() const;
|
||||
|
||||
|
||||
/** Set whether the default particle template should be used.
|
||||
When this flag is true, the particle template is ignored, and the
|
||||
particle system's default template is used instead.
|
||||
@@ -60,11 +60,11 @@ namespace osgParticle
|
||||
protected:
|
||||
virtual ~Emitter() {}
|
||||
Emitter& operator=(const Emitter&) { return *this; }
|
||||
|
||||
|
||||
inline void process(double dt);
|
||||
|
||||
|
||||
virtual void emitParticles(double dt) = 0;
|
||||
|
||||
|
||||
bool _usedeftemp;
|
||||
Particle _ptemp;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user