BRL-CAD
rt.h
Go to the documentation of this file.
1/* R T . 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_raytrace
21 *
22 * Geometry EDiting Library Database Raytracing Related Functions.
23 *
24 */
25/** @{ */
26/** @file ged/rt.h */
27
28#ifndef GED_RT_H
29#define GED_RT_H
30
31#include "common.h"
32#include "ged/defines.h"
33
34__BEGIN_DECLS
35
36/**
37 * Invoke any raytracing application with the current view.
38 */
39GED_EXPORT extern int ged_rrt(struct ged *gedp, int argc, const char *argv[]);
40
41/**
42 * Run the raytracing application.
43 */
44GED_EXPORT extern int ged_rt(struct ged *gedp, int argc, const char *argv[]);
45
46/**
47 * Abort the current raytracing processes.
48 */
49GED_EXPORT extern int ged_rtabort(struct ged *gedp, int argc, const char *argv[]);
50
51/**
52 * Run the rtwizard application.
53 */
54GED_EXPORT extern int ged_rtwizard(struct ged *gedp, int argc, const char *argv[]);
55
56/**
57 * Preview a new style RT animation script.
58 */
59GED_EXPORT extern int ged_preview(struct ged *gedp, int argc, const char *argv[]);
60
61/**
62 * Save keyframe in file
63 */
64GED_EXPORT extern int ged_savekey(struct ged *gedp, int argc, const char *argv[]);
65
66
67__END_DECLS
68
69#endif /* GED_RT_H */
70
71/** @} */
72
73/*
74 * Local Variables:
75 * tab-width: 8
76 * mode: C
77 * indent-tabs-mode: t
78 * c-file-style: "stroustrup"
79 * End:
80 * ex: shiftwidth=4 tabstop=8
81 */
Header file for the BRL-CAD common definitions.
int ged_rtwizard(struct ged *gedp, int argc, const char *argv[])
int ged_preview(struct ged *gedp, int argc, const char *argv[])
int ged_rtabort(struct ged *gedp, int argc, const char *argv[])
int ged_rt(struct ged *gedp, int argc, const char *argv[])
int ged_rrt(struct ged *gedp, int argc, const char *argv[])
int ged_savekey(struct ged *gedp, int argc, const char *argv[])
Definition: defines.h:195