blob: 9abcdcf168657bbd42246815f0c43d9970e560cb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
#include <iostream>
#include <fstream>
#include <math.h>
using namespace std;
int main()
{
ofstream o;
o.open("nnova1.txt");
o << "Nova 1\n";
o << "data/images/empty.bmp\n";
o << 2 << '\n';
int shots = 300;
double T = 10;
double duration = 0.6;
double start = 3;
double speed = 320;
int Ncircles = 4;
o << shots << endl;
for(int i = 0; i < shots; ++i)
{
o << T << '\n';
o << T - start - ((double) i)/((double) shots)*duration-0.0001 << '\n';
o << "data/psi.txt\n";
o << cos(Ncircles*2*M_PI*i/((double) shots))*speed << '\n';
o << sin(Ncircles*2*M_PI*i/((double) shots))*speed;
if(i != shots-1)
o << endl;
}
o.close();
}
|