start traectories

This commit is contained in:
2025-02-18 22:15:51 +03:00
parent 828523c7e1
commit f8060cfa40
11 changed files with 382 additions and 21 deletions

View File

@@ -21,4 +21,9 @@
#include <math.h>
#define DEG2RAD(d) (d/180.*M_PI)
#define RAD2DEG(d) (d/M_PI*180.)
#define ASEC2RAD(d) (d/180.*M_PI/3600.)
#define AMIN2RAD(d) (d/180.*M_PI/60.)
#define RAD2DEG(r) (r/M_PI*180.)
#define RAD2ASEC(r) (r/M_PI*180.*3600.)
#define RAD2AMIN(r) (r/M_PI*180.*60.)