aboutsummaryrefslogtreecommitdiff
path: root/include/fml/fml.h
blob: bef18513dc02d7b681d76542cff46b7a897bfc51 (plain)
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