23 lines
433 B
C++
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)
|
|
{
|
|
|
|
}
|