You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Depending on the configuration, M_PI may not be declared in math.h (e.g. my system) which causes "M_PI is not declared" error. You may want to add the following to dubins.c in order to eliminate compatibility issues:
#ifndef M_PI
#define M_PI 3.14159265358979323846
#endif
The text was updated successfully, but these errors were encountered:
Depending on the configuration, M_PI may not be declared in math.h (e.g. my system) which causes "M_PI is not declared" error. You may want to add the following to dubins.c in order to eliminate compatibility issues:
#ifndef M_PI
#define M_PI 3.14159265358979323846
#endif
The text was updated successfully, but these errors were encountered: