BRL-CAD
bv.h
Go to the documentation of this file.
1 /* B V . H
2  * BRL-CAD
3  *
4  * Copyright (c) 1993-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 
21 // TODO - bv currently conflates scene and camera concepts - for example,
22 // data axes and polygons are properly scene objects being viewed by the
23 // camera, but at the moment they're directly part of the bv struct.
24 //
25 // The plan is to address this, so until this notice is removed the bv data
26 // structure and related data structures should be considered in flux.
27 
28 /** @addtogroup libbv */
29 /** @{ */
30 /** @file bv.h
31  *
32  */
33 
34 #ifndef BV_H
35 #define BV_H
36 
37 #include "common.h"
38 
39 #include "vmath.h"
40 #include "bu/vls.h"
41 #include "bn.h"
42 
43 #include "./bv/defines.h"
44 #include "./bv/adc.h"
45 #include "./bv/lod.h"
46 #include "./bv/polygon.h"
47 #include "./bv/snap.h"
48 #include "./bv/util.h"
49 #include "./bv/vlist.h"
50 #include "./bv/view_sets.h"
51 
52 #endif /* BV_H */
53 
54 /** @} */
55 /*
56  * Local Variables:
57  * mode: C
58  * tab-width: 8
59  * indent-tabs-mode: t
60  * c-file-style: "stroustrup"
61  * End:
62  * ex: shiftwidth=4 tabstop=8
63  */
Header file for the BRL-CAD Numerical Computation Library, LIBBN.
Header file for the BRL-CAD common definitions.
fundamental vector, matrix, quaternion math macros