Project-3/src/Particle.cpp
2023-09-28 16:07:46 +02:00

23 lines
433 B
C++

/** @file Particle.cpp
*
* @author Cory Alexander Balaton (coryab)
* @author Janita Ovidie Sandtrøen Willumsen (janitaws)
*
* @version 0.1
*
* @brief The implementation of the Particle class.
*
* @bug No known bugs
*
* @todo Implement constructor
* */
#include "Particle.hpp"
Particle::Particle(double q, double m,
arma::vec::fixed<3> r_vec,
arma::vec::fixed<3> v_vec)
{
}