/* render/particle.cc This file is part of the Osirion project and is distributed under the terms of the GNU General Public License version 2 */ #include "render/particle.h" namespace render { /* ---- class Particle --------------------------------------------- */ Particle::Particle(const math::Vector3f &location, const unsigned long timestamp) : particle_location(location) { particle_timestamp = timestamp; } Particle::Particle(const math::Vector3f &location, const math::Vector3f &velocity, const unsigned long timestamp) : particle_location(location), particle_velocity(velocity) { particle_timestamp = timestamp; } } //namespace render