BRL-CAD
bv.h
Go to the documentation of this file.
1/* B V . H
2 * BRL-CAD
3 *
4 * Copyright (c) 1993-2023 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/util.h"
46#include "./bv/vlist.h"
47#include "./bv/view_sets.h"
48
49#endif /* BV_H */
50
51/** @} */
52/*
53 * Local Variables:
54 * mode: C
55 * tab-width: 8
56 * indent-tabs-mode: t
57 * c-file-style: "stroustrup"
58 * End:
59 * ex: shiftwidth=4 tabstop=8
60 */
Header file for the BRL-CAD Numerical Computation Library, LIBBN.
Header file for the BRL-CAD common definitions.
fundamental vector, matrix, quaternion math macros