source: proiecte/NBody/Model.h @ 158

Last change on this file since 158 was 158, checked in by (none), 14 years ago
File size: 230 bytes
Line 
1#define PI 3.14159265359
2#define FILE_NAME "out.txt"
3
4typedef struct{
5        double mass;    //mass of a particle
6        double pos[3];  //pos of a particle (3D coordinate)
7        double vel[3];  //velocity of a particle (3D coordinate)
8}body;
Note: See TracBrowser for help on using the repository browser.