1 |
< |
.\" RCSid "$Id" |
1 |
> |
.\" RCSid "$Id$" |
2 |
|
.TH OBJ2MESH 1 03/11/03 RADIANCE |
3 |
|
.SH NAME |
4 |
|
obj2mesh - create a compiled RADIANCE mesh file from Wavefront .OBJ input |
5 |
|
.SH SYNOPSIS |
6 |
|
.B obj2mesh |
7 |
|
[ |
8 |
< |
.B "\-a matinput" |
8 |
> |
.B "\-a matfile" |
9 |
|
][ |
10 |
+ |
.B "\-l matlib" |
11 |
+ |
][ |
12 |
|
.B "\-n objlim" |
13 |
|
][ |
14 |
|
.B "\-r maxres" |
15 |
|
][ |
16 |
|
.B \-w |
17 |
+ |
][ |
18 |
+ |
.B \-v |
19 |
|
] |
20 |
|
[ |
21 |
|
.B "input.obj" |
34 |
|
Any RADIANCE material descriptions included via one or more |
35 |
|
.I \-a |
36 |
|
options will be compiled and stored in the mesh as well. |
37 |
+ |
If the |
38 |
+ |
.I \-l |
39 |
+ |
option is used to specify a material file, the RADIANCE library |
40 |
+ |
locations are searched. |
41 |
|
This mesh may be included in a RADIANCE scene description via the |
42 |
|
.I mesh |
43 |
|
primitive, thus: |
63 |
|
.I \-n |
64 |
|
option specifies the maximum surface set size for |
65 |
|
each voxel. |
66 |
< |
Larger numbers result in quicker mesh generation needing |
67 |
< |
less memory, but potentially slower rendering. |
60 |
< |
Smaller values may produce faster renderings, |
61 |
< |
since the default number (15) is on the high side to reduce |
62 |
< |
the compiled mesh octree size. |
66 |
> |
Larger numbers result in quicker mesh generation, |
67 |
> |
but potentially slower rendering. |
68 |
|
Values below 6 are not recommended, since this is the median |
69 |
|
valence for a mesh vertex (the number of adjacent faces), |
70 |
|
and smaller values will result in pointless octree subdivision. |
71 |
+ |
The default setting is 9. |
72 |
|
.PP |
73 |
|
The |
74 |
|
.I \-r |
80 |
|
The |
81 |
|
.I \-w |
82 |
|
option suppresses warnings. |
83 |
+ |
The |
84 |
+ |
.I \-v |
85 |
+ |
option prints out final mesh statistics. |
86 |
|
.PP |
87 |
|
Although the mesh file format is binary, it is meant to be portable |
88 |
|
between machines. |
105 |
|
.I obj2mesh. |
106 |
|
Normals will be interpolated over the mesh |
107 |
|
during rendering to produce a smooth surface. |
108 |
< |
If no vertex normals are present, the mess will appear tesselated. |
108 |
> |
If no vertex normals are present, the mesh will appear tesselated. |
109 |
|
A zero length normal (i.e., 0 0 0) will generate a syntax error. |
110 |
|
.TP |
111 |
|
.BI vt " u v" |
141 |
|
statement) is numbered 1, and likewise |
142 |
|
for the first texture coordinate and the first surface normal. |
143 |
|
Negative indices count backward from the current position in |
144 |
< |
the input, where -1 is the last vertex encountered, -2 |
144 |
> |
the input, where \-1 is the last vertex encountered, \-2 |
145 |
|
is the one before that, etc. |
146 |
|
An index of 0 may be used for the vertex texture or normal to |
147 |
|
indicate none, or these may be left off entirely. |
148 |
|
All faces will be broken into triangles in the final mesh. |
140 |
– |
.I Obj2mesh |
141 |
– |
currently makes an unsafe assumption that faces are convex, |
142 |
– |
which may result in odd results if they are not. |
149 |
|
.PP |
150 |
|
All other statement types will be ignored on the input. |
151 |
|
Statements understood by |
182 |
|
.IP "Hash table overflow in fullnode" |
183 |
|
This error is caused by too many surfaces, and there is |
184 |
|
little hope of compiling this mesh. |
185 |
< |
.SH EXAMPLE |
186 |
< |
To create a compiled triangle mesh from the scene file mesh.obj: |
185 |
> |
.SH EXAMPLES |
186 |
> |
To create a compiled triangle mesh from the scene file mesh.obj |
187 |
> |
using materials from the file mesh.mat: |
188 |
|
.IP "" .2i |
189 |
< |
oconv mesh.obj mesh.rtm |
189 |
> |
obj2mesh \-a mesh.mat mesh.obj mesh.rtm |
190 |
> |
.PP |
191 |
> |
To use local coordinates to place a square tiled image on a mesh object: |
192 |
> |
.sp |
193 |
> |
.nf |
194 |
> |
void colorpict tiled_pat |
195 |
> |
7 red green blue mytile.hdr . frac(Lu) frac(Lv) |
196 |
> |
0 |
197 |
> |
0 |
198 |
> |
|
199 |
> |
tiled_pat plastic tiled_mat |
200 |
> |
0 |
201 |
> |
0 |
202 |
> |
5 .9 .9 .9 0 0 |
203 |
> |
|
204 |
> |
tiled_mat mesh tiled_mesh |
205 |
> |
1 mymesh.rtm |
206 |
> |
0 |
207 |
> |
0 |
208 |
> |
.fi |
209 |
> |
.SH ENVIRONMENT |
210 |
> |
RAYPATH the directories to search for material files. |
211 |
|
.SH AUTHOR |
212 |
|
Greg Ward |
213 |
|
.SH "SEE ALSO" |
214 |
|
gensurf(1), getinfo(1), make(1), obj2rad(1), |
215 |
< |
oconv(1), rpict(1), rview(1), rtrace(1), xform(1) |
215 |
> |
oconv(1), rpict(1), rvu(1), rtrace(1), xform(1) |