MNE-CPP 0.1.9
A Framework for Electrophysiology
Loading...
Searching...
No Matches
mne_msh_light.cpp
Go to the documentation of this file.
1//=============================================================================================================
36//=============================================================================================================
37// INCLUDES
38//=============================================================================================================
39
40#include "mne_msh_light.h"
41
42//=============================================================================================================
43// USED NAMESPACES
44//=============================================================================================================
45
46using namespace MNELIB;
47
48//=============================================================================================================
49// DEFINE MEMBER METHODS
50//=============================================================================================================
51
55
56//=============================================================================================================
57
59: state(p_mneMshLight.state)
60{
61 this->pos[0] = p_mneMshLight.pos[0];
62 this->pos[1] = p_mneMshLight.pos[1];
63 this->pos[2] = p_mneMshLight.pos[2];
64 this->diff[0] = p_mneMshLight.diff[0];
65 this->diff[1] = p_mneMshLight.diff[1];
66 this->diff[2] = p_mneMshLight.diff[2];
67}
68
69//=============================================================================================================
70
71MneMshLight::MneMshLight(int state, float posX, float posY,float posZ, float diffX,float diffY,float diffZ)
72{
73 this->state = state;
74 this->pos[0] = posX;
75 this->pos[1] = posY;
76 this->pos[2] = posZ;
77 this->diff[0] = diffX;
78 this->diff[1] = diffY;
79 this->diff[2] = diffZ;
80}
81
82//=============================================================================================================
83
MneMshLight class declaration.
The MneMshLight class.