BRL-CAD
Loading...
Searching...
No Matches
conv.h
Go to the documentation of this file.
1/* C O N V . H
2 * BRL-CAD
3 *
4 * Copyright (c) 1993-2026 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
34
36 struct db_tree_state *tsp,
37 const struct db_full_path *pathp,
38 struct rt_db_internal *ip,
39 void *client_data);
40
42 union tree *tp,
43 struct bu_list *vlfree,
44 const struct bn_tol *tol,
45 struct resource *resp,
46 int (*do_bool)(union tree *, union tree *, union tree *, int op, struct bu_list *, const struct bn_tol *, void *),
47 int verbose,
48 void *data
49 );
50
51
53 union tree *tp,
54 struct bu_list *vlfree,
55 const struct bn_tol *tol,
56 int (*do_bool)(union tree *, union tree *, union tree *, int op, struct bu_list *, const struct bn_tol *, void *),
57 int verbose,
58 void *data
59 );
60
62
63#endif /* RT__CONV_H */
64
65/*
66 * Local Variables:
67 * tab-width: 8
68 * mode: C
69 * indent-tabs-mode: t
70 * c-file-style: "stroustrup"
71 * End:
72 * ex: shiftwidth=4 tabstop=8
73 */
Definition dvec.h:74
Header file for the BRL-CAD common definitions.
DEPRECATED 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)
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_eval(union tree *tp, struct bu_list *vlfree, const struct bn_tol *tol, int(*do_bool)(union tree *, union tree *, union tree *, int op, struct bu_list *, const struct bn_tol *, void *), int verbose, void *data)
#define DEPRECATED
Definition common.h:433
Definition tol.h:72
Definition tree.h:166