BRL-CAD
multipoly.h
Go to the documentation of this file.
1/* M U L T I P O L Y . H
2 * BRL-CAD
3 *
4 * Copyright (c) 2004-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/*----------------------------------------------------------------------*/
22/** @addtogroup bn_poly
23 *
24 * @brief Polynomial data type
25 *
26 */
27/** @{ */
28/* @file multipoly.h */
29
30#ifndef BN_MULTIPOLY_H
31#define BN_MULTIPOLY_H
32
33#include "common.h"
34#include "bn/defines.h"
35
36__BEGIN_DECLS
37
38typedef struct bn_multipoly {
39 uint32_t magic;
40 int dgrs;
41 int dgrt;
42 double **cf;
44
45__END_DECLS
46
47#endif /* BN_MULTIPOLY_H */
48/** @} */
49/*
50 * Local Variables:
51 * mode: C
52 * tab-width: 8
53 * indent-tabs-mode: t
54 * c-file-style: "stroustrup"
55 * End:
56 * ex: shiftwidth=4 tabstop=8
57 */
Header file for the BRL-CAD common definitions.
struct bn_multipoly bn_multipoly_t
double ** cf
Definition: multipoly.h:42
uint32_t magic
Definition: multipoly.h:39