diff options
| author | Franklin Wei <me@fwei.tk> | 2019-05-31 19:08:41 -0400 |
|---|---|---|
| committer | Franklin Wei <me@fwei.tk> | 2019-05-31 19:08:41 -0400 |
| commit | a99daf4a49dfbe9f4ec9bd16da8c2ad274b592a4 (patch) | |
| tree | 22da4193266a9091dbcaf86344289af0de2e6102 /include/fml/fml.h | |
| parent | f9be2ace4ca871d7ad68c1a4dbdcff87511d838b (diff) | |
| download | libfml-a99daf4a49dfbe9f4ec9bd16da8c2ad274b592a4.zip libfml-a99daf4a49dfbe9f4ec9bd16da8c2ad274b592a4.tar.gz libfml-a99daf4a49dfbe9f4ec9bd16da8c2ad274b592a4.tar.bz2 libfml-a99daf4a49dfbe9f4ec9bd16da8c2ad274b592a4.tar.xz | |
Import manifold code from fieldviz
Diffstat (limited to '')
| -rw-r--r-- | include/fml/fml.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/include/fml/fml.h b/include/fml/fml.h index 046db5a..bef1851 100644 --- a/include/fml/fml.h +++ b/include/fml/fml.h @@ -4,7 +4,16 @@ * Copyright (C) 2019 Franklin Wei */ +#ifndef FML_H +#define FML_H + typedef float scalar; +#include "curve.h" +#include "manifold.h" #include "quat.h" +#include "surface.h" +#include "vec2.h" #include "vec3.h" + +#endif |