17 lines
247 B

#include <Eigen/Eigen>
#include <iostream>
#ifndef M_PI
#define M_PI 3.1415926535897932384626433832795
#endif
using namespace StormEigen;
using namespace std;
int main(int, char**)
{
cout.precision(3);
${snippet_source_code}
return 0;
}