Project-3/src/Particle.cpp
Cory 0dfb102cef
Update versions and some other things
- Update version number for Doxygen
- Use vec3 instead of vec_3d
2023-10-23 12:41:03 +02:00

23 lines
455 B
C++

/** @file Particle.cpp
*
* @author Cory Alexander Balaton (coryab)
* @author Janita Ovidie Sandtrøen Willumsen (janitaws)
*
* @version 1.0
*
* @brief The implementation of the Particle class.
*
* @bug No known bugs
* */
#include "Particle.hpp"
Particle::Particle(vec3 r_vec, vec3 v_vec, double q, double m)
{
// Giving the particle its properties
this->r_vec = r_vec;
this->v_vec = v_vec;
this->q = q;
this->m = m;
}