BRL-CAD
analyze.h
Go to the documentation of this file.
1 /* A N A L Y Z E . H
2  * BRL-CAD
3  *
4  * Copyright (c) 2008-2024 United States Government as represented by
5  * the U.S. Army Research Laboratory.
6  *
7  * This library is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Lesser General Public License
9  * version 2.1 as published by the Free Software Foundation.
10  *
11  * This library is distributed in the hope that it will be useful, but
12  * WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with this file; see the file named COPYING for more
18  * information.
19  */
20 /** @addtogroup libanalyze
21  *
22  * Functions provided by the LIBANALYZE geometry analysis library.
23  *
24  */
25 /** @{ */
26 /** @file include/analyze.h */
27 
28 #ifndef ANALYZE_H
29 #define ANALYZE_H
30 
31 #include "common.h"
32 
33 #include "analyze/defines.h"
34 #include "analyze/debug.h"
35 #include "analyze/diff.h"
36 #include "analyze/density.h"
37 #include "analyze/grid.h"
38 #include "analyze/heal.h"
39 #include "analyze/info.h"
40 #include "analyze/pnts.h"
41 #include "analyze/polygonize.h"
42 #include "analyze/nirt.h"
43 #include "analyze/worker.h"
44 #include "analyze/voxelize.h"
45 
46 #endif /* ANALYZE_H */
47 
48 /** @} */
49 
50 /*
51  * Local Variables:
52  * tab-width: 8
53  * mode: C
54  * indent-tabs-mode: t
55  * c-file-style: "stroustrup"
56  * End:
57  * ex: shiftwidth=4 tabstop=8
58  */
Header file for the BRL-CAD common definitions.