BRL-CAD
brep.h
Go to the documentation of this file.
1/* B R E P . H
2 * BRL-CAD
3 *
4 * Copyright (c) 2007-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/** @addtogroup libbrep
21 * @brief
22 * Define surface and curve structures for Non-Uniform Rational
23 * B-Spline (NURBS) curves and surfaces. Uses openNURBS library.
24 */
25/** @{ */
26/** @file include/brep.h */
27#ifndef BREP_H
28#define BREP_H
29
30#include "common.h"
31
32__BEGIN_DECLS
33
34#include "brep/defines.h"
35#include "brep/util.h"
36#include "brep/ray.h"
37#include "brep/brnode.h"
38#include "brep/curvetree.h"
39#include "brep/bbnode.h"
40#include "brep/surfacetree.h"
41#include "brep/pullback.h"
42#include "brep/intersect.h"
43#include "brep/boolean.h"
44#include "brep/cdt.h"
45#include "brep/csg.h"
46
47__END_DECLS
48
49#endif /* BREP_H */
50/** @} */
51/*
52 * Local Variables:
53 * mode: C
54 * tab-width: 8
55 * indent-tabs-mode: t
56 * c-file-style: "stroustrup"
57 * End:
58 * ex: shiftwidth=4 tabstop=8
59 */
Header file for the BRL-CAD common definitions.