diff options
| author | Franklin Wei <me@fwei.tk> | 2019-03-07 19:14:01 -0500 |
|---|---|---|
| committer | Franklin Wei <me@fwei.tk> | 2019-03-07 19:25:41 -0500 |
| commit | 6c56267423a403c5da23380e9d6f23e8926ffb46 (patch) | |
| tree | 278f82b3801509dd2a719de323d6f3738079763e /src/main.cpp | |
| parent | 291bd26fd8920831181e8207e1fcdf544cd6cd6f (diff) | |
| download | fieldviz-6c56267423a403c5da23380e9d6f23e8926ffb46.zip fieldviz-6c56267423a403c5da23380e9d6f23e8926ffb46.tar.gz fieldviz-6c56267423a403c5da23380e9d6f23e8926ffb46.tar.bz2 fieldviz-6c56267423a403c5da23380e9d6f23e8926ffb46.tar.xz | |
Move math functions into a separate library
Diffstat (limited to 'src/main.cpp')
| -rw-r--r-- | src/main.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/main.cpp b/src/main.cpp index 26ed520..9b67ffd 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -12,9 +12,10 @@ #include "gnuplot_i.hpp" -#include "vec3.h" #include "curve.h" +#include <fml/fml.h> +using namespace fml; using namespace std; /* A current or charge distribution */ |