2 |
|
/*------------------------------------------------------------------------- |
3 |
|
|
4 |
|
Triangle Bounder/Smoother for POV-Ray |
5 |
< |
Copyright (c) 1993 Steve Anger |
5 |
> |
by Steve Anger 1993 |
6 |
|
|
7 |
|
A number of C routines that can be used to generate POV-Ray ray tracer |
8 |
|
files from triangle data. Supports generation of smooth triangles and an |
9 |
< |
optimal set of bounding shapes for much faster traces. This program may be |
10 |
< |
freely modified and distributed. |
9 |
> |
optimal set of bounding shapes for much faster traces. |
10 |
|
|
12 |
– |
CompuServe: 70714,3113 |
13 |
– |
YCCMR BBS: (708)358-5611 |
14 |
– |
|
11 |
|
--------------------------------------------------------------------------*/ |
12 |
|
|
13 |
< |
#ifndef __RAYOPT_H |
14 |
< |
#define __RAYOPT_H |
13 |
> |
#ifndef _MGF_RAYOPT_H |
14 |
> |
#define _MGF_RAYOPT_H |
15 |
> |
#ifdef __cplusplus |
16 |
> |
extern "C" { |
17 |
> |
#endif |
18 |
|
|
19 |
+ |
|
20 |
|
#include "vect.h" |
21 |
|
|
22 |
|
void opt_set_format (int format); |
53 |
|
void add_ext (char *fname, char *ext, int force); |
54 |
|
void cleanup_name (char *name); |
55 |
|
|
56 |
+ |
|
57 |
+ |
#ifdef __cplusplus |
58 |
+ |
} |
59 |
|
#endif |
60 |
+ |
#endif /* _MGF_RAYOPT_H */ |
61 |
+ |
|