BRL-CAD
conv.h
Go to the documentation of this file.
1 /* C O N 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 /** @file rt/conv.h */
21 
22 #ifndef RT_CONV_H
23 #define RT_CONV_H
24 
25 #include "common.h"
26 #include "bu/list.h"
27 #include "bn/tol.h"
28 #include "rt/defines.h"
29 #include "rt/db_internal.h"
30 #include "rt/resource.h"
31 #include "nmg.h"
32 
33 __BEGIN_DECLS
34 
35 RT_EXPORT extern union tree *rt_booltree_leaf_tess(struct db_tree_state *tsp,
36  const struct db_full_path *pathp,
37  struct rt_db_internal *ip,
38  void *client_data);
39 
40 RT_EXPORT extern union tree *rt_booltree_evaluate(union tree *tp,
41  struct bu_list *vlfree,
42  const struct bn_tol *tol,
43  struct resource *resp,
44  int (*do_bool)(union tree *, union tree *, union tree *, int op, struct bu_list *, const struct bn_tol *, void *),
45  int verbose,
46  void *data
47  );
48 
49 __END_DECLS
50 
51 #endif /* RT__CONV_H */
52 
53 /*
54  * Local Variables:
55  * tab-width: 8
56  * mode: C
57  * indent-tabs-mode: t
58  * c-file-style: "stroustrup"
59  * End:
60  * ex: shiftwidth=4 tabstop=8
61  */
Header file for the BRL-CAD common definitions.
union tree * rt_booltree_leaf_tess(struct db_tree_state *tsp, const struct db_full_path *pathp, struct rt_db_internal *ip, void *client_data)
union tree * rt_booltree_evaluate(union tree *tp, struct bu_list *vlfree, const struct bn_tol *tol, struct resource *resp, int(*do_bool)(union tree *, union tree *, union tree *, int op, struct bu_list *, const struct bn_tol *, void *), int verbose, void *data)
Definition: tol.h:72
Definition: list.h:132
Definition: tree.h:148