BRL-CAD
adc.h
Go to the documentation of this file.
1/* A D C . H
2 * BRL-CAD
3 *
4 * Copyright (c) 2008-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 ged_adc
21 *
22 * Geometry EDiting Library Angle Distance Cursor Functions.
23 *
24 */
25/** @{ */
26/** @file ged/view/adc.h */
27
28#ifndef GED_VIEW_ADC_H
29#define GED_VIEW_ADC_H
30
31#include "common.h"
32#include "ged/defines.h"
33
34__BEGIN_DECLS
35
36/* defined in adc.c */
37GED_EXPORT extern void ged_calc_adc_pos(struct bview *gvp);
38GED_EXPORT extern void ged_calc_adc_a1(struct bview *gvp);
39GED_EXPORT extern void ged_calc_adc_a2(struct bview *gvp);
40GED_EXPORT extern void ged_calc_adc_dst(struct bview *gvp);
41/**
42 * Angle distance cursor.
43 */
44GED_EXPORT extern int ged_adc(struct ged *gedp, int argc, const char *argv[]);
45
46__END_DECLS
47
48#endif /* GED_VIEW_ADC_H */
49
50/** @} */
51
52/*
53 * Local Variables:
54 * tab-width: 8
55 * mode: C
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 common definitions.
void ged_calc_adc_dst(struct bview *gvp)
int ged_adc(struct ged *gedp, int argc, const char *argv[])
void ged_calc_adc_pos(struct bview *gvp)
void ged_calc_adc_a1(struct bview *gvp)
void ged_calc_adc_a2(struct bview *gvp)
Definition: defines.h:476
Definition: defines.h:195