1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
/* * libfml: Frank's Math Library * * 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