#include #include #include 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(); }