forked from BRL-CAD/brlcad
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbrlcad.h
81 lines (68 loc) · 1.89 KB
/
brlcad.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
/* B R L C A D . H
* BRL-CAD
*
* Copyright (c) 2004-2023 United States Government as represented by
* the U.S. Army Research Laboratory.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public License
* version 2.1 as published by the Free Software Foundation.
*
* This library is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this file; see the file named COPYING for more
* information.
*/
/** @addtogroup fixme */
/** @{ */
/** @file brlcad.h
*@brief
* Convenience header for the core BRL-CAD libraries
*
* This header includes the headers provided by libbu, libbn, libwdb,
* and librt. It may be used in lieu of including all of the
* individual headers.
*
*/
#ifndef BRLCAD_H
#define BRLCAD_H
#include "common.h"
/* system headers presumed to be available */
#include <stdio.h>
#include <math.h>
/* basic utilities */
#include "bu.h"
/* vector mathematics */
#include "vmath.h"
/* non-manifold geometry */
#include "nmg.h"
/* basic numerics */
#include "bn.h"
/* database format storage types */
#include "rt/db4.h"
/* raytrace interface constructs */
#include "raytrace.h"
/* the write-only database library interface */
#include "wdb.h"
/* in-memory representations of the database geometry objects. these
* are subject to change and should not be relied upon.
*/
#include "rt/geom.h"
/* database object functions
*/
#include "rt/func.h"
#endif /* BRLCAD_H */
/** @} */
/*
* Local Variables:
* mode: C
* tab-width: 8
* indent-tabs-mode: t
* c-file-style: "stroustrup"
* End:
* ex: shiftwidth=4 tabstop=8
*/