1# Doxyfile 1.4.3
2
3# This file describes the settings to be used by the documentation system
4# doxygen (www.doxygen.org) for a project
5#
6# All text after a hash (#) is considered a comment and will be ignored
7# The format is:
8#       TAG = value [value, ...]
9# For lists items can also be appended using:
10#       TAG += value [value, ...]
11# Values that contain spaces should be placed between quotes (" ")
12
13#---------------------------------------------------------------------------
14# Project related configuration options
15#---------------------------------------------------------------------------
16
17# The PROJECT_NAME tag is a single word (or a sequence of words surrounded
18# by quotes) that should identify the project.
19
20PROJECT_NAME           = Coin
21
22# The PROJECT_NUMBER tag can be used to enter a project or revision number.
23# This could be handy for archiving the generated documentation or
24# if some version control system is used.
25
26PROJECT_NUMBER         = 4.0.0a
27
28# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute)
29# base path where the generated documentation will be put.
30# If a relative path is entered, it will be relative to the location
31# where doxygen was started. If left blank the current directory will be used.
32
33OUTPUT_DIRECTORY       =
34
35# If the CREATE_SUBDIRS tag is set to YES, then doxygen will create
36# 4096 sub-directories (in 2 levels) under the output directory of each output
37# format and will distribute the generated files over these directories.
38# Enabling this option can be useful when feeding doxygen a huge amount of
39# source files, where putting all generated files in the same directory would
40# otherwise cause performance problems for the file system.
41
42CREATE_SUBDIRS         = NO
43
44# The OUTPUT_LANGUAGE tag is used to specify the language in which all
45# documentation generated by doxygen is written. Doxygen will use this
46# information to generate all constant output in the proper language.
47# The default language is English, other supported languages are:
48# Brazilian, Catalan, Chinese, Chinese-Traditional, Croatian, Czech, Danish,
49# Dutch, Finnish, French, German, Greek, Hungarian, Italian, Japanese,
50# Japanese-en (Japanese with English messages), Korean, Korean-en, Norwegian,
51# Polish, Portuguese, Romanian, Russian, Serbian, Slovak, Slovene, Spanish,
52# Swedish, and Ukrainian.
53
54OUTPUT_LANGUAGE        = English
55
56# If the BRIEF_MEMBER_DESC tag is set to YES (the default) Doxygen will
57# include brief member descriptions after the members that are listed in
58# the file and class documentation (similar to JavaDoc).
59# Set to NO to disable this.
60
61BRIEF_MEMBER_DESC      = YES
62
63# If the REPEAT_BRIEF tag is set to YES (the default) Doxygen will prepend
64# the brief description of a member or function before the detailed description.
65# Note: if both HIDE_UNDOC_MEMBERS and BRIEF_MEMBER_DESC are set to NO, the
66# brief descriptions will be completely suppressed.
67
68REPEAT_BRIEF           = YES
69
70# This tag implements a quasi-intelligent brief description abbreviator
71# that is used to form the text in various listings. Each string
72# in this list, if found as the leading text of the brief description, will be
73# stripped from the text and the result after processing the whole list, is
74# used as the annotated text. Otherwise, the brief description is used as-is.
75# If left blank, the following values are used ("$name" is automatically
76# replaced with the name of the entity): "The $name class" "The $name widget"
77# "The $name file" "is" "provides" "specifies" "contains"
78# "represents" "a" "an" "the"
79
80ABBREVIATE_BRIEF       =
81
82# If the ALWAYS_DETAILED_SEC and REPEAT_BRIEF tags are both set to YES then
83# Doxygen will generate a detailed section even if there is only a brief
84# description.
85
86ALWAYS_DETAILED_SEC    = NO
87
88# If the INLINE_INHERITED_MEMB tag is set to YES, doxygen will show all
89# inherited members of a class in the documentation of that class as if those
90# members were ordinary class members. Constructors, destructors and assignment
91# operators of the base classes will not be shown.
92
93INLINE_INHERITED_MEMB  = NO
94
95# If the FULL_PATH_NAMES tag is set to YES then Doxygen will prepend the full
96# path before files name in the file list and in the header files. If set
97# to NO the shortest path that makes the file name unique will be used.
98
99FULL_PATH_NAMES        = NO
100
101# If the FULL_PATH_NAMES tag is set to YES then the STRIP_FROM_PATH tag
102# can be used to strip a user-defined part of the path. Stripping is
103# only done if one of the specified strings matches the left-hand part of
104# the path. The tag can be used to show relative paths in the file list.
105# If left blank the directory from which doxygen is run is used as the
106# path to strip.
107
108STRIP_FROM_PATH        =
109
110# The STRIP_FROM_INC_PATH tag can be used to strip a user-defined part of
111# the path mentioned in the documentation of a class, which tells
112# the reader which header file to include in order to use a class.
113# If left blank only the name of the header file containing the class
114# definition is used. Otherwise one should specify the include paths that
115# are normally passed to the compiler using the -I flag.
116
117STRIP_FROM_INC_PATH    =
118
119# If the SHORT_NAMES tag is set to YES, doxygen will generate much shorter
120# (but less readable) file names. This can be useful is your file systems
121# doesn't support long names like on DOS, Mac, or CD-ROM.
122
123SHORT_NAMES            = NO
124
125# If the JAVADOC_AUTOBRIEF tag is set to YES then Doxygen
126# will interpret the first line (until the first dot) of a JavaDoc-style
127# comment as the brief description. If set to NO, the JavaDoc
128# comments will behave just like the Qt-style comments (thus requiring an
129# explicit @brief command for a brief description.
130
131JAVADOC_AUTOBRIEF      = YES
132
133# The MULTILINE_CPP_IS_BRIEF tag can be set to YES to make Doxygen
134# treat a multi-line C++ special comment block (i.e. a block of //! or ///
135# comments) as a brief description. This used to be the default behaviour.
136# The new default is to treat a multi-line C++ comment block as a detailed
137# description. Set this tag to YES if you prefer the old behaviour instead.
138
139MULTILINE_CPP_IS_BRIEF = NO
140
141# If the INHERIT_DOCS tag is set to YES (the default) then an undocumented
142# member inherits the documentation from any documented member that it
143# re-implements.
144
145INHERIT_DOCS           = YES
146
147# If member grouping is used in the documentation and the DISTRIBUTE_GROUP_DOC
148# tag is set to YES, then doxygen will reuse the documentation of the first
149# member in the group (if any) for the other members of the group. By default
150# all members of a group must be documented explicitly.
151
152DISTRIBUTE_GROUP_DOC   = NO
153
154# If the SEPARATE_MEMBER_PAGES tag is set to YES, then doxygen will produce
155# a new page for each member. If set to NO, the documentation of a member will
156# be part of the file/class/namespace that contains it.
157
158SEPARATE_MEMBER_PAGES  = NO
159
160# The TAB_SIZE tag can be used to set the number of spaces in a tab.
161# Doxygen uses this value to replace tabs by spaces in code fragments.
162
163TAB_SIZE               = 8
164
165# This tag can be used to specify a number of aliases that acts
166# as commands in the documentation. An alias has the form "name=value".
167# For example adding "sideeffect=\par Side Effects:\n" will allow you to
168# put the command \sideeffect (or @sideeffect) in the documentation, which
169# will result in a user-defined paragraph with heading "Side Effects:".
170# You can put \n's in the value part of an alias to insert newlines.
171
172ALIASES                = "COININTERNAL=<em>This API member is considered internal to the library, as it is not likely to be of interest to the application programmer.</em>\n\n" \
173                         "DANGEROUS_ALLOC_RETURN=<b>Note that if the Coin library has been built as a DLL under Microsoft Windows and you use this method from application code, you \e must make sure that both the Coin DLL and the application executable is using the same instance of a C Run-Time (CRT) library. Otherwise, you \e will get memory heap corruption upon deallocating the returned instances, eventually leading to mysterious crashes.</b>\n\n" \
174                         "TOOLMAKER_REF=For extending the Coin library with your own classes, we strongly recommend that you make yourself acquainted with the excellent �The Inventor Toolmaker� book (ISBN 0-201-62493-1), which describes the tasks involved in detail. This book was written by the original SGI Inventor designers and explains many of the underlying design ideas, aswell as having lots of hands-on examples on how to extend the Coin toolkit in ways that are true to the fundamental design ideas. (�The Inventor Toolmaker� is also available at SGI's online library, at no cost. See <a href=http://techpubs.sgi.com/library/tpl/cgi-bin/download.cgi?coll=0650&db=bks&docnumber=860-0107-002>Download The Inventor Toolmaker</a>.) Reading the sourcecode of the built-in classes in Coin should also provide very helpful.\n" \
175                         "COIN_CLASS_EXTENSION=Be aware that this class is an extension for Coin, and it is not available in the original SGI Open Inventor v2.1 API.\n" \
176                         "COIN_FUNCTION_EXTENSION=This function is an extension for Coin, and it is not available in the original SGI Open Inventor v2.1 API.\n" \
177                         "WEB3DCOPYRIGHT=<b>The detailed class documentation is taken verbatim from the VRML97 standard (ISO/IEC 14772-1:1997). It is copyright The Web3D Consortium, and is used by permission of the Consortium:</b>\n\n" \
178                         "ENDWEB3D=<b>The rest of this class documentation is \e not from the VRML97 standards documentation, but was written specifically for the Coin3D API documentation.</b>\n\n" \
179                         "ENGINE_TYPELESS_FILEFORMAT=The file format for this field is a bit special. Note the leading type specification, which is not necessary for most other field types:" \
180                         "NODEKIT_PRE_DIAGRAM=Node kit structure (new entries versus parent class marked with arrow prefix):" \
181                         "NODEKIT_POST_DIAGRAM=(See SoBaseKit::printDiagram() for information about the output formatting.)" \
182                         "NODEKIT_PRE_TABLE=Detailed information on catalog parts:" \
183                         "NODEKIT_POST_TABLE=(See SoBaseKit::printTable() for information about the output formatting.)" \
184                         "DRAGGER_CONSTRUCTOR=Default constructor, sets up the dragger nodekit catalog with the interaction and feedback geometry." \
185                         "DRAGGER_DEFAULT_SCREENSHOT=Here's how the dragger looks with its default geometry in the inactive state:"
186
187# Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C
188# sources only. Doxygen will then generate output that is more tailored for C.
189# For instance, some of the names that are used will be different. The list
190# of all members will be omitted, etc.
191
192OPTIMIZE_OUTPUT_FOR_C  = NO
193
194# Set the OPTIMIZE_OUTPUT_JAVA tag to YES if your project consists of Java sources
195# only. Doxygen will then generate output that is more tailored for Java.
196# For instance, namespaces will be presented as packages, qualified scopes
197# will look different, etc.
198
199OPTIMIZE_OUTPUT_JAVA   = NO
200
201# Set the SUBGROUPING tag to YES (the default) to allow class member groups of
202# the same type (for instance a group of public functions) to be put as a
203# subgroup of that type (e.g. under the Public Functions section). Set it to
204# NO to prevent subgrouping. Alternatively, this can be done per class using
205# the \nosubgrouping command.
206
207SUBGROUPING            = YES
208
209#---------------------------------------------------------------------------
210# Build related configuration options
211#---------------------------------------------------------------------------
212
213# If the EXTRACT_ALL tag is set to YES doxygen will assume all entities in
214# documentation are documented, even if no documentation was available.
215# Private class members and static file members will be hidden unless
216# the EXTRACT_PRIVATE and EXTRACT_STATIC tags are set to YES
217
218EXTRACT_ALL            = NO
219
220# If the EXTRACT_PRIVATE tag is set to YES all private members of a class
221# will be included in the documentation.
222
223EXTRACT_PRIVATE        = NO
224
225# If the EXTRACT_STATIC tag is set to YES all static members of a file
226# will be included in the documentation.
227
228EXTRACT_STATIC         = NO
229
230# If the EXTRACT_LOCAL_CLASSES tag is set to YES classes (and structs)
231# defined locally in source files will be included in the documentation.
232# If set to NO only classes defined in header files are included.
233
234EXTRACT_LOCAL_CLASSES  = NO
235
236# This flag is only useful for Objective-C code. When set to YES local
237# methods, which are defined in the implementation section but not in
238# the interface are included in the documentation.
239# If set to NO (the default) only methods in the interface are included.
240
241EXTRACT_LOCAL_METHODS  = NO
242
243# If the HIDE_UNDOC_MEMBERS tag is set to YES, Doxygen will hide all
244# undocumented members of documented classes, files or namespaces.
245# If set to NO (the default) these members will be included in the
246# various overviews, but no documentation section is generated.
247# This option has no effect if EXTRACT_ALL is enabled.
248
249HIDE_UNDOC_MEMBERS     = NO
250
251# If the HIDE_UNDOC_CLASSES tag is set to YES, Doxygen will hide all
252# undocumented classes that are normally visible in the class hierarchy.
253# If set to NO (the default) these classes will be included in the various
254# overviews. This option has no effect if EXTRACT_ALL is enabled.
255
256HIDE_UNDOC_CLASSES     = YES
257
258# If the HIDE_FRIEND_COMPOUNDS tag is set to YES, Doxygen will hide all
259# friend (class|struct|union) declarations.
260# If set to NO (the default) these declarations will be included in the
261# documentation.
262
263HIDE_FRIEND_COMPOUNDS  = YES
264
265# If the HIDE_IN_BODY_DOCS tag is set to YES, Doxygen will hide any
266# documentation blocks found inside the body of a function.
267# If set to NO (the default) these blocks will be appended to the
268# function's detailed documentation block.
269
270HIDE_IN_BODY_DOCS      = NO
271
272# The INTERNAL_DOCS tag determines if documentation
273# that is typed after a \internal command is included. If the tag is set
274# to NO (the default) then the documentation will be excluded.
275# Set it to YES to include the internal documentation.
276
277INTERNAL_DOCS          = YES
278
279# If the CASE_SENSE_NAMES tag is set to NO then Doxygen will only generate
280# file names in lower-case letters. If set to YES upper-case letters are also
281# allowed. This is useful if you have classes or files whose names only differ
282# in case and if your file system supports case sensitive file names. Windows
283# and Mac users are advised to set this option to NO.
284
285CASE_SENSE_NAMES       = YES
286
287# If the HIDE_SCOPE_NAMES tag is set to NO (the default) then Doxygen
288# will show members with their full class and namespace scopes in the
289# documentation. If set to YES the scope will be hidden.
290
291HIDE_SCOPE_NAMES       = NO
292
293# If the SHOW_INCLUDE_FILES tag is set to YES (the default) then Doxygen
294# will put a list of the files that are included by a file in the documentation
295# of that file.
296
297SHOW_INCLUDE_FILES     = YES
298
299# If the INLINE_INFO tag is set to YES (the default) then a tag [inline]
300# is inserted in the documentation for inline members.
301
302INLINE_INFO            = YES
303
304# If the SORT_MEMBER_DOCS tag is set to YES (the default) then doxygen
305# will sort the (detailed) documentation of file and class members
306# alphabetically by member name. If set to NO the members will appear in
307# declaration order.
308
309SORT_MEMBER_DOCS       = NO
310
311# If the SORT_BRIEF_DOCS tag is set to YES then doxygen will sort the
312# brief documentation of file, namespace and class members alphabetically
313# by member name. If set to NO (the default) the members will appear in
314# declaration order.
315
316SORT_BRIEF_DOCS        = NO
317
318# If the SORT_BY_SCOPE_NAME tag is set to YES, the class list will be
319# sorted by fully-qualified names, including namespaces. If set to
320# NO (the default), the class list will be sorted only by class name,
321# not including the namespace part.
322# Note: This option is not very useful if HIDE_SCOPE_NAMES is set to YES.
323# Note: This option applies only to the class list, not to the
324# alphabetical list.
325
326SORT_BY_SCOPE_NAME     = NO
327
328# The GENERATE_TODOLIST tag can be used to enable (YES) or
329# disable (NO) the todo list. This list is created by putting \todo
330# commands in the documentation.
331
332GENERATE_TODOLIST      = NO
333
334# The GENERATE_TESTLIST tag can be used to enable (YES) or
335# disable (NO) the test list. This list is created by putting \test
336# commands in the documentation.
337
338GENERATE_TESTLIST      = NO
339
340# The GENERATE_BUGLIST tag can be used to enable (YES) or
341# disable (NO) the bug list. This list is created by putting \bug
342# commands in the documentation.
343
344GENERATE_BUGLIST       = YES
345
346# The GENERATE_DEPRECATEDLIST tag can be used to enable (YES) or
347# disable (NO) the deprecated list. This list is created by putting
348# \deprecated commands in the documentation.
349
350GENERATE_DEPRECATEDLIST= YES
351
352# The ENABLED_SECTIONS tag can be used to enable conditional
353# documentation sections, marked by \if sectionname ... \endif.
354
355ENABLED_SECTIONS       =
356
357# The MAX_INITIALIZER_LINES tag determines the maximum number of lines
358# the initial value of a variable or define consists of for it to appear in
359# the documentation. If the initializer consists of more lines than specified
360# here it will be hidden. Use a value of 0 to hide initializers completely.
361# The appearance of the initializer of individual variables and defines in the
362# documentation can be controlled using \showinitializer or \hideinitializer
363# command in the documentation regardless of this setting.
364
365MAX_INITIALIZER_LINES  = 30
366
367# Set the SHOW_USED_FILES tag to NO to disable the list of files generated
368# at the bottom of the documentation of classes and structs. If set to YES the
369# list will mention the files that were used to generate the documentation.
370
371SHOW_USED_FILES        = YES
372
373# If the sources in your project are distributed over multiple directories
374# then setting the SHOW_DIRECTORIES tag to YES will show the directory hierarchy
375# in the documentation.
376
377SHOW_DIRECTORIES       = NO
378
379# The FILE_VERSION_FILTER tag can be used to specify a program or script that
380# doxygen should invoke to get the current version for each file (typically from the
381# version control system). Doxygen will invoke the program by executing (via
382# popen()) the command <command> <input-file>, where <command> is the value of
383# the FILE_VERSION_FILTER tag, and <input-file> is the name of an input file
384# provided by doxygen. Whatever the progam writes to standard output
385# is used as the file version. See the manual for examples.
386
387FILE_VERSION_FILTER    =
388
389#---------------------------------------------------------------------------
390# configuration options related to warning and progress messages
391#---------------------------------------------------------------------------
392
393# The QUIET tag can be used to turn on/off the messages that are generated
394# by doxygen. Possible values are YES and NO. If left blank NO is used.
395
396QUIET                  = YES
397
398# The WARNINGS tag can be used to turn on/off the warning messages that are
399# generated by doxygen. Possible values are YES and NO. If left blank
400# NO is used.
401
402WARNINGS               = YES
403
404# If WARN_IF_UNDOCUMENTED is set to YES, then doxygen will generate warnings
405# for undocumented members. If EXTRACT_ALL is set to YES then this flag will
406# automatically be disabled.
407
408WARN_IF_UNDOCUMENTED   = YES
409
410# If WARN_IF_DOC_ERROR is set to YES, doxygen will generate warnings for
411# potential errors in the documentation, such as not documenting some
412# parameters in a documented function, or documenting parameters that
413# don't exist or using markup commands wrongly.
414
415WARN_IF_DOC_ERROR      = YES
416
417# This WARN_NO_PARAMDOC option can be abled to get warnings for
418# functions that are documented, but have no documentation for their parameters
419# or return value. If set to NO (the default) doxygen will only warn about
420# wrong or incomplete parameter documentation, but not about the absence of
421# documentation.
422
423WARN_NO_PARAMDOC       = NO
424
425# The WARN_FORMAT tag determines the format of the warning messages that
426# doxygen can produce. The string should contain the $file, $line, and $text
427# tags, which will be replaced by the file and line number from which the
428# warning originated and the warning text. Optionally the format may contain
429# $version, which will be replaced by the version of the file (if it could
430# be obtained via FILE_VERSION_FILTER)
431
432WARN_FORMAT            = "$file:$line: $text"
433
434# The WARN_LOGFILE tag can be used to specify a file to which warning
435# and error messages should be written. If left blank the output is written
436# to stderr.
437
438WARN_LOGFILE           =
439
440#---------------------------------------------------------------------------
441# configuration options related to the input files
442#---------------------------------------------------------------------------
443
444# The INPUT tag can be used to specify the files and/or directories that contain
445# documented source files. You may enter file names like "myfile.cpp" or
446# directories like "/usr/src/myproject". Separate the files or directories
447# with spaces.
448
449INPUT                  = .\include\Inventor\C\basic.h ..\..\docs\releases.dox ..\..\include\Inventor\actions\SoAction.h ..\..\include\Inventor\actions\SoAudioRenderAction.h ..\..\include\Inventor\actions\SoBoxHighlightRenderAction.h ..\..\include\Inventor\actions\SoCallbackAction.h ..\..\include\Inventor\actions\SoGetBoundingBoxAction.h ..\..\include\Inventor\actions\SoGetMatrixAction.h ..\..\include\Inventor\actions\SoGetPrimitiveCountAction.h ..\..\include\Inventor\actions\SoGlobalSimplifyAction.h ..\..\include\Inventor\actions\SoGLRenderAction.h ..\..\include\Inventor\actions\SoHandleEventAction.h ..\..\include\Inventor\actions\SoLineHighlightRenderAction.h ..\..\include\Inventor\actions\SoPickAction.h ..\..\include\Inventor\actions\SoRayPickAction.h ..\..\include\Inventor\actions\SoReorganizeAction.h ..\..\include\Inventor\actions\SoSearchAction.h ..\..\include\Inventor\actions\SoShapeSimplifyAction.h ..\..\include\Inventor\actions\SoSimplifyAction.h ..\..\include\Inventor\actions\SoSubAction.h ..\..\include\Inventor\actions\SoToVRML2Action.h ..\..\include\Inventor\actions\SoToVRMLAction.h ..\..\include\Inventor\actions\SoWriteAction.h ..\..\include\Inventor\annex\ForeignFiles\SoForeignFileKit.h ..\..\include\Inventor\annex\ForeignFiles\SoSTLFileKit.h ..\..\include\Inventor\annex\FXViz\elements\SoGLShadowCullingElement.h ..\..\include\Inventor\annex\FXViz\elements\SoShadowStyleElement.h ..\..\include\Inventor\annex\FXViz\nodes\SoShadowCulling.h ..\..\include\Inventor\annex\FXViz\nodes\SoShadowDirectionalLight.h ..\..\include\Inventor\annex\FXViz\nodes\SoShadowGroup.h ..\..\include\Inventor\annex\FXViz\nodes\SoShadowSpotLight.h ..\..\include\Inventor\annex\FXViz\nodes\SoShadowStyle.h ..\..\include\Inventor\annex\Profiler\elements\SoProfilerElement.h ..\..\include\Inventor\annex\Profiler\nodekits\SoNodeVisualize.h ..\..\include\Inventor\annex\Profiler\nodekits\SoProfilerOverlayKit.h ..\..\include\Inventor\annex\Profiler\nodes\SoProfilerStats.h ..\..\include\Inventor\annex\Profiler\SbProfilingData.h ..\..\include\Inventor\annex\Profiler\SoProfiler.h ..\..\include\Inventor\annex\Profiler\utils\SoProfilingReportGenerator.h ..\..\include\Inventor\bundles\SoBundle.h ..\..\include\Inventor\bundles\SoMaterialBundle.h ..\..\include\Inventor\bundles\SoNormalBundle.h ..\..\include\Inventor\bundles\SoTextureCoordinateBundle.h ..\..\include\Inventor\bundles\SoVertexAttributeBundle.h ..\..\include\Inventor\caches\SoBoundingBoxCache.h ..\..\include\Inventor\caches\SoCache.h ..\..\include\Inventor\caches\SoConvexDataCache.h ..\..\include\Inventor\caches\SoGLCacheList.h ..\..\include\Inventor\caches\SoGLRenderCache.h ..\..\include\Inventor\caches\SoNormalCache.h ..\..\include\Inventor\caches\SoPrimitiveVertexCache.h ..\..\include\Inventor\caches\SoTextureCoordinateCache.h ..\..\include\Inventor\C\base\hash.h ..\..\include\Inventor\C\base\heap.h ..\..\include\Inventor\C\base\memalloc.h ..\..\include\Inventor\C\base\rbptree.h ..\..\include\Inventor\C\base\string.h ..\..\include\Inventor\C\base\time.h ..\..\include\Inventor\C\glue\dl.h ..\..\include\Inventor\collision\SoIntersectionDetectionAction.h ..\..\include\Inventor\C\threads\barrier.h ..\..\include\Inventor\C\threads\condvar.h ..\..\include\Inventor\C\threads\fifo.h ..\..\include\Inventor\C\threads\mutex.h ..\..\include\Inventor\C\threads\recmutex.h ..\..\include\Inventor\C\threads\rwmutex.h ..\..\include\Inventor\C\threads\sched.h ..\..\include\Inventor\C\threads\storage.h ..\..\include\Inventor\C\threads\sync.h ..\..\include\Inventor\C\threads\thread.h ..\..\include\Inventor\C\threads\worker.h ..\..\include\Inventor\C\threads\wpool.h ..\..\include\Inventor\C\tidbits.h ..\..\include\Inventor\C\XML\attribute.h ..\..\include\Inventor\C\XML\document.h ..\..\include\Inventor\C\XML\element.h ..\..\include\Inventor\C\XML\types.h ..\..\include\Inventor\details\SoConeDetail.h ..\..\include\Inventor\details\SoCubeDetail.h ..\..\include\Inventor\details\SoCylinderDetail.h ..\..\include\Inventor\details\SoDetail.h ..\..\include\Inventor\details\SoFaceDetail.h ..\..\include\Inventor\details\SoLineDetail.h ..\..\include\Inventor\details\SoNodeKitDetail.h ..\..\include\Inventor\details\SoPointDetail.h ..\..\include\Inventor\details\SoTextDetail.h ..\..\include\Inventor\draggers\SoCenterballDragger.h ..\..\include\Inventor\draggers\SoDirectionalLightDragger.h ..\..\include\Inventor\draggers\SoDragger.h ..\..\include\Inventor\draggers\SoDragPointDragger.h ..\..\include\Inventor\draggers\SoHandleBoxDragger.h ..\..\include\Inventor\draggers\SoJackDragger.h ..\..\include\Inventor\draggers\SoPointLightDragger.h ..\..\include\Inventor\draggers\SoRotateCylindricalDragger.h ..\..\include\Inventor\draggers\SoRotateDiscDragger.h ..\..\include\Inventor\draggers\SoRotateSphericalDragger.h ..\..\include\Inventor\draggers\SoScale1Dragger.h ..\..\include\Inventor\draggers\SoScale2Dragger.h ..\..\include\Inventor\draggers\SoScale2UniformDragger.h ..\..\include\Inventor\draggers\SoScaleUniformDragger.h ..\..\include\Inventor\draggers\SoSpotLightDragger.h ..\..\include\Inventor\draggers\SoTabBoxDragger.h ..\..\include\Inventor\draggers\SoTabPlaneDragger.h ..\..\include\Inventor\draggers\SoTrackballDragger.h ..\..\include\Inventor\draggers\SoTransformBoxDragger.h ..\..\include\Inventor\draggers\SoTransformerDragger.h ..\..\include\Inventor\draggers\SoTranslate1Dragger.h ..\..\include\Inventor\draggers\SoTranslate2Dragger.h ..\..\include\Inventor\elements\SoAccumulatedElement.h ..\..\include\Inventor\elements\SoAmbientColorElement.h ..\..\include\Inventor\elements\SoAnnoText3CharOrientElement.h ..\..\include\Inventor\elements\SoAnnoText3FontSizeHintElement.h ..\..\include\Inventor\elements\SoAnnoText3RenderPrintElement.h ..\..\include\Inventor\elements\SoBBoxModelMatrixElement.h ..\..\include\Inventor\elements\SoBumpMapCoordinateElement.h ..\..\include\Inventor\elements\SoBumpMapElement.h ..\..\include\Inventor\elements\SoBumpMapMatrixElement.h ..\..\include\Inventor\elements\SoCacheElement.h ..\..\include\Inventor\elements\SoCacheHintElement.h ..\..\include\Inventor\elements\SoClipPlaneElement.h ..\..\include\Inventor\elements\SoComplexityElement.h ..\..\include\Inventor\elements\SoComplexityTypeElement.h ..\..\include\Inventor\elements\SoCoordinateElement.h ..\..\include\Inventor\elements\SoCreaseAngleElement.h ..\..\include\Inventor\elements\SoCullElement.h ..\..\include\Inventor\elements\SoDecimationPercentageElement.h ..\..\include\Inventor\elements\SoDecimationTypeElement.h ..\..\include\Inventor\elements\SoDepthBufferElement.h ..\..\include\Inventor\elements\SoDiffuseColorElement.h ..\..\include\Inventor\elements\SoDrawStyleElement.h ..\..\include\Inventor\elements\SoElement.h ..\..\include\Inventor\elements\SoEmissiveColorElement.h ..\..\include\Inventor\elements\SoEnvironmentElement.h ..\..\include\Inventor\elements\SoFloatElement.h ..\..\include\Inventor\elements\SoFocalDistanceElement.h ..\..\include\Inventor\elements\SoFontNameElement.h ..\..\include\Inventor\elements\SoFontSizeElement.h ..\..\include\Inventor\elements\SoGeoElement.h ..\..\include\Inventor\elements\SoGLCacheContextElement.h ..\..\include\Inventor\elements\SoGLClipPlaneElement.h ..\..\include\Inventor\elements\SoGLColorIndexElement.h ..\..\include\Inventor\elements\SoGLCoordinateElement.h ..\..\include\Inventor\elements\SoGLDepthBufferElement.h ..\..\include\Inventor\elements\SoGLDisplayList.h ..\..\include\Inventor\elements\SoGLDrawStyleElement.h ..\..\include\Inventor\elements\SoGLEnvironmentElement.h ..\..\include\Inventor\elements\SoGLLazyElement.h ..\..\include\Inventor\elements\SoGLLightIdElement.h ..\..\include\Inventor\elements\SoGLLinePatternElement.h ..\..\include\Inventor\elements\SoGLLineWidthElement.h ..\..\include\Inventor\elements\SoGLModelMatrixElement.h ..\..\include\Inventor\elements\SoGLMultiTextureCoordinateElement.h ..\..\include\Inventor\elements\SoGLMultiTextureEnabledElement.h ..\..\include\Inventor\elements\SoGLMultiTextureImageElement.h ..\..\include\Inventor\elements\SoGLMultiTextureMatrixElement.h ..\..\include\Inventor\elements\SoGLNormalElement.h ..\..\include\Inventor\elements\SoGLPointSizeElement.h ..\..\include\Inventor\elements\SoGLPolygonOffsetElement.h ..\..\include\Inventor\elements\SoGLProjectionMatrixElement.h ..\..\include\Inventor\elements\SoGLRenderPassElement.h ..\..\include\Inventor\elements\SoGLShapeHintsElement.h ..\..\include\Inventor\elements\SoGLTexture3EnabledElement.h ..\..\include\Inventor\elements\SoGLTextureCoordinateElement.h ..\..\include\Inventor\elements\SoGLTextureEnabledElement.h ..\..\include\Inventor\elements\SoGLTextureImageElement.h ..\..\include\Inventor\elements\SoGLTextureMatrixElement.h ..\..\include\Inventor\elements\SoGLUpdateAreaElement.h ..\..\include\Inventor\elements\SoGLVBOElement.h ..\..\include\Inventor\elements\SoGLVertexAttributeElement.h ..\..\include\Inventor\elements\SoGLViewingMatrixElement.h ..\..\include\Inventor\elements\SoGLViewportRegionElement.h ..\..\include\Inventor\elements\SoInt32Element.h ..\..\include\Inventor\elements\SoLazyElement.h ..\..\include\Inventor\elements\SoLightAttenuationElement.h ..\..\include\Inventor\elements\SoLightElement.h ..\..\include\Inventor\elements\SoLightModelElement.h ..\..\include\Inventor\elements\SoLinePatternElement.h ..\..\include\Inventor\elements\SoLineWidthElement.h ..\..\include\Inventor\elements\SoListenerDopplerElement.h ..\..\include\Inventor\elements\SoListenerGainElement.h ..\..\include\Inventor\elements\SoListenerOrientationElement.h ..\..\include\Inventor\elements\SoListenerPositionElement.h ..\..\include\Inventor\elements\SoLocalBBoxMatrixElement.h ..\..\include\Inventor\elements\SoMaterialBindingElement.h ..\..\include\Inventor\elements\SoModelMatrixElement.h ..\..\include\Inventor\elements\SoMultiTextureCoordinateElement.h ..\..\include\Inventor\elements\SoMultiTextureEnabledElement.h ..\..\include\Inventor\elements\SoMultiTextureImageElement.h ..\..\include\Inventor\elements\SoMultiTextureMatrixElement.h ..\..\include\Inventor\elements\SoNormalBindingElement.h ..\..\include\Inventor\elements\SoNormalElement.h ..\..\include\Inventor\elements\SoOverrideElement.h ..\..\include\Inventor\elements\SoPickRayElement.h ..\..\include\Inventor\elements\SoPickStyleElement.h ..\..\include\Inventor\elements\SoPointSizeElement.h ..\..\include\Inventor\elements\SoPolygonOffsetElement.h ..\..\include\Inventor\elements\SoProfileCoordinateElement.h ..\..\include\Inventor\elements\SoProfileElement.h ..\..\include\Inventor\elements\SoProjectionMatrixElement.h ..\..\include\Inventor\elements\SoReplacedElement.h ..\..\include\Inventor\elements\SoShapeHintsElement.h ..\..\include\Inventor\elements\SoShapeStyleElement.h ..\..\include\Inventor\elements\SoShininessElement.h ..\..\include\Inventor\elements\SoSoundElement.h ..\..\include\Inventor\elements\SoSpecularColorElement.h ..\..\include\Inventor\elements\SoSubElement.h ..\..\include\Inventor\elements\SoSwitchElement.h ..\..\include\Inventor\elements\SoTextOutlineEnabledElement.h ..\..\include\Inventor\elements\SoTexture3EnabledElement.h ..\..\include\Inventor\elements\SoTextureCombineElement.h ..\..\include\Inventor\elements\SoTextureCoordinateBindingElement.h ..\..\include\Inventor\elements\SoTextureCoordinateElement.h ..\..\include\Inventor\elements\SoTextureEnabledElement.h ..\..\include\Inventor\elements\SoTextureImageElement.h ..\..\include\Inventor\elements\SoTextureMatrixElement.h ..\..\include\Inventor\elements\SoTextureOverrideElement.h ..\..\include\Inventor\elements\SoTextureQualityElement.h ..\..\include\Inventor\elements\SoTextureUnitElement.h ..\..\include\Inventor\elements\SoTransparencyElement.h ..\..\include\Inventor\elements\SoUnitsElement.h ..\..\include\Inventor\elements\SoVertexAttributeBindingElement.h ..\..\include\Inventor\elements\SoVertexAttributeElement.h ..\..\include\Inventor\elements\SoViewingMatrixElement.h ..\..\include\Inventor\elements\SoViewportRegionElement.h ..\..\include\Inventor\elements\SoViewVolumeElement.h ..\..\include\Inventor\elements\SoWindowElement.h ..\..\include\Inventor\engines\SoBoolOperation.h ..\..\include\Inventor\engines\SoCalculator.h ..\..\include\Inventor\engines\SoComposeMatrix.h ..\..\include\Inventor\engines\SoComposeRotationFromTo.h ..\..\include\Inventor\engines\SoComposeRotation.h ..\..\include\Inventor\engines\SoComposeVec2f.h ..\..\include\Inventor\engines\SoComposeVec3f.h ..\..\include\Inventor\engines\SoComposeVec4f.h ..\..\include\Inventor\engines\SoComputeBoundingBox.h ..\..\include\Inventor\engines\SoConcatenate.h ..\..\include\Inventor\engines\SoCounter.h ..\..\include\Inventor\engines\SoDecomposeMatrix.h ..\..\include\Inventor\engines\SoDecomposeRotation.h ..\..\include\Inventor\engines\SoDecomposeVec2f.h ..\..\include\Inventor\engines\SoDecomposeVec3f.h ..\..\include\Inventor\engines\SoDecomposeVec4f.h ..\..\include\Inventor\engines\SoElapsedTime.h ..\..\include\Inventor\engines\SoEngine.h ..\..\include\Inventor\engines\SoEngineOutput.h ..\..\include\Inventor\engines\SoFieldConverter.h ..\..\include\Inventor\engines\SoGate.h ..\..\include\Inventor\engines\SoHeightMapToNormalMap.h ..\..\include\Inventor\engines\SoInterpolateFloat.h ..\..\include\Inventor\engines\SoInterpolate.h ..\..\include\Inventor\engines\SoInterpolateRotation.h ..\..\include\Inventor\engines\SoInterpolateVec2f.h ..\..\include\Inventor\engines\SoInterpolateVec3f.h ..\..\include\Inventor\engines\SoInterpolateVec4f.h ..\..\include\Inventor\engines\SoNodeEngine.h ..\..\include\Inventor\engines\SoOneShot.h ..\..\include\Inventor\engines\SoOnOff.h ..\..\include\Inventor\engines\SoOutputData.h ..\..\include\Inventor\engines\SoSelectOne.h ..\..\include\Inventor\engines\SoTexture2Convert.h ..\..\include\Inventor\engines\SoTimeCounter.h ..\..\include\Inventor\engines\SoTransformVec3f.h ..\..\include\Inventor\engines\SoTriggerAny.h ..\..\include\Inventor\errors\SoDebugError.h ..\..\include\Inventor\errors\SoError.h ..\..\include\Inventor\errors\SoMemoryError.h ..\..\include\Inventor\errors\SoReadError.h ..\..\include\Inventor\events\SoButtonEvent.h ..\..\include\Inventor\events\SoEvent.h ..\..\include\Inventor\events\SoKeyboardEvent.h ..\..\include\Inventor\events\SoLocation2Event.h ..\..\include\Inventor\events\SoMotion3Event.h ..\..\include\Inventor\events\SoMouseButtonEvent.h ..\..\include\Inventor\events\SoSpaceballButtonEvent.h ..\..\include\Inventor\fields\SoFieldContainer.h ..\..\include\Inventor\fields\SoFieldData.h ..\..\include\Inventor\fields\SoField.h ..\..\include\Inventor\fields\SoMFBitMask.h ..\..\include\Inventor\fields\SoMFBool.h ..\..\include\Inventor\fields\SoMFColor.h ..\..\include\Inventor\fields\SoMFColorRGBA.h ..\..\include\Inventor\fields\SoMFDouble.h ..\..\include\Inventor\fields\SoMFEngine.h ..\..\include\Inventor\fields\SoMFEnum.h ..\..\include\Inventor\fields\SoMFFloat.h ..\..\include\Inventor\fields\SoMField.h ..\..\include\Inventor\fields\SoMFInt32.h ..\..\include\Inventor\fields\SoMFMatrix.h ..\..\include\Inventor\fields\SoMFName.h ..\..\include\Inventor\fields\SoMFNode.h ..\..\include\Inventor\fields\SoMFPath.h ..\..\include\Inventor\fields\SoMFPlane.h ..\..\include\Inventor\fields\SoMFRotation.h ..\..\include\Inventor\fields\SoMFShort.h ..\..\include\Inventor\fields\SoMFString.h ..\..\include\Inventor\fields\SoMFTime.h ..\..\include\Inventor\fields\SoMFUInt32.h ..\..\include\Inventor\fields\SoMFUShort.h ..\..\include\Inventor\fields\SoMFVec2b.h ..\..\include\Inventor\fields\SoMFVec2d.h ..\..\include\Inventor\fields\SoMFVec2f.h ..\..\include\Inventor\fields\SoMFVec2i32.h ..\..\include\Inventor\fields\SoMFVec2s.h ..\..\include\Inventor\fields\SoMFVec3b.h ..\..\include\Inventor\fields\SoMFVec3d.h ..\..\include\Inventor\fields\SoMFVec3f.h ..\..\include\Inventor\fields\SoMFVec3i32.h ..\..\include\Inventor\fields\SoMFVec3s.h ..\..\include\Inventor\fields\SoMFVec4b.h ..\..\include\Inventor\fields\SoMFVec4d.h ..\..\include\Inventor\fields\SoMFVec4f.h ..\..\include\Inventor\fields\SoMFVec4i32.h ..\..\include\Inventor\fields\SoMFVec4s.h ..\..\include\Inventor\fields\SoMFVec4ub.h ..\..\include\Inventor\fields\SoMFVec4ui32.h ..\..\include\Inventor\fields\SoMFVec4us.h ..\..\include\Inventor\fields\SoSFBitMask.h ..\..\include\Inventor\fields\SoSFBool.h ..\..\include\Inventor\fields\SoSFBox2d.h ..\..\include\Inventor\fields\SoSFBox2f.h ..\..\include\Inventor\fields\SoSFBox2i32.h ..\..\include\Inventor\fields\SoSFBox2s.h ..\..\include\Inventor\fields\SoSFBox3d.h ..\..\include\Inventor\fields\SoSFBox3f.h ..\..\include\Inventor\fields\SoSFBox3i32.h ..\..\include\Inventor\fields\SoSFBox3s.h ..\..\include\Inventor\fields\SoSFColor.h ..\..\include\Inventor\fields\SoSFColorRGBA.h ..\..\include\Inventor\fields\SoSFDouble.h ..\..\include\Inventor\fields\SoSFEngine.h ..\..\include\Inventor\fields\SoSFEnum.h ..\..\include\Inventor\fields\SoSFFloat.h ..\..\include\Inventor\fields\SoSField.h ..\..\include\Inventor\fields\SoSFImage3.h ..\..\include\Inventor\fields\SoSFImage.h ..\..\include\Inventor\fields\SoSFInt32.h ..\..\include\Inventor\fields\SoSFMatrix.h ..\..\include\Inventor\fields\SoSFName.h ..\..\include\Inventor\fields\SoSFNode.h ..\..\include\Inventor\fields\SoSFPath.h ..\..\include\Inventor\fields\SoSFPlane.h ..\..\include\Inventor\fields\SoSFRotation.h ..\..\include\Inventor\fields\SoSFShort.h ..\..\include\Inventor\fields\SoSFString.h ..\..\include\Inventor\fields\SoSFTime.h ..\..\include\Inventor\fields\SoSFTrigger.h ..\..\include\Inventor\fields\SoSFUInt32.h ..\..\include\Inventor\fields\SoSFUShort.h ..\..\include\Inventor\fields\SoSFVec2b.h ..\..\include\Inventor\fields\SoSFVec2d.h ..\..\include\Inventor\fields\SoSFVec2f.h ..\..\include\Inventor\fields\SoSFVec2i32.h ..\..\include\Inventor\fields\SoSFVec2s.h ..\..\include\Inventor\fields\SoSFVec3b.h ..\..\include\Inventor\fields\SoSFVec3d.h ..\..\include\Inventor\fields\SoSFVec3f.h ..\..\include\Inventor\fields\SoSFVec3i32.h ..\..\include\Inventor\fields\SoSFVec3s.h ..\..\include\Inventor\fields\SoSFVec4b.h ..\..\include\Inventor\fields\SoSFVec4d.h ..\..\include\Inventor\fields\SoSFVec4f.h ..\..\include\Inventor\fields\SoSFVec4i32.h ..\..\include\Inventor\fields\SoSFVec4s.h ..\..\include\Inventor\fields\SoSFVec4ub.h ..\..\include\Inventor\fields\SoSFVec4ui32.h ..\..\include\Inventor\fields\SoSFVec4us.h ..\..\include\Inventor\fields\SoSubField.h ..\..\include\Inventor\lists\SbIntList.h ..\..\include\Inventor\lists\SbList.h ..\..\include\Inventor\lists\SbStringList.h ..\..\include\Inventor\lists\SbVec3fList.h ..\..\include\Inventor\lists\SoActionMethodList.h ..\..\include\Inventor\lists\SoBaseList.h ..\..\include\Inventor\lists\SoDetailList.h ..\..\include\Inventor\lists\SoEnabledElementsList.h ..\..\include\Inventor\lists\SoEngineList.h ..\..\include\Inventor\lists\SoEngineOutputList.h ..\..\include\Inventor\lists\SoFieldList.h ..\..\include\Inventor\lists\SoNodeList.h ..\..\include\Inventor\lists\SoPathList.h ..\..\include\Inventor\lists\SoPickedPointList.h ..\..\include\Inventor\lists\SoTypeList.h ..\..\include\Inventor\manips\SoCenterballManip.h ..\..\include\Inventor\manips\SoClipPlaneManip.h ..\..\include\Inventor\manips\SoDirectionalLightManip.h ..\..\include\Inventor\manips\SoHandleBoxManip.h ..\..\include\Inventor\manips\SoJackManip.h ..\..\include\Inventor\manips\SoPointLightManip.h ..\..\include\Inventor\manips\SoSpotLightManip.h ..\..\include\Inventor\manips\SoTabBoxManip.h ..\..\include\Inventor\manips\SoTrackballManip.h ..\..\include\Inventor\manips\SoTransformBoxManip.h ..\..\include\Inventor\manips\SoTransformerManip.h ..\..\include\Inventor\manips\SoTransformManip.h ..\..\include\Inventor\misc\CoinResources.h ..\..\include\Inventor\misc\SoAudioDevice.h ..\..\include\Inventor\misc\SoBase.h ..\..\include\Inventor\misc\SoChildList.h ..\..\include\Inventor\misc\SoContextHandler.h ..\..\include\Inventor\misc\SoGLBigImage.h ..\..\include\Inventor\misc\SoGLCubeMapImage.h ..\..\include\Inventor\misc\SoGLDriverDatabase.h ..\..\include\Inventor\misc\SoGLImage.h ..\..\include\Inventor\misc\SoGlyph.h ..\..\include\Inventor\misc\SoJavaScriptEngine.h ..\..\include\Inventor\misc\SoLightPath.h ..\..\include\Inventor\misc\SoNormalGenerator.h ..\..\include\Inventor\misc\SoNotification.h ..\..\include\Inventor\misc\SoNotRec.h ..\..\include\Inventor\misc\SoProto.h ..\..\include\Inventor\misc\SoProtoInstance.h ..\..\include\Inventor\misc\SoState.h ..\..\include\Inventor\misc\SoTempPath.h ..\..\include\Inventor\navigation\SoScXMLDollyTarget.h ..\..\include\Inventor\navigation\SoScXMLFlightControlTarget.h ..\..\include\Inventor\navigation\SoScXMLMiscTarget.h ..\..\include\Inventor\navigation\SoScXMLMotionTarget.h ..\..\include\Inventor\navigation\SoScXMLNavigation.h ..\..\include\Inventor\navigation\SoScXMLNavigationTarget.h ..\..\include\Inventor\navigation\SoScXMLPanTarget.h ..\..\include\Inventor\navigation\SoScXMLRotateTarget.h ..\..\include\Inventor\navigation\SoScXMLSeekTarget.h ..\..\include\Inventor\navigation\SoScXMLSpinTarget.h ..\..\include\Inventor\navigation\SoScXMLZoomTarget.h ..\..\include\Inventor\nodekits\SoAppearanceKit.h ..\..\include\Inventor\nodekits\SoBaseKit.h ..\..\include\Inventor\nodekits\SoCameraKit.h ..\..\include\Inventor\nodekits\SoInteractionKit.h ..\..\include\Inventor\nodekits\SoLightKit.h ..\..\include\Inventor\nodekits\SoNodekitCatalog.h ..\..\include\Inventor\nodekits\SoNodeKit.h ..\..\include\Inventor\nodekits\SoNodeKitListPart.h ..\..\include\Inventor\nodekits\SoSceneKit.h ..\..\include\Inventor\nodekits\SoSeparatorKit.h ..\..\include\Inventor\nodekits\SoShapeKit.h ..\..\include\Inventor\nodekits\SoWrapperKit.h ..\..\include\Inventor\nodes\SoAnnotation.h ..\..\include\Inventor\nodes\SoAntiSquish.h ..\..\include\Inventor\nodes\SoArray.h ..\..\include\Inventor\nodes\SoAsciiText.h ..\..\include\Inventor\nodes\SoBaseColor.h ..\..\include\Inventor\nodes\SoBlinker.h ..\..\include\Inventor\nodes\SoBumpMapCoordinate.h ..\..\include\Inventor\nodes\SoBumpMap.h ..\..\include\Inventor\nodes\SoBumpMapTransform.h ..\..\include\Inventor\nodes\SoCacheHint.h ..\..\include\Inventor\nodes\SoCallback.h ..\..\include\Inventor\nodes\SoCamera.h ..\..\include\Inventor\nodes\SoClipPlane.h ..\..\include\Inventor\nodes\SoColorIndex.h ..\..\include\Inventor\nodes\SoComplexity.h ..\..\include\Inventor\nodes\SoCone.h ..\..\include\Inventor\nodes\SoCoordinate3.h ..\..\include\Inventor\nodes\SoCoordinate4.h ..\..\include\Inventor\nodes\SoCube.h ..\..\include\Inventor\nodes\SoCylinder.h ..\..\include\Inventor\nodes\SoDepthBuffer.h ..\..\include\Inventor\nodes\SoDirectionalLight.h ..\..\include\Inventor\nodes\SoDrawStyle.h ..\..\include\Inventor\nodes\SoEnvironment.h ..\..\include\Inventor\nodes\SoEventCallback.h ..\..\include\Inventor\nodes\SoExtSelection.h ..\..\include\Inventor\nodes\SoFaceSet.h ..\..\include\Inventor\nodes\SoFile.h ..\..\include\Inventor\nodes\SoFont.h ..\..\include\Inventor\nodes\SoFontStyle.h ..\..\include\Inventor\nodes\SoFragmentShader.h ..\..\include\Inventor\nodes\SoFrustumCamera.h ..\..\include\Inventor\nodes\SoGeoCoordinate.h ..\..\include\Inventor\nodes\SoGeoLocation.h ..\..\include\Inventor\nodes\SoGeometryShader.h ..\..\include\Inventor\nodes\SoGeoOrigin.h ..\..\include\Inventor\nodes\SoGeoSeparator.h ..\..\include\Inventor\nodes\SoGroup.h ..\..\include\Inventor\nodes\SoImage.h ..\..\include\Inventor\nodes\SoIndexedFaceSet.h ..\..\include\Inventor\nodes\SoIndexedLineSet.h ..\..\include\Inventor\nodes\SoIndexedMarkerSet.h ..\..\include\Inventor\nodes\SoIndexedNurbsCurve.h ..\..\include\Inventor\nodes\SoIndexedNurbsSurface.h ..\..\include\Inventor\nodes\SoIndexedPointSet.h ..\..\include\Inventor\nodes\SoIndexedShape.h ..\..\include\Inventor\nodes\SoIndexedTriangleStripSet.h ..\..\include\Inventor\nodes\SoInfo.h ..\..\include\Inventor\nodes\SoLabel.h ..\..\include\Inventor\nodes\SoLevelOfDetail.h ..\..\include\Inventor\nodes\SoLight.h ..\..\include\Inventor\nodes\SoLightModel.h ..\..\include\Inventor\nodes\SoLinearProfile.h ..\..\include\Inventor\nodes\SoLineSet.h ..\..\include\Inventor\nodes\SoListener.h ..\..\include\Inventor\nodes\SoLocateHighlight.h ..\..\include\Inventor\nodes\SoLOD.h ..\..\include\Inventor\nodes\SoMarkerSet.h ..\..\include\Inventor\nodes\SoMaterialBinding.h ..\..\include\Inventor\nodes\SoMaterial.h ..\..\include\Inventor\nodes\SoMatrixTransform.h ..\..\include\Inventor\nodes\SoMultipleCopy.h ..\..\include\Inventor\nodes\SoNode.h ..\..\include\Inventor\nodes\SoNonIndexedShape.h ..\..\include\Inventor\nodes\SoNormalBinding.h ..\..\include\Inventor\nodes\SoNormal.h ..\..\include\Inventor\nodes\SoNurbsCurve.h ..\..\include\Inventor\nodes\SoNurbsProfile.h ..\..\include\Inventor\nodes\SoNurbsSurface.h ..\..\include\Inventor\nodes\SoOrthographicCamera.h ..\..\include\Inventor\nodes\SoPackedColor.h ..\..\include\Inventor\nodes\SoPathSwitch.h ..\..\include\Inventor\nodes\SoPendulum.h ..\..\include\Inventor\nodes\SoPerspectiveCamera.h ..\..\include\Inventor\nodes\SoPickStyle.h ..\..\include\Inventor\nodes\SoPointLight.h ..\..\include\Inventor\nodes\SoPointSet.h ..\..\include\Inventor\nodes\SoPolygonOffset.h ..\..\include\Inventor\nodes\SoProfileCoordinate2.h ..\..\include\Inventor\nodes\SoProfileCoordinate3.h ..\..\include\Inventor\nodes\SoProfile.h ..\..\include\Inventor\nodes\SoQuadMesh.h ..\..\include\Inventor\nodes\SoResetTransform.h ..\..\include\Inventor\nodes\SoReversePerspectiveCamera.h ..\..\include\Inventor\nodes\SoRotation.h ..\..\include\Inventor\nodes\SoRotationXYZ.h ..\..\include\Inventor\nodes\SoRotor.h ..\..\include\Inventor\nodes\SoScale.h ..\..\include\Inventor\nodes\SoSceneTexture2.h ..\..\include\Inventor\nodes\SoSceneTextureCubeMap.h ..\..\include\Inventor\nodes\SoSelection.h ..\..\include\Inventor\nodes\SoSeparator.h ..\..\include\Inventor\nodes\SoShaderObject.h ..\..\include\Inventor\nodes\SoShaderParameter.h ..\..\include\Inventor\nodes\SoShaderProgram.h ..\..\include\Inventor\nodes\SoShape.h ..\..\include\Inventor\nodes\SoShapeHints.h ..\..\include\Inventor\nodes\SoShuttle.h ..\..\include\Inventor\nodes\SoSphere.h ..\..\include\Inventor\nodes\SoSpotLight.h ..\..\include\Inventor\nodes\SoSubNode.h ..\..\include\Inventor\nodes\SoSurroundScale.h ..\..\include\Inventor\nodes\SoSwitch.h ..\..\include\Inventor\nodes\SoText2.h ..\..\include\Inventor\nodes\SoText3.h ..\..\include\Inventor\nodes\SoTexture2.h ..\..\include\Inventor\nodes\SoTexture2Transform.h ..\..\include\Inventor\nodes\SoTexture3.h ..\..\include\Inventor\nodes\SoTexture3Transform.h ..\..\include\Inventor\nodes\SoTextureCombine.h ..\..\include\Inventor\nodes\SoTextureCoordinate2.h ..\..\include\Inventor\nodes\SoTextureCoordinate3.h ..\..\include\Inventor\nodes\SoTextureCoordinateBinding.h ..\..\include\Inventor\nodes\SoTextureCoordinateCube.h ..\..\include\Inventor\nodes\SoTextureCoordinateCylinder.h ..\..\include\Inventor\nodes\SoTextureCoordinateDefault.h ..\..\include\Inventor\nodes\SoTextureCoordinateEnvironment.h ..\..\include\Inventor\nodes\SoTextureCoordinateFunction.h ..\..\include\Inventor\nodes\SoTextureCoordinateNormalMap.h ..\..\include\Inventor\nodes\SoTextureCoordinateObject.h ..\..\include\Inventor\nodes\SoTextureCoordinatePlane.h ..\..\include\Inventor\nodes\SoTextureCoordinateReflectionMap.h ..\..\include\Inventor\nodes\SoTextureCoordinateSphere.h ..\..\include\Inventor\nodes\SoTextureCubeMap.h ..\..\include\Inventor\nodes\SoTexture.h ..\..\include\Inventor\nodes\SoTextureMatrixTransform.h ..\..\include\Inventor\nodes\SoTextureScalePolicy.h ..\..\include\Inventor\nodes\SoTextureUnit.h ..\..\include\Inventor\nodes\SoTransformation.h ..\..\include\Inventor\nodes\SoTransform.h ..\..\include\Inventor\nodes\SoTransformSeparator.h ..\..\include\Inventor\nodes\SoTranslation.h ..\..\include\Inventor\nodes\SoTransparencyType.h ..\..\include\Inventor\nodes\SoTriangleStripSet.h ..\..\include\Inventor\nodes\SoUnits.h ..\..\include\Inventor\nodes\SoVertexAttributeBinding.h ..\..\include\Inventor\nodes\SoVertexAttribute.h ..\..\include\Inventor\nodes\SoVertexProperty.h ..\..\include\Inventor\nodes\SoVertexShader.h ..\..\include\Inventor\nodes\SoVertexShape.h ..\..\include\Inventor\nodes\SoWWWAnchor.h ..\..\include\Inventor\nodes\SoWWWInline.h ..\..\include\Inventor\projectors\SbCylinderPlaneProjector.h ..\..\include\Inventor\projectors\SbCylinderProjector.h ..\..\include\Inventor\projectors\SbCylinderSectionProjector.h ..\..\include\Inventor\projectors\SbCylinderSheetProjector.h ..\..\include\Inventor\projectors\SbLineProjector.h ..\..\include\Inventor\projectors\SbPlaneProjector.h ..\..\include\Inventor\projectors\SbProjector.h ..\..\include\Inventor\projectors\SbSpherePlaneProjector.h ..\..\include\Inventor\projectors\SbSphereProjector.h ..\..\include\Inventor\projectors\SbSphereSectionProjector.h ..\..\include\Inventor\projectors\SbSphereSheetProjector.h ..\..\include\Inventor\SbBox2d.h ..\..\include\Inventor\SbBox2f.h ..\..\include\Inventor\SbBox2i32.h ..\..\include\Inventor\SbBox2s.h ..\..\include\Inventor\SbBox3d.h ..\..\include\Inventor\SbBox3f.h ..\..\include\Inventor\SbBox3i32.h ..\..\include\Inventor\SbBox3s.h ..\..\include\Inventor\SbBSPTree.h ..\..\include\Inventor\SbClip.h ..\..\include\Inventor\SbColor4f.h ..\..\include\Inventor\SbColor.h ..\..\include\Inventor\SbCylinder.h ..\..\include\Inventor\SbDict.h ..\..\include\Inventor\SbDPLine.h ..\..\include\Inventor\SbDPMatrix.h ..\..\include\Inventor\SbDPPlane.h ..\..\include\Inventor\SbDPRotation.h ..\..\include\Inventor\SbDPViewVolume.h ..\..\include\Inventor\SbHeap.h ..\..\include\Inventor\SbImage.h ..\..\include\Inventor\SbLine.h ..\..\include\Inventor\SbMatrix.h ..\..\include\Inventor\SbName.h ..\..\include\Inventor\SbOctTree.h ..\..\include\Inventor\SbPlane.h ..\..\include\Inventor\SbRotation.h ..\..\include\Inventor\SbSphere.h ..\..\include\Inventor\SbString.h ..\..\include\Inventor\SbTesselator.h ..\..\include\Inventor\SbTime.h ..\..\include\Inventor\SbTypeInfo.h ..\..\include\Inventor\SbVec2b.h ..\..\include\Inventor\SbVec2d.h ..\..\include\Inventor\SbVec2f.h ..\..\include\Inventor\SbVec2i32.h ..\..\include\Inventor\SbVec2s.h ..\..\include\Inventor\SbVec2ub.h ..\..\include\Inventor\SbVec2ui32.h ..\..\include\Inventor\SbVec2us.h ..\..\include\Inventor\SbVec3b.h ..\..\include\Inventor\SbVec3d.h ..\..\include\Inventor\SbVec3f.h ..\..\include\Inventor\SbVec3i32.h ..\..\include\Inventor\SbVec3s.h ..\..\include\Inventor\SbVec3ub.h ..\..\include\Inventor\SbVec3ui32.h ..\..\include\Inventor\SbVec3us.h ..\..\include\Inventor\SbVec4b.h ..\..\include\Inventor\SbVec4d.h ..\..\include\Inventor\SbVec4f.h ..\..\include\Inventor\SbVec4i32.h ..\..\include\Inventor\SbVec4s.h ..\..\include\Inventor\SbVec4ub.h ..\..\include\Inventor\SbVec4ui32.h ..\..\include\Inventor\SbViewportRegion.h ..\..\include\Inventor\SbViewVolume.h ..\..\include\Inventor\SbXfBox3d.h ..\..\include\Inventor\SbXfBox3f.h ..\..\include\Inventor\scxml\ScXMLAbstractStateElt.h ..\..\include\Inventor\scxml\ScXMLAnchorElt.h ..\..\include\Inventor\scxml\ScXMLAssignElt.h ..\..\include\Inventor\scxml\ScXMLCoinEvaluator.h ..\..\include\Inventor\scxml\ScXMLContentElt.h ..\..\include\Inventor\scxml\ScXMLDataElt.h ..\..\include\Inventor\scxml\ScXMLDataModelElt.h ..\..\include\Inventor\scxml\ScXMLDocument.h ..\..\include\Inventor\scxml\ScXMLECMAScriptEvaluator.h ..\..\include\Inventor\scxml\ScXMLElseElt.h ..\..\include\Inventor\scxml\ScXMLElseIfElt.h ..\..\include\Inventor\scxml\ScXMLElt.h ..\..\include\Inventor\scxml\ScXMLEvaluator.h ..\..\include\Inventor\scxml\ScXMLEventElt.h ..\..\include\Inventor\scxml\ScXMLEvent.h ..\..\include\Inventor\scxml\ScXMLEventTarget.h ..\..\include\Inventor\scxml\ScXMLExecutableElt.h ..\..\include\Inventor\scxml\ScXMLFinalElt.h ..\..\include\Inventor\scxml\ScXMLFinalizeElt.h ..\..\include\Inventor\scxml\ScXML.h ..\..\include\Inventor\scxml\ScXMLHistoryElt.h ..\..\include\Inventor\scxml\ScXMLIfElt.h ..\..\include\Inventor\scxml\ScXMLInitialElt.h ..\..\include\Inventor\scxml\ScXMLInvokeElt.h ..\..\include\Inventor\scxml\ScXMLLogElt.h ..\..\include\Inventor\scxml\ScXMLMinimumEvaluator.h ..\..\include\Inventor\scxml\ScXMLObject.h ..\..\include\Inventor\scxml\ScXMLOnEntryElt.h ..\..\include\Inventor\scxml\ScXMLOnExitElt.h ..\..\include\Inventor\scxml\ScXMLParallelElt.h ..\..\include\Inventor\scxml\ScXMLParamElt.h ..\..\include\Inventor\scxml\ScXMLScriptElt.h ..\..\include\Inventor\scxml\ScXMLScxmlElt.h ..\..\include\Inventor\scxml\ScXMLSendElt.h ..\..\include\Inventor\scxml\ScXMLStateElt.h ..\..\include\Inventor\scxml\ScXMLStateMachine.h ..\..\include\Inventor\scxml\ScXMLTransitionElt.h ..\..\include\Inventor\scxml\ScXMLValidateElt.h ..\..\include\Inventor\scxml\ScXMLXPathEvaluator.h ..\..\include\Inventor\scxml\SoScXMLEvent.h ..\..\include\Inventor\scxml\SoScXMLStateMachine.h ..\..\include\Inventor\sensors\SoAlarmSensor.h ..\..\include\Inventor\sensors\SoDataSensor.h ..\..\include\Inventor\sensors\SoDelayQueueSensor.h ..\..\include\Inventor\sensors\SoFieldSensor.h ..\..\include\Inventor\sensors\SoIdleSensor.h ..\..\include\Inventor\sensors\SoNodeSensor.h ..\..\include\Inventor\sensors\SoOneShotSensor.h ..\..\include\Inventor\sensors\SoPathSensor.h ..\..\include\Inventor\sensors\SoSensor.h ..\..\include\Inventor\sensors\SoSensorManager.h ..\..\include\Inventor\sensors\SoTimerQueueSensor.h ..\..\include\Inventor\sensors\SoTimerSensor.h ..\..\include\Inventor\SoDB.h ..\..\include\Inventor\SoEventManager.h ..\..\include\Inventor\SoFullPath.h ..\..\include\Inventor\SoInput.h ..\..\include\Inventor\SoInteraction.h ..\..\include\Inventor\SoNodeKitPath.h ..\..\include\Inventor\SoOffscreenRenderer.h ..\..\include\Inventor\SoOutput.h ..\..\include\Inventor\SoPath.h ..\..\include\Inventor\SoPickedPoint.h ..\..\include\Inventor\SoPrimitiveVertex.h ..\..\include\Inventor\SoRenderManager.h ..\..\include\Inventor\SoSceneManager.h ..\..\include\Inventor\SoType.h ..\..\include\Inventor\system\gl.h ..\..\include\Inventor\VRMLnodes\SoVRMLAnchor.h ..\..\include\Inventor\VRMLnodes\SoVRMLAppearance.h ..\..\include\Inventor\VRMLnodes\SoVRMLAudioClip.h ..\..\include\Inventor\VRMLnodes\SoVRMLBackground.h ..\..\include\Inventor\VRMLnodes\SoVRMLBillboard.h ..\..\include\Inventor\VRMLnodes\SoVRMLBox.h ..\..\include\Inventor\VRMLnodes\SoVRMLCollision.h ..\..\include\Inventor\VRMLnodes\SoVRMLColor.h ..\..\include\Inventor\VRMLnodes\SoVRMLColorInterpolator.h ..\..\include\Inventor\VRMLnodes\SoVRMLCone.h ..\..\include\Inventor\VRMLnodes\SoVRMLCoordinate.h ..\..\include\Inventor\VRMLnodes\SoVRMLCoordinateInterpolator.h ..\..\include\Inventor\VRMLnodes\SoVRMLCylinder.h ..\..\include\Inventor\VRMLnodes\SoVRMLCylinderSensor.h ..\..\include\Inventor\VRMLnodes\SoVRMLDirectionalLight.h ..\..\include\Inventor\VRMLnodes\SoVRMLDragSensor.h ..\..\include\Inventor\VRMLnodes\SoVRMLElevationGrid.h ..\..\include\Inventor\VRMLnodes\SoVRMLExtrusion.h ..\..\include\Inventor\VRMLnodes\SoVRMLFog.h ..\..\include\Inventor\VRMLnodes\SoVRMLFontStyle.h ..\..\include\Inventor\VRMLnodes\SoVRMLGeometry.h ..\..\include\Inventor\VRMLnodes\SoVRMLGroup.h ..\..\include\Inventor\VRMLnodes\SoVRMLImageTexture.h ..\..\include\Inventor\VRMLnodes\SoVRMLIndexedFaceSet.h ..\..\include\Inventor\VRMLnodes\SoVRMLIndexedLine.h ..\..\include\Inventor\VRMLnodes\SoVRMLIndexedLineSet.h ..\..\include\Inventor\VRMLnodes\SoVRMLIndexedShape.h ..\..\include\Inventor\VRMLnodes\SoVRMLInline.h ..\..\include\Inventor\VRMLnodes\SoVRMLInterpolator.h ..\..\include\Inventor\VRMLnodes\SoVRMLLight.h ..\..\include\Inventor\VRMLnodes\SoVRMLLOD.h ..\..\include\Inventor\VRMLnodes\SoVRMLMaterial.h ..\..\include\Inventor\VRMLnodes\SoVRMLMovieTexture.h ..\..\include\Inventor\VRMLnodes\SoVRMLNavigationInfo.h ..\..\include\Inventor\VRMLnodes\SoVRMLNormal.h ..\..\include\Inventor\VRMLnodes\SoVRMLNormalInterpolator.h ..\..\include\Inventor\VRMLnodes\SoVRMLOrientationInterpolator.h ..\..\include\Inventor\VRMLnodes\SoVRMLParent.h ..\..\include\Inventor\VRMLnodes\SoVRMLPixelTexture.h ..\..\include\Inventor\VRMLnodes\SoVRMLPlaneSensor.h ..\..\include\Inventor\VRMLnodes\SoVRMLPointLight.h ..\..\include\Inventor\VRMLnodes\SoVRMLPointSet.h ..\..\include\Inventor\VRMLnodes\SoVRMLPositionInterpolator.h ..\..\include\Inventor\VRMLnodes\SoVRMLProximitySensor.h ..\..\include\Inventor\VRMLnodes\SoVRMLScalarInterpolator.h ..\..\include\Inventor\VRMLnodes\SoVRMLScript.h ..\..\include\Inventor\VRMLnodes\SoVRMLSensor.h ..\..\include\Inventor\VRMLnodes\SoVRMLShape.h ..\..\include\Inventor\VRMLnodes\SoVRMLSound.h ..\..\include\Inventor\VRMLnodes\SoVRMLSphere.h ..\..\include\Inventor\VRMLnodes\SoVRMLSphereSensor.h ..\..\include\Inventor\VRMLnodes\SoVRMLSpotLight.h ..\..\include\Inventor\VRMLnodes\SoVRMLSwitch.h ..\..\include\Inventor\VRMLnodes\SoVRMLText.h ..\..\include\Inventor\VRMLnodes\SoVRMLTextureCoordinate.h ..\..\include\Inventor\VRMLnodes\SoVRMLTexture.h ..\..\include\Inventor\VRMLnodes\SoVRMLTextureTransform.h ..\..\include\Inventor\VRMLnodes\SoVRMLTimeSensor.h ..\..\include\Inventor\VRMLnodes\SoVRMLTouchSensor.h ..\..\include\Inventor\VRMLnodes\SoVRMLTransform.h ..\..\include\Inventor\VRMLnodes\SoVRMLVertexLine.h ..\..\include\Inventor\VRMLnodes\SoVRMLVertexPoint.h ..\..\include\Inventor\VRMLnodes\SoVRMLVertexShape.h ..\..\include\Inventor\VRMLnodes\SoVRMLViewpoint.h ..\..\include\Inventor\VRMLnodes\SoVRMLVisibilitySensor.h ..\..\include\Inventor\VRMLnodes\SoVRMLWorldInfo.h ..\..\include\SoDebug.h ..\..\src\actions\SoAction.cpp ..\..\src\actions\SoAudioRenderAction.cpp ..\..\src\actions\SoBoxHighlightRenderAction.cpp ..\..\src\actions\SoCallbackAction.cpp ..\..\src\actions\SoGetBoundingBoxAction.cpp ..\..\src\actions\SoGetMatrixAction.cpp ..\..\src\actions\SoGetPrimitiveCountAction.cpp ..\..\src\actions\SoGlobalSimplifyAction.cpp ..\..\src\actions\SoGLRenderAction.cpp ..\..\src\actions\SoHandleEventAction.cpp ..\..\src\actions\SoLineHighlightRenderAction.cpp ..\..\src\actions\SoPickAction.cpp ..\..\src\actions\SoRayPickAction.cpp ..\..\src\actions\SoReorganizeAction.cpp ..\..\src\actions\SoSearchAction.cpp ..\..\src\actions\SoShapeSimplifyAction.cpp ..\..\src\actions\SoSimplifyAction.cpp ..\..\src\actions\SoToVRML2Action.cpp ..\..\src\actions\SoToVRMLAction.cpp ..\..\src\actions\SoWriteAction.cpp ..\..\src\base\dict.cpp ..\..\src\base\hash.cpp ..\..\src\base\heap.cpp ..\..\src\base\memalloc.cpp ..\..\src\base\namemap.cpp ..\..\src\base\rbptree.cpp ..\..\src\base\SbBox2d.cpp ..\..\src\base\SbBox2f.cpp ..\..\src\base\SbBox2i32.cpp ..\..\src\base\SbBox2s.cpp ..\..\src\base\SbBox3d.cpp ..\..\src\base\SbBox3f.cpp ..\..\src\base\SbBox3i32.cpp ..\..\src\base\SbBox3s.cpp ..\..\src\base\SbBSPTree.cpp ..\..\src\base\SbClip.cpp ..\..\src\base\SbColor4f.cpp ..\..\src\base\SbColor.cpp ..\..\src\base\SbCylinder.cpp ..\..\src\base\SbDict.cpp ..\..\src\base\SbDPLine.cpp ..\..\src\base\SbDPMatrix.cpp ..\..\src\base\SbDPPlane.cpp ..\..\src\base\SbDPRotation.cpp ..\..\src\base\SbDPViewVolume.cpp ..\..\src\base\SbHeap.cpp ..\..\src\base\SbImage.cpp ..\..\src\base\SbLine.cpp ..\..\src\base\SbMatrix.cpp ..\..\src\base\SbName.cpp ..\..\src\base\SbOctTree.cpp ..\..\src\base\SbPlane.cpp ..\..\src\base\SbRotation.cpp ..\..\src\base\SbSphere.cpp ..\..\src\base\SbString.cpp ..\..\src\base\SbTesselator.cpp ..\..\src\base\SbTime.cpp ..\..\src\base\SbVec2b.cpp ..\..\src\base\SbVec2d.cpp ..\..\src\base\SbVec2f.cpp ..\..\src\base\SbVec2i32.cpp ..\..\src\base\SbVec2s.cpp ..\..\src\base\SbVec2ub.cpp ..\..\src\base\SbVec2ui32.cpp ..\..\src\base\SbVec2us.cpp ..\..\src\base\SbVec3b.cpp ..\..\src\base\SbVec3d.cpp ..\..\src\base\SbVec3f.cpp ..\..\src\base\SbVec3i32.cpp ..\..\src\base\SbVec3s.cpp ..\..\src\base\SbVec3ub.cpp ..\..\src\base\SbVec3ui32.cpp ..\..\src\base\SbVec3us.cpp ..\..\src\base\SbVec4b.cpp ..\..\src\base\SbVec4d.cpp ..\..\src\base\SbVec4f.cpp ..\..\src\base\SbVec4i32.cpp ..\..\src\base\SbVec4s.cpp ..\..\src\base\SbVec4ub.cpp ..\..\src\base\SbVec4ui32.cpp ..\..\src\base\SbViewportRegion.cpp ..\..\src\base\SbViewVolume.cpp ..\..\src\base\SbXfBox3d.cpp ..\..\src\base\SbXfBox3f.cpp ..\..\src\base\string.cpp ..\..\src\base\time.cpp ..\..\src\bundles\SoBundle.cpp ..\..\src\bundles\SoMaterialBundle.cpp ..\..\src\bundles\SoNormalBundle.cpp ..\..\src\bundles\SoTextureCoordinateBundle.cpp ..\..\src\bundles\SoVertexAttributeBundle.cpp ..\..\src\caches\SoBoundingBoxCache.cpp ..\..\src\caches\SoCache.cpp ..\..\src\caches\SoConvexDataCache.cpp ..\..\src\caches\SoGLCacheList.cpp ..\..\src\caches\SoGLRenderCache.cpp ..\..\src\caches\SoGlyphCache.cpp ..\..\src\caches\SoNormalCache.cpp ..\..\src\caches\SoPrimitiveVertexCache.cpp ..\..\src\caches\SoShaderProgramCache.cpp ..\..\src\caches\SoTextureCoordinateCache.cpp ..\..\src\caches\SoVBOCache.cpp ..\..\src\collision\SbTri3f.cpp ..\..\src\collision\SoIntersectionDetectionAction.cpp ..\..\src\details\SoConeDetail.cpp ..\..\src\details\SoCubeDetail.cpp ..\..\src\details\SoCylinderDetail.cpp ..\..\src\details\SoDetail.cpp ..\..\src\details\SoFaceDetail.cpp ..\..\src\details\SoLineDetail.cpp ..\..\src\details\SoNodeKitDetail.cpp ..\..\src\details\SoPointDetail.cpp ..\..\src\details\SoTextDetail.cpp ..\..\src\doc\Coin_books.dox ..\..\src\doc\Coin_environment.dox ..\..\src\doc\Coin_macros.dox ..\..\src\doc\Coin_main.dox ..\..\src\doc\Coin_modules.dox ..\..\src\draggers\SoCenterballDragger.cpp ..\..\src\draggers\SoDirectionalLightDragger.cpp ..\..\src\draggers\SoDragger.cpp ..\..\src\draggers\SoDragPointDragger.cpp ..\..\src\draggers\SoHandleBoxDragger.cpp ..\..\src\draggers\SoJackDragger.cpp ..\..\src\draggers\SoPointLightDragger.cpp ..\..\src\draggers\SoRotateCylindricalDragger.cpp ..\..\src\draggers\SoRotateDiscDragger.cpp ..\..\src\draggers\SoRotateSphericalDragger.cpp ..\..\src\draggers\SoScale1Dragger.cpp ..\..\src\draggers\SoScale2Dragger.cpp ..\..\src\draggers\SoScale2UniformDragger.cpp ..\..\src\draggers\SoScaleUniformDragger.cpp ..\..\src\draggers\SoSpotLightDragger.cpp ..\..\src\draggers\SoTabBoxDragger.cpp ..\..\src\draggers\SoTabPlaneDragger.cpp ..\..\src\draggers\SoTrackballDragger.cpp ..\..\src\draggers\SoTransformBoxDragger.cpp ..\..\src\draggers\SoTransformerDragger.cpp ..\..\src\draggers\SoTranslate1Dragger.cpp ..\..\src\draggers\SoTranslate2Dragger.cpp ..\..\src\elements\GL\SoGLCacheContextElement.cpp ..\..\src\elements\GL\SoGLClipPlaneElement.cpp ..\..\src\elements\GL\SoGLColorIndexElement.cpp ..\..\src\elements\GL\SoGLCoordinateElement.cpp ..\..\src\elements\GL\SoGLDepthBufferElement.cpp ..\..\src\elements\GL\SoGLDisplayList.cpp ..\..\src\elements\GL\SoGLDrawStyleElement.cpp ..\..\src\elements\GL\SoGLEnvironmentElement.cpp ..\..\src\elements\GL\SoGLLazyElement.cpp ..\..\src\elements\GL\SoGLLightIdElement.cpp ..\..\src\elements\GL\SoGLLinePatternElement.cpp ..\..\src\elements\GL\SoGLLineWidthElement.cpp ..\..\src\elements\GL\SoGLModelMatrixElement.cpp ..\..\src\elements\GL\SoGLMultiTextureCoordinateElement.cpp ..\..\src\elements\GL\SoGLMultiTextureEnabledElement.cpp ..\..\src\elements\GL\SoGLMultiTextureImageElement.cpp ..\..\src\elements\GL\SoGLMultiTextureMatrixElement.cpp ..\..\src\elements\GL\SoGLNormalElement.cpp ..\..\src\elements\GL\SoGLPointSizeElement.cpp ..\..\src\elements\GL\SoGLPolygonOffsetElement.cpp ..\..\src\elements\GL\SoGLProjectionMatrixElement.cpp ..\..\src\elements\GL\SoGLRenderPassElement.cpp ..\..\src\elements\GL\SoGLShapeHintsElement.cpp ..\..\src\elements\GL\SoGLTexture3EnabledElement.cpp ..\..\src\elements\GL\SoGLTextureCoordinateElement.cpp ..\..\src\elements\GL\SoGLTextureEnabledElement.cpp ..\..\src\elements\GL\SoGLTextureImageElement.cpp ..\..\src\elements\GL\SoGLTextureMatrixElement.cpp ..\..\src\elements\GL\SoGLUpdateAreaElement.cpp ..\..\src\elements\GL\SoGLVBOElement.cpp ..\..\src\elements\GL\SoGLVertexAttributeElement.cpp ..\..\src\elements\GL\SoGLViewingMatrixElement.cpp ..\..\src\elements\GL\SoGLViewportRegionElement.cpp ..\..\src\elements\GL\SoResetMatrixElement.cpp ..\..\src\elements\SoAccumulatedElement.cpp ..\..\src\elements\SoAmbientColorElement.cpp ..\..\src\elements\SoAnnoText3CharOrientElement.cpp ..\..\src\elements\SoAnnoText3FontSizeHintElement.cpp ..\..\src\elements\SoAnnoText3RenderPrintElement.cpp ..\..\src\elements\SoBBoxModelMatrixElement.cpp ..\..\src\elements\SoBumpMapCoordinateElement.cpp ..\..\src\elements\SoBumpMapElement.cpp ..\..\src\elements\SoBumpMapMatrixElement.cpp ..\..\src\elements\SoCacheElement.cpp ..\..\src\elements\SoCacheHintElement.cpp ..\..\src\elements\SoClipPlaneElement.cpp ..\..\src\elements\SoComplexityElement.cpp ..\..\src\elements\SoComplexityTypeElement.cpp ..\..\src\elements\SoCoordinateElement.cpp ..\..\src\elements\SoCreaseAngleElement.cpp ..\..\src\elements\SoCullElement.cpp ..\..\src\elements\SoDecimationPercentageElement.cpp ..\..\src\elements\SoDecimationTypeElement.cpp ..\..\src\elements\SoDepthBufferElement.cpp ..\..\src\elements\SoDiffuseColorElement.cpp ..\..\src\elements\SoDrawStyleElement.cpp ..\..\src\elements\SoElement.cpp ..\..\src\elements\SoEmissiveColorElement.cpp ..\..\src\elements\SoEnvironmentElement.cpp ..\..\src\elements\SoFloatElement.cpp ..\..\src\elements\SoFocalDistanceElement.cpp ..\..\src\elements\SoFontNameElement.cpp ..\..\src\elements\SoFontSizeElement.cpp ..\..\src\elements\SoInt32Element.cpp ..\..\src\elements\SoLazyElement.cpp ..\..\src\elements\SoLightAttenuationElement.cpp ..\..\src\elements\SoLightElement.cpp ..\..\src\elements\SoLightModelElement.cpp ..\..\src\elements\SoLinePatternElement.cpp ..\..\src\elements\SoLineWidthElement.cpp ..\..\src\elements\SoListenerDopplerElement.cpp ..\..\src\elements\SoListenerGainElement.cpp ..\..\src\elements\SoListenerOrientationElement.cpp ..\..\src\elements\SoListenerPositionElement.cpp ..\..\src\elements\SoLocalBBoxMatrixElement.cpp ..\..\src\elements\SoMaterialBindingElement.cpp ..\..\src\elements\SoModelMatrixElement.cpp ..\..\src\elements\SoMultiTextureCoordinateElement.cpp ..\..\src\elements\SoMultiTextureEnabledElement.cpp ..\..\src\elements\SoMultiTextureImageElement.cpp ..\..\src\elements\SoMultiTextureMatrixElement.cpp ..\..\src\elements\SoNormalBindingElement.cpp ..\..\src\elements\SoNormalElement.cpp ..\..\src\elements\SoOverrideElement.cpp ..\..\src\elements\SoPickRayElement.cpp ..\..\src\elements\SoPickStyleElement.cpp ..\..\src\elements\SoPointSizeElement.cpp ..\..\src\elements\SoPolygonOffsetElement.cpp ..\..\src\elements\SoProfileCoordinateElement.cpp ..\..\src\elements\SoProfileElement.cpp ..\..\src\elements\SoProjectionMatrixElement.cpp ..\..\src\elements\SoReplacedElement.cpp ..\..\src\elements\SoShapeHintsElement.cpp ..\..\src\elements\SoShapeStyleElement.cpp ..\..\src\elements\SoShininessElement.cpp ..\..\src\elements\SoSoundElement.cpp ..\..\src\elements\SoSpecularColorElement.cpp ..\..\src\elements\SoSwitchElement.cpp ..\..\src\elements\SoTextOutlineEnabledElement.cpp ..\..\src\elements\SoTexture3EnabledElement.cpp ..\..\src\elements\SoTextureCombineElement.cpp ..\..\src\elements\SoTextureCoordinateBindingElement.cpp ..\..\src\elements\SoTextureCoordinateElement.cpp ..\..\src\elements\SoTextureEnabledElement.cpp ..\..\src\elements\SoTextureImageElement.cpp ..\..\src\elements\SoTextureMatrixElement.cpp ..\..\src\elements\SoTextureOverrideElement.cpp ..\..\src\elements\SoTextureQualityElement.cpp ..\..\src\elements\SoTextureScalePolicyElement.cpp ..\..\src\elements\SoTextureScaleQualityElement.cpp ..\..\src\elements\SoTextureUnitElement.cpp ..\..\src\elements\SoTransparencyElement.cpp ..\..\src\elements\SoUnitsElement.cpp ..\..\src\elements\SoVertexAttributeBindingElement.cpp ..\..\src\elements\SoVertexAttributeElement.cpp ..\..\src\elements\SoViewingMatrixElement.cpp ..\..\src\elements\SoViewportRegionElement.cpp ..\..\src\elements\SoViewVolumeElement.cpp ..\..\src\elements\SoWindowElement.cpp ..\..\src\engines\SoBoolOperation.cpp ..\..\src\engines\SoCalculator.cpp ..\..\src\engines\SoComposeMatrix.cpp ..\..\src\engines\SoComposeRotation.cpp ..\..\src\engines\SoComposeRotationFromTo.cpp ..\..\src\engines\SoComposeVec2f.cpp ..\..\src\engines\SoComposeVec3f.cpp ..\..\src\engines\SoComposeVec4f.cpp ..\..\src\engines\SoComputeBoundingBox.cpp ..\..\src\engines\SoConcatenate.cpp ..\..\src\engines\SoCounter.cpp ..\..\src\engines\SoDecomposeMatrix.cpp ..\..\src\engines\SoDecomposeRotation.cpp ..\..\src\engines\SoDecomposeVec2f.cpp ..\..\src\engines\SoDecomposeVec3f.cpp ..\..\src\engines\SoDecomposeVec4f.cpp ..\..\src\engines\SoElapsedTime.cpp ..\..\src\engines\SoEngine.cpp ..\..\src\engines\SoEngineOutput.cpp ..\..\src\engines\SoFieldConverter.cpp ..\..\src\engines\SoGate.cpp ..\..\src\engines\SoHeightMapToNormalMap.cpp ..\..\src\engines\SoInterpolate.cpp ..\..\src\engines\SoInterpolateFloat.cpp ..\..\src\engines\SoInterpolateRotation.cpp ..\..\src\engines\SoInterpolateVec2f.cpp ..\..\src\engines\SoInterpolateVec3f.cpp ..\..\src\engines\SoInterpolateVec4f.cpp ..\..\src\engines\SoNodeEngine.cpp ..\..\src\engines\SoOneShot.cpp ..\..\src\engines\SoOnOff.cpp ..\..\src\engines\SoOutputData.cpp ..\..\src\engines\SoSelectOne.cpp ..\..\src\engines\SoTexture2Convert.cpp ..\..\src\engines\SoTimeCounter.cpp ..\..\src\engines\SoTransformVec3f.cpp ..\..\src\engines\SoTriggerAny.cpp ..\..\src\errors\SoDebugError.cpp ..\..\src\errors\SoError.cpp ..\..\src\errors\SoMemoryError.cpp ..\..\src\errors\SoReadError.cpp ..\..\src\events\SoButtonEvent.cpp ..\..\src\events\SoEvent.cpp ..\..\src\events\SoKeyboardEvent.cpp ..\..\src\events\SoLocation2Event.cpp ..\..\src\events\SoMotion3Event.cpp ..\..\src\events\SoMouseButtonEvent.cpp ..\..\src\events\SoSpaceballButtonEvent.cpp ..\..\src\fields\SoFieldContainer.cpp ..\..\src\fields\SoField.cpp ..\..\src\fields\SoFieldData.cpp ..\..\src\fields\SoMFBitMask.cpp ..\..\src\fields\SoMFBool.cpp ..\..\src\fields\SoMFColor.cpp ..\..\src\fields\SoMFColorRGBA.cpp ..\..\src\fields\SoMFDouble.cpp ..\..\src\fields\SoMFEngine.cpp ..\..\src\fields\SoMFEnum.cpp ..\..\src\fields\SoMFFloat.cpp ..\..\src\fields\SoMField.cpp ..\..\src\fields\SoMFInt32.cpp ..\..\src\fields\SoMFMatrix.cpp ..\..\src\fields\SoMFName.cpp ..\..\src\fields\SoMFNode.cpp ..\..\src\fields\SoMFPath.cpp ..\..\src\fields\SoMFPlane.cpp ..\..\src\fields\SoMFRotation.cpp ..\..\src\fields\SoMFShort.cpp ..\..\src\fields\SoMFString.cpp ..\..\src\fields\SoMFTime.cpp ..\..\src\fields\SoMFUInt32.cpp ..\..\src\fields\SoMFUShort.cpp ..\..\src\fields\SoMFVec2b.cpp ..\..\src\fields\SoMFVec2d.cpp ..\..\src\fields\SoMFVec2f.cpp ..\..\src\fields\SoMFVec2i32.cpp ..\..\src\fields\SoMFVec2s.cpp ..\..\src\fields\SoMFVec3b.cpp ..\..\src\fields\SoMFVec3d.cpp ..\..\src\fields\SoMFVec3f.cpp ..\..\src\fields\SoMFVec3i32.cpp ..\..\src\fields\SoMFVec3s.cpp ..\..\src\fields\SoMFVec4b.cpp ..\..\src\fields\SoMFVec4d.cpp ..\..\src\fields\SoMFVec4f.cpp ..\..\src\fields\SoMFVec4i32.cpp ..\..\src\fields\SoMFVec4s.cpp ..\..\src\fields\SoMFVec4ub.cpp ..\..\src\fields\SoMFVec4ui32.cpp ..\..\src\fields\SoMFVec4us.cpp ..\..\src\fields\SoSFBitMask.cpp ..\..\src\fields\SoSFBool.cpp ..\..\src\fields\SoSFBox2d.cpp ..\..\src\fields\SoSFBox2f.cpp ..\..\src\fields\SoSFBox2i32.cpp ..\..\src\fields\SoSFBox2s.cpp ..\..\src\fields\SoSFBox3d.cpp ..\..\src\fields\SoSFBox3f.cpp ..\..\src\fields\SoSFBox3i32.cpp ..\..\src\fields\SoSFBox3s.cpp ..\..\src\fields\SoSFColor.cpp ..\..\src\fields\SoSFColorRGBA.cpp ..\..\src\fields\SoSFDouble.cpp ..\..\src\fields\SoSFEngine.cpp ..\..\src\fields\SoSFEnum.cpp ..\..\src\fields\SoSFFloat.cpp ..\..\src\fields\SoSField.cpp ..\..\src\fields\SoSFImage3.cpp ..\..\src\fields\SoSFImage.cpp ..\..\src\fields\SoSFInt32.cpp ..\..\src\fields\SoSFMatrix.cpp ..\..\src\fields\SoSFName.cpp ..\..\src\fields\SoSFNode.cpp ..\..\src\fields\SoSFPath.cpp ..\..\src\fields\SoSFPlane.cpp ..\..\src\fields\SoSFRotation.cpp ..\..\src\fields\SoSFShort.cpp ..\..\src\fields\SoSFString.cpp ..\..\src\fields\SoSFTime.cpp ..\..\src\fields\SoSFTrigger.cpp ..\..\src\fields\SoSFUInt32.cpp ..\..\src\fields\SoSFUShort.cpp ..\..\src\fields\SoSFVec2b.cpp ..\..\src\fields\SoSFVec2d.cpp ..\..\src\fields\SoSFVec2f.cpp ..\..\src\fields\SoSFVec2i32.cpp ..\..\src\fields\SoSFVec2s.cpp ..\..\src\fields\SoSFVec3b.cpp ..\..\src\fields\SoSFVec3d.cpp ..\..\src\fields\SoSFVec3f.cpp ..\..\src\fields\SoSFVec3i32.cpp ..\..\src\fields\SoSFVec3s.cpp ..\..\src\fields\SoSFVec4b.cpp ..\..\src\fields\SoSFVec4d.cpp ..\..\src\fields\SoSFVec4f.cpp ..\..\src\fields\SoSFVec4i32.cpp ..\..\src\fields\SoSFVec4s.cpp ..\..\src\fields\SoSFVec4ub.cpp ..\..\src\fields\SoSFVec4ui32.cpp ..\..\src\fields\SoSFVec4us.cpp ..\..\src\fonts\fontlib_wrapper.cpp ..\..\src\foreignfiles\SoForeignFileKit.cpp ..\..\src\foreignfiles\SoSTLFileKit.cpp ..\..\src\geo\SoGeoCoordinate.cpp ..\..\src\geo\SoGeoElement.cpp ..\..\src\geo\SoGeoLocation.cpp ..\..\src\geo\SoGeoOrigin.cpp ..\..\src\geo\SoGeoSeparator.cpp ..\..\src\glue\dl.cpp ..\..\src\glue\gl.cpp ..\..\src\hardcopy\HardCopy.cpp ..\..\src\hardcopy\PSVectorOutput.cpp ..\..\src\hardcopy\VectorizeAction.cpp ..\..\src\hardcopy\VectorizePSAction.cpp ..\..\src\hardcopy\VectorOutput.cpp ..\..\src\io\SoInput.cpp ..\..\src\io\SoOutput.cpp ..\..\src\io\SoWriterefCounter.cpp ..\..\src\lists\SbIntList.cpp ..\..\src\lists\SbList.cpp ..\..\src\lists\SbPList.cpp ..\..\src\lists\SbStringList.cpp ..\..\src\lists\SbVec3fList.cpp ..\..\src\lists\SoActionMethodList.cpp ..\..\src\lists\SoAuditorList.cpp ..\..\src\lists\SoBaseList.cpp ..\..\src\lists\SoCallbackList.cpp ..\..\src\lists\SoDetailList.cpp ..\..\src\lists\SoEnabledElementsList.cpp ..\..\src\lists\SoEngineList.cpp ..\..\src\lists\SoEngineOutputList.cpp ..\..\src\lists\SoFieldList.cpp ..\..\src\lists\SoNodeList.cpp ..\..\src\lists\SoPathList.cpp ..\..\src\lists\SoPickedPointList.cpp ..\..\src\lists\SoTypeList.cpp ..\..\src\manips\commoncode.cpp ..\..\src\manips\SoCenterballManip.cpp ..\..\src\manips\SoClipPlaneManip.cpp ..\..\src\manips\SoDirectionalLightManip.cpp ..\..\src\manips\SoHandleBoxManip.cpp ..\..\src\manips\SoJackManip.cpp ..\..\src\manips\SoPointLightManip.cpp ..\..\src\manips\SoSpotLightManip.cpp ..\..\src\manips\SoTabBoxManip.cpp ..\..\src\manips\SoTrackballManip.cpp ..\..\src\manips\SoTransformBoxManip.cpp ..\..\src\manips\SoTransformerManip.cpp ..\..\src\manips\SoTransformManip.cpp ..\..\src\misc\CoinResources.cpp ..\..\src\misc\SoAudioDevice.cpp ..\..\src\misc\SoBase.cpp ..\..\src\misc\SoChildList.cpp ..\..\src\misc\SoCompactPathList.cpp ..\..\src\misc\SoContextHandler.cpp ..\..\src\misc\SoDB.cpp ..\..\src\misc\SoDebug.cpp ..\..\src\misc\SoEventManager.cpp ..\..\src\misc\SoFullPath.cpp ..\..\src\misc\SoGlyph.cpp ..\..\src\misc\SoInteraction.cpp ..\..\src\misc\SoJavaScriptEngine.cpp ..\..\src\misc\SoLightPath.cpp ..\..\src\misc\SoLockManager.cpp ..\..\src\misc\SoNormalGenerator.cpp ..\..\src\misc\SoNotification.cpp ..\..\src\misc\SoNotRec.cpp ..\..\src\misc\SoPath.cpp ..\..\src\misc\SoPickedPoint.cpp ..\..\src\misc\SoPrimitiveVertex.cpp ..\..\src\misc\SoProto.cpp ..\..\src\misc\SoProtoInstance.cpp ..\..\src\misc\SoSceneManager.cpp ..\..\src\misc\SoShaderGenerator.cpp ..\..\src\misc\SoState.cpp ..\..\src\misc\SoTempPath.cpp ..\..\src\misc\SoType.cpp ..\..\src\navigation\SoScXMLDollyTarget.cpp ..\..\src\navigation\SoScXMLFlightControlTarget.cpp ..\..\src\navigation\SoScXMLMiscTarget.cpp ..\..\src\navigation\SoScXMLMotionTarget.cpp ..\..\src\navigation\SoScXMLNavigation.cpp ..\..\src\navigation\SoScXMLNavigationTarget.cpp ..\..\src\navigation\SoScXMLPanTarget.cpp ..\..\src\navigation\SoScXMLRotateTarget.cpp ..\..\src\navigation\SoScXMLSeekTarget.cpp ..\..\src\navigation\SoScXMLSpinTarget.cpp ..\..\src\navigation\SoScXMLZoomTarget.cpp ..\..\src\nodekits\SoAppearanceKit.cpp ..\..\src\nodekits\SoBaseKit.cpp ..\..\src\nodekits\SoCameraKit.cpp ..\..\src\nodekits\SoInteractionKit.cpp ..\..\src\nodekits\SoLightKit.cpp ..\..\src\nodekits\SoNodekitCatalog.cpp ..\..\src\nodekits\SoNodeKit.cpp ..\..\src\nodekits\SoNodeKitListPart.cpp ..\..\src\nodekits\SoNodeKitPath.cpp ..\..\src\nodekits\SoSceneKit.cpp ..\..\src\nodekits\SoSeparatorKit.cpp ..\..\src\nodekits\SoShapeKit.cpp ..\..\src\nodekits\SoWrapperKit.cpp ..\..\src\nodes\SoAnnotation.cpp ..\..\src\nodes\SoAntiSquish.cpp ..\..\src\nodes\SoArray.cpp ..\..\src\nodes\SoBaseColor.cpp ..\..\src\nodes\SoBlinker.cpp ..\..\src\nodes\SoBumpMapCoordinate.cpp ..\..\src\nodes\SoBumpMap.cpp ..\..\src\nodes\SoBumpMapTransform.cpp ..\..\src\nodes\SoCacheHint.cpp ..\..\src\nodes\SoCallback.cpp ..\..\src\nodes\SoCamera.cpp ..\..\src\nodes\SoClipPlane.cpp ..\..\src\nodes\SoColorIndex.cpp ..\..\src\nodes\SoComplexity.cpp ..\..\src\nodes\SoCoordinate3.cpp ..\..\src\nodes\SoCoordinate4.cpp ..\..\src\nodes\SoDepthBuffer.cpp ..\..\src\nodes\SoDirectionalLight.cpp ..\..\src\nodes\SoDrawStyle.cpp ..\..\src\nodes\SoEnvironment.cpp ..\..\src\nodes\SoEventCallback.cpp ..\..\src\nodes\SoExtSelection.cpp ..\..\src\nodes\SoFile.cpp ..\..\src\nodes\SoFont.cpp ..\..\src\nodes\SoFontStyle.cpp ..\..\src\nodes\SoFrustumCamera.cpp ..\..\src\nodes\SoGroup.cpp ..\..\src\nodes\SoInfo.cpp ..\..\src\nodes\SoLabel.cpp ..\..\src\nodes\SoLevelOfDetail.cpp ..\..\src\nodes\SoLight.cpp ..\..\src\nodes\SoLightModel.cpp ..\..\src\nodes\SoLinearProfile.cpp ..\..\src\nodes\SoListener.cpp ..\..\src\nodes\SoLocateHighlight.cpp ..\..\src\nodes\SoLOD.cpp ..\..\src\nodes\SoMaterialBinding.cpp ..\..\src\nodes\SoMaterial.cpp ..\..\src\nodes\SoMatrixTransform.cpp ..\..\src\nodes\SoMultipleCopy.cpp ..\..\src\nodes\SoNode.cpp ..\..\src\nodes\SoNormalBinding.cpp ..\..\src\nodes\SoNormal.cpp ..\..\src\nodes\SoNurbsProfile.cpp ..\..\src\nodes\SoOrthographicCamera.cpp ..\..\src\nodes\SoPackedColor.cpp ..\..\src\nodes\SoPathSwitch.cpp ..\..\src\nodes\SoPendulum.cpp ..\..\src\nodes\SoPerspectiveCamera.cpp ..\..\src\nodes\SoPickStyle.cpp ..\..\src\nodes\SoPointLight.cpp ..\..\src\nodes\SoPolygonOffset.cpp ..\..\src\nodes\SoProfileCoordinate2.cpp ..\..\src\nodes\SoProfileCoordinate3.cpp ..\..\src\nodes\SoProfile.cpp ..\..\src\nodes\SoResetTransform.cpp ..\..\src\nodes\SoRotation.cpp ..\..\src\nodes\SoRotationXYZ.cpp ..\..\src\nodes\SoRotor.cpp ..\..\src\nodes\SoScale.cpp ..\..\src\nodes\SoSceneTexture2.cpp ..\..\src\nodes\SoSceneTextureCubeMap.cpp ..\..\src\nodes\SoSelection.cpp ..\..\src\nodes\SoSeparator.cpp ..\..\src\nodes\SoShapeHints.cpp ..\..\src\nodes\SoShuttle.cpp ..\..\src\nodes\SoSpotLight.cpp ..\..\src\nodes\SoSurroundScale.cpp ..\..\src\nodes\SoSwitch.cpp ..\..\src\nodes\SoTexture2.cpp ..\..\src\nodes\SoTexture2Transform.cpp ..\..\src\nodes\SoTexture3.cpp ..\..\src\nodes\SoTexture3Transform.cpp ..\..\src\nodes\SoTextureCombine.cpp ..\..\src\nodes\SoTextureCoordinate2.cpp ..\..\src\nodes\SoTextureCoordinate3.cpp ..\..\src\nodes\SoTextureCoordinateBinding.cpp ..\..\src\nodes\SoTextureCoordinateCube.cpp ..\..\src\nodes\SoTextureCoordinateCylinder.cpp ..\..\src\nodes\SoTextureCoordinateDefault.cpp ..\..\src\nodes\SoTextureCoordinateEnvironment.cpp ..\..\src\nodes\SoTextureCoordinateFunction.cpp ..\..\src\nodes\SoTextureCoordinateNormalMap.cpp ..\..\src\nodes\SoTextureCoordinateObject.cpp ..\..\src\nodes\SoTextureCoordinatePlane.cpp ..\..\src\nodes\SoTextureCoordinateReflectionMap.cpp ..\..\src\nodes\SoTextureCoordinateSphere.cpp ..\..\src\nodes\SoTexture.cpp ..\..\src\nodes\SoTextureCubeMap.cpp ..\..\src\nodes\SoTextureMatrixTransform.cpp ..\..\src\nodes\SoTextureScalePolicy.cpp ..\..\src\nodes\SoTextureUnit.cpp ..\..\src\nodes\SoTransformation.cpp ..\..\src\nodes\SoTransform.cpp ..\..\src\nodes\SoTransformSeparator.cpp ..\..\src\nodes\SoTranslation.cpp ..\..\src\nodes\SoTransparencyType.cpp ..\..\src\nodes\SoUnits.cpp ..\..\src\nodes\SoVertexAttributeBinding.cpp ..\..\src\nodes\SoVertexAttribute.cpp ..\..\src\nodes\SoVertexProperty.cpp ..\..\src\nodes\SoWWWAnchor.cpp ..\..\src\nodes\SoWWWInline.cpp ..\..\src\profiler\SbProfilingData.cpp ..\..\src\profiler\SoNodeVisualize.cpp ..\..\src\profiler\SoProfiler.cpp ..\..\src\profiler\SoProfilerElement.cpp ..\..\src\profiler\SoProfilerOverlayKit.cpp ..\..\src\profiler\SoProfilerStats.cpp ..\..\src\profiler\SoProfilingReportGenerator.cpp ..\..\src\projectors\SbCylinderPlaneProjector.cpp ..\..\src\projectors\SbCylinderProjector.cpp ..\..\src\projectors\SbCylinderSectionProjector.cpp ..\..\src\projectors\SbCylinderSheetProjector.cpp ..\..\src\projectors\SbLineProjector.cpp ..\..\src\projectors\SbPlaneProjector.cpp ..\..\src\projectors\SbProjector.cpp ..\..\src\projectors\SbSpherePlaneProjector.cpp ..\..\src\projectors\SbSphereProjector.cpp ..\..\src\projectors\SbSphereSectionProjector.cpp ..\..\src\projectors\SbSphereSheetProjector.cpp ..\..\src\rendering\SoGLBigImage.cpp ..\..\src\rendering\SoGL.cpp ..\..\src\rendering\SoGLCubeMapImage.cpp ..\..\src\rendering\SoGLDriverDatabase.cpp ..\..\src\rendering\SoGLImage.cpp ..\..\src\rendering\SoOffscreenRenderer.cpp ..\..\src\rendering\SoRenderManager.cpp ..\..\src\rendering\SoVBO.cpp ..\..\src\rendering\SoVertexArrayIndexer.cpp ..\..\src\scxml\ScXMLAbstractStateElt.cpp ..\..\src\scxml\ScXMLAnchorElt.cpp ..\..\src\scxml\ScXMLAssignElt.cpp ..\..\src\scxml\ScXMLContentElt.cpp ..\..\src\scxml\ScXML.cpp ..\..\src\scxml\ScXMLDataElt.cpp ..\..\src\scxml\ScXMLDataModelElt.cpp ..\..\src\scxml\ScXMLDocument.cpp ..\..\src\scxml\ScXMLECMAScriptEvaluator.cpp ..\..\src\scxml\ScXMLElseElt.cpp ..\..\src\scxml\ScXMLElseIfElt.cpp ..\..\src\scxml\ScXMLElt.cpp ..\..\src\scxml\ScXMLEvaluator.cpp ..\..\src\scxml\ScXMLEvent.cpp ..\..\src\scxml\ScXMLEventElt.cpp ..\..\src\scxml\ScXMLEventTarget.cpp ..\..\src\scxml\ScXMLExecutableElt.cpp ..\..\src\scxml\ScXMLFinalElt.cpp ..\..\src\scxml\ScXMLFinalizeElt.cpp ..\..\src\scxml\ScXMLHistoryElt.cpp ..\..\src\scxml\ScXMLIfElt.cpp ..\..\src\scxml\ScXMLInitialElt.cpp ..\..\src\scxml\ScXMLInvokeElt.cpp ..\..\src\scxml\ScXMLLogElt.cpp ..\..\src\scxml\ScXMLMinimumEvaluator.cpp ..\..\src\scxml\ScXMLObject.cpp ..\..\src\scxml\ScXMLOnEntryElt.cpp ..\..\src\scxml\ScXMLOnExitElt.cpp ..\..\src\scxml\ScXMLParallelElt.cpp ..\..\src\scxml\ScXMLParamElt.cpp ..\..\src\scxml\ScXMLScriptElt.cpp ..\..\src\scxml\ScXMLScxmlElt.cpp ..\..\src\scxml\ScXMLSendElt.cpp ..\..\src\scxml\ScXMLStateElt.cpp ..\..\src\scxml\ScXMLStateMachine.cpp ..\..\src\scxml\ScXMLTransitionElt.cpp ..\..\src\scxml\ScXMLValidateElt.cpp ..\..\src\scxml\ScXMLXPathEvaluator.cpp ..\..\src\sensors\SoAlarmSensor.cpp ..\..\src\sensors\SoDataSensor.cpp ..\..\src\sensors\SoDelayQueueSensor.cpp ..\..\src\sensors\SoFieldSensor.cpp ..\..\src\sensors\SoIdleSensor.cpp ..\..\src\sensors\SoNodeSensor.cpp ..\..\src\sensors\SoOneShotSensor.cpp ..\..\src\sensors\SoPathSensor.cpp ..\..\src\sensors\SoSensor.cpp ..\..\src\sensors\SoSensorManager.cpp ..\..\src\sensors\SoTimerQueueSensor.cpp ..\..\src\sensors\SoTimerSensor.cpp ..\..\src\shaders\SoFragmentShader.cpp ..\..\src\shaders\SoGeometryShader.cpp ..\..\src\shaders\SoShader.cpp ..\..\src\shaders\SoShaderObject.cpp ..\..\src\shaders\SoShaderParameter.cpp ..\..\src\shaders\SoShaderProgram.cpp ..\..\src\shaders\SoVertexShader.cpp ..\..\src\shadows\SoGLShadowCullingElement.cpp ..\..\src\shadows\SoShadowCulling.cpp ..\..\src\shadows\SoShadowDirectionalLight.cpp ..\..\src\shadows\SoShadowGroup.cpp ..\..\src\shadows\SoShadowSpotLight.cpp ..\..\src\shadows\SoShadowStyle.cpp ..\..\src\shadows\SoShadowStyleElement.cpp ..\..\src\shapenodes\SoAsciiText.cpp ..\..\src\shapenodes\SoCone.cpp ..\..\src\shapenodes\SoCube.cpp ..\..\src\shapenodes\SoCylinder.cpp ..\..\src\shapenodes\SoFaceSet.cpp ..\..\src\shapenodes\SoImage.cpp ..\..\src\shapenodes\SoIndexedFaceSet.cpp ..\..\src\shapenodes\SoIndexedLineSet.cpp ..\..\src\shapenodes\SoIndexedMarkerSet.cpp ..\..\src\shapenodes\SoIndexedNurbsCurve.cpp ..\..\src\shapenodes\SoIndexedNurbsSurface.cpp ..\..\src\shapenodes\SoIndexedPointSet.cpp ..\..\src\shapenodes\SoIndexedShape.cpp ..\..\src\shapenodes\SoIndexedTriangleStripSet.cpp ..\..\src\shapenodes\SoLineSet.cpp ..\..\src\shapenodes\SoMarkerSet.cpp ..\..\src\shapenodes\SoNonIndexedShape.cpp ..\..\src\shapenodes\SoNurbsCurve.cpp ..\..\src\shapenodes\SoNurbsSurface.cpp ..\..\src\shapenodes\SoPointSet.cpp ..\..\src\shapenodes\SoQuadMesh.cpp ..\..\src\shapenodes\SoShape.cpp ..\..\src\shapenodes\SoSphere.cpp ..\..\src\shapenodes\SoText2.cpp ..\..\src\shapenodes\SoText3.cpp ..\..\src\shapenodes\SoTriangleStripSet.cpp ..\..\src\shapenodes\SoVertexShape.cpp ..\..\src\soscxml\ScXMLCoinEvaluator.cpp ..\..\src\soscxml\SoScXMLEvent.cpp ..\..\src\soscxml\SoScXMLStateMachine.cpp ..\..\src\threads\barrier.cpp ..\..\src\threads\condvar.cpp ..\..\src\threads\fifo.cpp ..\..\src\threads\mutex.cpp ..\..\src\threads\recmutex.cpp ..\..\src\threads\rwmutex.cpp ..\..\src\threads\sched.cpp ..\..\src\threads\schedp.h ..\..\src\threads\storage.cpp ..\..\src\threads\sync.cpp ..\..\src\threads\thread.cpp ..\..\src\threads\worker.cpp ..\..\src\threads\wpool.cpp ..\..\src\tidbits.cpp ..\..\src\upgraders\SoPackedColorV20.cpp ..\..\src\upgraders\SoShapeHintsV10.cpp ..\..\src\upgraders\SoUpgrader.cpp ..\..\src\vrml97\Anchor.cpp ..\..\src\vrml97\Appearance.cpp ..\..\src\vrml97\AudioClip.cpp ..\..\src\vrml97\Background.cpp ..\..\src\vrml97\Billboard.cpp ..\..\src\vrml97\Box.cpp ..\..\src\vrml97\Collision.cpp ..\..\src\vrml97\Color.cpp ..\..\src\vrml97\ColorInterpolator.cpp ..\..\src\vrml97\Cone.cpp ..\..\src\vrml97\Coordinate.cpp ..\..\src\vrml97\CoordinateInterpolator.cpp ..\..\src\vrml97\Cylinder.cpp ..\..\src\vrml97\CylinderSensor.cpp ..\..\src\vrml97\DirectionalLight.cpp ..\..\src\vrml97\DragSensor.cpp ..\..\src\vrml97\ElevationGrid.cpp ..\..\src\vrml97\Extrusion.cpp ..\..\src\vrml97\Fog.cpp ..\..\src\vrml97\FontStyle.cpp ..\..\src\vrml97\Geometry.cpp ..\..\src\vrml97\Group.cpp ..\..\src\vrml97\ImageTexture.cpp ..\..\src\vrml97\IndexedFaceSet.cpp ..\..\src\vrml97\IndexedLine.cpp ..\..\src\vrml97\IndexedLineSet.cpp ..\..\src\vrml97\IndexedShape.cpp ..\..\src\vrml97\Inline.cpp ..\..\src\vrml97\Interpolator.cpp ..\..\src\vrml97\Light.cpp ..\..\src\vrml97\LOD.cpp ..\..\src\vrml97\Material.cpp ..\..\src\vrml97\MovieTexture.cpp ..\..\src\vrml97\NavigationInfo.cpp ..\..\src\vrml97\Normal.cpp ..\..\src\vrml97\NormalInterpolator.cpp ..\..\src\vrml97\OrientationInterpolator.cpp ..\..\src\vrml97\Parent.cpp ..\..\src\vrml97\PixelTexture.cpp ..\..\src\vrml97\PlaneSensor.cpp ..\..\src\vrml97\PointLight.cpp ..\..\src\vrml97\PointSet.cpp ..\..\src\vrml97\PositionInterpolator.cpp ..\..\src\vrml97\ProximitySensor.cpp ..\..\src\vrml97\ScalarInterpolator.cpp ..\..\src\vrml97\Script.cpp ..\..\src\vrml97\Sensor.cpp ..\..\src\vrml97\Shape.cpp ..\..\src\vrml97\Sound.cpp ..\..\src\vrml97\Sphere.cpp ..\..\src\vrml97\SphereSensor.cpp ..\..\src\vrml97\SpotLight.cpp ..\..\src\vrml97\Switch.cpp ..\..\src\vrml97\Text.cpp ..\..\src\vrml97\TextureCoordinate.cpp ..\..\src\vrml97\Texture.cpp ..\..\src\vrml97\TextureTransform.cpp ..\..\src\vrml97\TimeSensor.cpp ..\..\src\vrml97\TouchSensor.cpp ..\..\src\vrml97\Transform.cpp ..\..\src\vrml97\VertexLine.cpp ..\..\src\vrml97\VertexPoint.cpp ..\..\src\vrml97\VertexShape.cpp ..\..\src\vrml97\Viewpoint.cpp ..\..\src\vrml97\VisibilitySensor.cpp ..\..\src\vrml97\WorldInfo.cpp ..\..\src\xml\attribute.cpp ..\..\src\xml\document.cpp ..\..\src\xml\element.cpp ..\..\src\xml\types.cpp
450
451# If the value of the INPUT tag contains directories, you can use the
452# FILE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp
453# and *.h) to filter out the source-files in the directories. If left
454# blank the following patterns are tested:
455# *.c *.cc *.cxx *.cpp *.c++ *.java *.ii *.ixx *.ipp *.i++ *.inl *.h *.hh *.hxx
456# *.hpp *.h++ *.idl *.odl *.cs *.php *.php3 *.inc *.m *.mm
457
458FILE_PATTERNS          =
459
460# The RECURSIVE tag can be used to turn specify whether or not subdirectories
461# should be searched for input files as well. Possible values are YES and NO.
462# If left blank NO is used.
463
464RECURSIVE              = NO
465
466# The EXCLUDE tag can be used to specify files and/or directories that should
467# excluded from the INPUT source files. This way you can easily exclude a
468# subdirectory from a directory tree whose root is specified with the INPUT tag.
469
470EXCLUDE                =
471
472# The EXCLUDE_SYMLINKS tag can be used select whether or not files or
473# directories that are symbolic links (a Unix filesystem feature) are excluded
474# from the input.
475
476EXCLUDE_SYMLINKS       = NO
477
478# If the value of the INPUT tag contains directories, you can use the
479# EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude
480# certain files from those directories.
481
482EXCLUDE_PATTERNS       =
483
484# The EXAMPLE_PATH tag can be used to specify one or more files or
485# directories that contain example code fragments that are included (see
486# the \include command).
487
488EXAMPLE_PATH           =
489
490# If the value of the EXAMPLE_PATH tag contains directories, you can use the
491# EXAMPLE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp
492# and *.h) to filter out the source-files in the directories. If left
493# blank all files are included.
494
495EXAMPLE_PATTERNS       =
496
497# If the EXAMPLE_RECURSIVE tag is set to YES then subdirectories will be
498# searched for input files to be used with the \include or \dontinclude
499# commands irrespective of the value of the RECURSIVE tag.
500# Possible values are YES and NO. If left blank NO is used.
501
502EXAMPLE_RECURSIVE      = NO
503
504# The IMAGE_PATH tag can be used to specify one or more files or
505# directories that contain image that are included in the documentation (see
506# the \image command).
507
508IMAGE_PATH             =
509
510# The INPUT_FILTER tag can be used to specify a program that doxygen should
511# invoke to filter for each input file. Doxygen will invoke the filter program
512# by executing (via popen()) the command <filter> <input-file>, where <filter>
513# is the value of the INPUT_FILTER tag, and <input-file> is the name of an
514# input file. Doxygen will then use the output that the filter program writes
515# to standard output.  If FILTER_PATTERNS is specified, this tag will be
516# ignored.
517
518INPUT_FILTER           =
519
520# The FILTER_PATTERNS tag can be used to specify filters on a per file pattern
521# basis.  Doxygen will compare the file name with each pattern and apply the
522# filter if there is a match.  The filters are a list of the form:
523# pattern=filter (like *.cpp=my_cpp_filter). See INPUT_FILTER for further
524# info on how filters are used. If FILTER_PATTERNS is empty, INPUT_FILTER
525# is applied to all files.
526
527FILTER_PATTERNS        =
528
529# If the FILTER_SOURCE_FILES tag is set to YES, the input filter (if set using
530# INPUT_FILTER) will be used to filter the input files when producing source
531# files to browse (i.e. when SOURCE_BROWSER is set to YES).
532
533FILTER_SOURCE_FILES    = NO
534
535#---------------------------------------------------------------------------
536# configuration options related to source browsing
537#---------------------------------------------------------------------------
538
539# If the SOURCE_BROWSER tag is set to YES then a list of source files will
540# be generated. Documented entities will be cross-referenced with these sources.
541# Note: To get rid of all source code in the generated output, make sure also
542# VERBATIM_HEADERS is set to NO.
543
544SOURCE_BROWSER         = NO
545
546# Setting the INLINE_SOURCES tag to YES will include the body
547# of functions and classes directly in the documentation.
548
549INLINE_SOURCES         = NO
550
551# Setting the STRIP_CODE_COMMENTS tag to YES (the default) will instruct
552# doxygen to hide any special comment blocks from generated source code
553# fragments. Normal C and C++ comments will always remain visible.
554
555STRIP_CODE_COMMENTS    = YES
556
557# If the REFERENCED_BY_RELATION tag is set to YES (the default)
558# then for each documented function all documented
559# functions referencing it will be listed.
560
561REFERENCED_BY_RELATION = NO
562
563# If the REFERENCES_RELATION tag is set to YES (the default)
564# then for each documented function all documented entities
565# called/used by that function will be listed.
566
567REFERENCES_RELATION    = NO
568
569# If the USE_HTAGS tag is set to YES then the references to source code
570# will point to the HTML generated by the htags(1) tool instead of doxygen
571# built-in source browser. The htags tool is part of GNU's global source
572# tagging system (see http://www.gnu.org/software/global/global.html). You
573# will need version 4.8.6 or higher.
574
575USE_HTAGS              = NO
576
577# If the VERBATIM_HEADERS tag is set to YES (the default) then Doxygen
578# will generate a verbatim copy of the header file for each class for
579# which an include is specified. Set to NO to disable this.
580
581VERBATIM_HEADERS       = YES
582
583#---------------------------------------------------------------------------
584# configuration options related to the alphabetical class index
585#---------------------------------------------------------------------------
586
587# If the ALPHABETICAL_INDEX tag is set to YES, an alphabetical index
588# of all compounds will be generated. Enable this if the project
589# contains a lot of classes, structs, unions or interfaces.
590
591ALPHABETICAL_INDEX     = YES
592
593# If the alphabetical index is enabled (see ALPHABETICAL_INDEX) then
594# the COLS_IN_ALPHA_INDEX tag can be used to specify the number of columns
595# in which this list will be split (can be a number in the range [1..20])
596
597COLS_IN_ALPHA_INDEX    = 5
598
599# In case all classes in a project start with a common prefix, all
600# classes will be put under the same header in the alphabetical index.
601# The IGNORE_PREFIX tag can be used to specify one or more prefixes that
602# should be ignored while generating the index headers.
603
604IGNORE_PREFIX          = So \
605                         Sb \
606                         cc_
607
608#---------------------------------------------------------------------------
609# configuration options related to the HTML output
610#---------------------------------------------------------------------------
611
612# If the GENERATE_HTML tag is set to YES (the default) Doxygen will
613# generate HTML output.
614
615GENERATE_HTML = YES
616
617# The HTML_OUTPUT tag is used to specify where the HTML docs will be put.
618# If a relative path is entered the value of OUTPUT_DIRECTORY will be
619# put in front of it. If left blank `html' will be used as the default path.
620
621HTML_OUTPUT = ..\html
622
623# The HTML_FILE_EXTENSION tag can be used to specify the file extension for
624# each generated HTML page (for example: .htm,.php,.asp). If it is left blank
625# doxygen will generate files with .html extension.
626
627HTML_FILE_EXTENSION    = .html
628
629# The HTML_HEADER tag can be used to specify a personal HTML header for
630# each generated HTML page. If it is left blank doxygen will generate a
631# standard header.
632
633HTML_HEADER            = ..\..\docs\doxygen\header.html
634
635# The HTML_FOOTER tag can be used to specify a personal HTML footer for
636# each generated HTML page. If it is left blank doxygen will generate a
637# standard footer.
638
639HTML_FOOTER            = ..\..\docs\doxygen\footer.html
640
641# The HTML_STYLESHEET tag can be used to specify a user-defined cascading
642# style sheet that is used by each HTML page. It can be used to
643# fine-tune the look of the HTML output. If the tag is left blank doxygen
644# will generate a default style sheet. Note that doxygen will try to copy
645# the style sheet file to the HTML output directory, so don't put your own
646# stylesheet in the HTML output directory as well, or it will be erased!
647
648HTML_STYLESHEET        = ..\..\docs\doxygen\stylesheet.css
649
650# If the HTML_ALIGN_MEMBERS tag is set to YES, the members of classes,
651# files or namespaces will be aligned in HTML using tables. If set to
652# NO a bullet list will be used.
653
654HTML_ALIGN_MEMBERS     = YES
655
656# If the GENERATE_HTMLHELP tag is set to YES, additional index files
657# will be generated that can be used as input for tools like the
658# Microsoft HTML help workshop to generate a compressed HTML help file (.chm)
659# of the generated HTML documentation.
660
661GENERATE_HTML = YES
662
663# If the GENERATE_HTMLHELP tag is set to YES, the CHM_FILE tag can
664# be used to specify the file name of the resulting .chm file. You
665# can add a path in front of the file if the result should not be
666# written to the html output directory.
667
668CHM_FILE               =
669
670# If the GENERATE_HTMLHELP tag is set to YES, the HHC_LOCATION tag can
671# be used to specify the location (absolute path including file name) of
672# the HTML help compiler (hhc.exe). If non-empty doxygen will try to run
673# the HTML help compiler on the generated index.hhp.
674
675HHC_LOCATION           =
676
677# If the GENERATE_HTMLHELP tag is set to YES, the GENERATE_CHI flag
678# controls if a separate .chi index file is generated (YES) or that
679# it should be included in the master .chm file (NO).
680
681GENERATE_CHI           = NO
682
683# If the GENERATE_HTMLHELP tag is set to YES, the BINARY_TOC flag
684# controls whether a binary table of contents is generated (YES) or a
685# normal table of contents (NO) in the .chm file.
686
687BINARY_TOC             = NO
688
689# The TOC_EXPAND flag can be set to YES to add extra items for group members
690# to the contents of the HTML help documentation and to the tree view.
691
692TOC_EXPAND             = NO
693
694# The DISABLE_INDEX tag can be used to turn on/off the condensed index at
695# top of each HTML page. The value NO (the default) enables the index and
696# the value YES disables it.
697
698DISABLE_INDEX          = NO
699
700# This tag can be used to set the number of enum values (range [1..20])
701# that doxygen will group on one line in the generated HTML documentation.
702
703ENUM_VALUES_PER_LINE   = 4
704
705# If the GENERATE_TREEVIEW tag is set to YES, a side panel will be
706# generated containing a tree-like index structure (just like the one that
707# is generated for HTML Help). For this to work a browser that supports
708# JavaScript, DHTML, CSS and frames is required (for instance Mozilla 1.0+,
709# Netscape 6.0+, Internet explorer 5.0+, or Konqueror). Windows users are
710# probably better off using the HTML help feature.
711
712GENERATE_TREEVIEW      = NO
713
714# If the treeview is enabled (see GENERATE_TREEVIEW) then this tag can be
715# used to set the initial width (in pixels) of the frame in which the tree
716# is shown.
717
718TREEVIEW_WIDTH         = 250
719
720#---------------------------------------------------------------------------
721# configuration options related to the LaTeX output
722#---------------------------------------------------------------------------
723
724# If the GENERATE_LATEX tag is set to YES (the default) Doxygen will
725# generate Latex output.
726
727GENERATE_LATEX         = NO
728
729# The LATEX_OUTPUT tag is used to specify where the LaTeX docs will be put.
730# If a relative path is entered the value of OUTPUT_DIRECTORY will be
731# put in front of it. If left blank `latex' will be used as the default path.
732
733LATEX_OUTPUT           =
734
735# The LATEX_CMD_NAME tag can be used to specify the LaTeX command name to be
736# invoked. If left blank `latex' will be used as the default command name.
737
738LATEX_CMD_NAME         = latex
739
740# The MAKEINDEX_CMD_NAME tag can be used to specify the command name to
741# generate index for LaTeX. If left blank `makeindex' will be used as the
742# default command name.
743
744MAKEINDEX_CMD_NAME     = makeindex
745
746# If the COMPACT_LATEX tag is set to YES Doxygen generates more compact
747# LaTeX documents. This may be useful for small projects and may help to
748# save some trees in general.
749
750COMPACT_LATEX          = NO
751
752# The PAPER_TYPE tag can be used to set the paper type that is used
753# by the printer. Possible values are: a4, a4wide, letter, legal and
754# executive. If left blank a4wide will be used.
755
756PAPER_TYPE             = a4wide
757
758# The EXTRA_PACKAGES tag can be to specify one or more names of LaTeX
759# packages that should be included in the LaTeX output.
760
761EXTRA_PACKAGES         =
762
763# The LATEX_HEADER tag can be used to specify a personal LaTeX header for
764# the generated latex document. The header should contain everything until
765# the first chapter. If it is left blank doxygen will generate a
766# standard header. Notice: only use this tag if you know what you are doing!
767
768LATEX_HEADER           =
769
770# If the PDF_HYPERLINKS tag is set to YES, the LaTeX that is generated
771# is prepared for conversion to pdf (using ps2pdf). The pdf file will
772# contain links (just like the HTML output) instead of page references
773# This makes the output suitable for online browsing using a pdf viewer.
774
775PDF_HYPERLINKS         = NO
776
777# If the USE_PDFLATEX tag is set to YES, pdflatex will be used instead of
778# plain latex in the generated Makefile. Set this option to YES to get a
779# higher quality PDF documentation.
780
781USE_PDFLATEX           = NO
782
783# If the LATEX_BATCHMODE tag is set to YES, doxygen will add the \\batchmode.
784# command to the generated LaTeX files. This will instruct LaTeX to keep
785# running if errors occur, instead of asking the user for help.
786# This option is also used when generating formulas in HTML.
787
788LATEX_BATCHMODE        = NO
789
790# If LATEX_HIDE_INDICES is set to YES then doxygen will not
791# include the index chapters (such as File Index, Compound Index, etc.)
792# in the output.
793
794LATEX_HIDE_INDICES     = NO
795
796#---------------------------------------------------------------------------
797# configuration options related to the RTF output
798#---------------------------------------------------------------------------
799
800# If the GENERATE_RTF tag is set to YES Doxygen will generate RTF output
801# The RTF output is optimized for Word 97 and may not look very pretty with
802# other RTF readers or editors.
803
804GENERATE_RTF           = NO
805
806# The RTF_OUTPUT tag is used to specify where the RTF docs will be put.
807# If a relative path is entered the value of OUTPUT_DIRECTORY will be
808# put in front of it. If left blank `rtf' will be used as the default path.
809
810RTF_OUTPUT             = rtf
811
812# If the COMPACT_RTF tag is set to YES Doxygen generates more compact
813# RTF documents. This may be useful for small projects and may help to
814# save some trees in general.
815
816COMPACT_RTF            = NO
817
818# If the RTF_HYPERLINKS tag is set to YES, the RTF that is generated
819# will contain hyperlink fields. The RTF file will
820# contain links (just like the HTML output) instead of page references.
821# This makes the output suitable for online browsing using WORD or other
822# programs which support those fields.
823# Note: wordpad (write) and others do not support links.
824
825RTF_HYPERLINKS         = NO
826
827# Load stylesheet definitions from file. Syntax is similar to doxygen's
828# config file, i.e. a series of assignments. You only have to provide
829# replacements, missing definitions are set to their default value.
830
831RTF_STYLESHEET_FILE    =
832
833# Set optional variables used in the generation of an rtf document.
834# Syntax is similar to doxygen's config file.
835
836RTF_EXTENSIONS_FILE    =
837
838#---------------------------------------------------------------------------
839# configuration options related to the man page output
840#---------------------------------------------------------------------------
841
842# If the GENERATE_MAN tag is set to YES (the default) Doxygen will
843# generate man pages
844
845GENERATE_MAN           = NO
846
847# The MAN_OUTPUT tag is used to specify where the man pages will be put.
848# If a relative path is entered the value of OUTPUT_DIRECTORY will be
849# put in front of it. If left blank `man' will be used as the default path.
850
851MAN_OUTPUT = man
852
853# The MAN_EXTENSION tag determines the extension that is added to
854# the generated man pages (default is the subroutine's section .3)
855
856MAN_EXTENSION          = .3
857
858# If the MAN_LINKS tag is set to YES and Doxygen generates man output,
859# then it will generate one additional man file for each entity
860# documented in the real man page(s). These additional files
861# only source the real man page, but without them the man command
862# would be unable to find the correct page. The default is NO.
863
864MAN_LINKS              = NO
865
866#---------------------------------------------------------------------------
867# configuration options related to the XML output
868#---------------------------------------------------------------------------
869
870# If the GENERATE_XML tag is set to YES Doxygen will
871# generate an XML file that captures the structure of
872# the code including all documentation.
873
874GENERATE_XML           = NO
875
876# The XML_OUTPUT tag is used to specify where the XML pages will be put.
877# If a relative path is entered the value of OUTPUT_DIRECTORY will be
878# put in front of it. If left blank `xml' will be used as the default path.
879
880XML_OUTPUT             = xml
881
882# The XML_SCHEMA tag can be used to specify an XML schema,
883# which can be used by a validating XML parser to check the
884# syntax of the XML files.
885
886XML_SCHEMA             =
887
888# The XML_DTD tag can be used to specify an XML DTD,
889# which can be used by a validating XML parser to check the
890# syntax of the XML files.
891
892XML_DTD                =
893
894# If the XML_PROGRAMLISTING tag is set to YES Doxygen will
895# dump the program listings (including syntax highlighting
896# and cross-referencing information) to the XML output. Note that
897# enabling this will significantly increase the size of the XML output.
898
899XML_PROGRAMLISTING     = YES
900
901#---------------------------------------------------------------------------
902# configuration options for the AutoGen Definitions output
903#---------------------------------------------------------------------------
904
905# If the GENERATE_AUTOGEN_DEF tag is set to YES Doxygen will
906# generate an AutoGen Definitions (see autogen.sf.net) file
907# that captures the structure of the code including all
908# documentation. Note that this feature is still experimental
909# and incomplete at the moment.
910
911GENERATE_AUTOGEN_DEF   = NO
912
913#---------------------------------------------------------------------------
914# configuration options related to the Perl module output
915#---------------------------------------------------------------------------
916
917# If the GENERATE_PERLMOD tag is set to YES Doxygen will
918# generate a Perl module file that captures the structure of
919# the code including all documentation. Note that this
920# feature is still experimental and incomplete at the
921# moment.
922
923GENERATE_PERLMOD       = NO
924
925# If the PERLMOD_LATEX tag is set to YES Doxygen will generate
926# the necessary Makefile rules, Perl scripts and LaTeX code to be able
927# to generate PDF and DVI output from the Perl module output.
928
929PERLMOD_LATEX          = NO
930
931# If the PERLMOD_PRETTY tag is set to YES the Perl module output will be
932# nicely formatted so it can be parsed by a human reader.  This is useful
933# if you want to understand what is going on.  On the other hand, if this
934# tag is set to NO the size of the Perl module output will be much smaller
935# and Perl will parse it just the same.
936
937PERLMOD_PRETTY         = YES
938
939# The names of the make variables in the generated doxyrules.make file
940# are prefixed with the string contained in PERLMOD_MAKEVAR_PREFIX.
941# This is useful so different doxyrules.make files included by the same
942# Makefile don't overwrite each other's variables.
943
944PERLMOD_MAKEVAR_PREFIX =
945
946#---------------------------------------------------------------------------
947# Configuration options related to the preprocessor
948#---------------------------------------------------------------------------
949
950# If the ENABLE_PREPROCESSING tag is set to YES (the default) Doxygen will
951# evaluate all C-preprocessor directives found in the sources and include
952# files.
953
954ENABLE_PREPROCESSING   = YES
955
956# If the MACRO_EXPANSION tag is set to YES Doxygen will expand all macro
957# names in the source code. If set to NO (the default) only conditional
958# compilation will be performed. Macro expansion can be done in a controlled
959# way by setting EXPAND_ONLY_PREDEF to YES.
960
961MACRO_EXPANSION        = YES
962
963# If the EXPAND_ONLY_PREDEF and MACRO_EXPANSION tags are both set to YES
964# then the macro expansion is limited to the macros specified with the
965# PREDEFINED and EXPAND_AS_PREDEFINED tags.
966
967EXPAND_ONLY_PREDEF     = NO
968
969# If the SEARCH_INCLUDES tag is set to YES (the default) the includes files
970# in the INCLUDE_PATH (see below) will be search if a #include is found.
971
972SEARCH_INCLUDES        = YES
973
974# The INCLUDE_PATH tag can be used to specify one or more directories that
975# contain include files that are not input files but should be processed by
976# the preprocessor.
977
978INCLUDE_PATH           = .\include \
979                         . \
980                         ..\..\include \
981                         ..\..\include\Inventor\annex
982
983# You can use the INCLUDE_FILE_PATTERNS tag to specify one or more wildcard
984# patterns (like *.h and *.hpp) to filter out the header-files in the
985# directories. If left blank, the patterns specified with FILE_PATTERNS will
986# be used.
987
988INCLUDE_FILE_PATTERNS  = *.h \
989                         *.h.in
990
991# The PREDEFINED tag can be used to specify one or more macro names that
992# are defined before the preprocessor is started (similar to the -D option of
993# gcc). The argument of the tag is a list of macros of the form: name
994# or name=definition (no spaces). If the definition and the = are
995# omitted =1 is assumed. To prevent a macro definition from being
996# undefined via #undef or recursively expanded use the := operator
997# instead of the = operator.
998
999PREDEFINED             = DOXYGEN_SKIP_THIS=1 \
1000                         HAVE_CONFIG_H= \
1001                         HAVE_VRML97= \
1002                         HAVE_NODEKITS= \
1003                         HAVE_DRAGGERS= \
1004                         HAVE_MANIPULATORS= \
1005                         COIN_DLL_API=
1006
1007# If the MACRO_EXPANSION and EXPAND_ONLY_PREDEF tags are set to YES then
1008# this tag can be used to specify a list of macro names that should be expanded.
1009# The macro definition that is found in the sources will be used.
1010# Use the PREDEFINED tag if you want to use a different macro definition.
1011
1012EXPAND_AS_DEFINED      = SO_COMPOSE__HEADER \
1013                         SO_SFIELD_HEADER \
1014                         SO_MFIELD_HEADER \
1015                         SO_SFIELD_DERIVED_HEADER \
1016                         SO_MFIELD_DERIVED_HEADER \
1017                         SO_SFIELD_CONSTRUCTOR_HEADER \
1018                         SO_SFIELD_REQUIRED_HEADER \
1019                         SO_SFIELD_IO_HEADER \
1020                         SO_MFIELD_IO_HEADER \
1021                         SO_SFIELD_VALUE_HEADER \
1022                         SO_MFIELD_VALUE_HEADER \
1023                         SO_SFIELD_DERIVED_VALUE_HEADER \
1024                         SO_MFIELD_DERIVED_VALUE_HEADER \
1025                         SO_MFIELD_SETVALUESPOINTER_HEADER
1026
1027# If the SKIP_FUNCTION_MACROS tag is set to YES (the default) then
1028# doxygen's preprocessor will remove all function-like macros that are alone
1029# on a line, have an all uppercase name, and do not end with a semicolon. Such
1030# function macros are typically used for boiler-plate code, and will confuse
1031# the parser if not removed.
1032
1033SKIP_FUNCTION_MACROS   = NO
1034
1035#---------------------------------------------------------------------------
1036# Configuration::additions related to external references
1037#---------------------------------------------------------------------------
1038
1039# The TAGFILES option can be used to specify one or more tagfiles.
1040# Optionally an initial location of the external documentation
1041# can be added for each tagfile. The format of a tag file without
1042# this location is as follows:
1043#   TAGFILES = file1 file2 ...
1044# Adding location for the tag files is done as follows:
1045#   TAGFILES = file1=loc1 "file2 = loc2" ...
1046# where "loc1" and "loc2" can be relative or absolute paths or
1047# URLs. If a location is present for each tag, the installdox tool
1048# does not have to be run to correct the links.
1049# Note that each tag file must have a unique name
1050# (where the name does NOT include the path)
1051# If a tag file is not located in the directory in which doxygen
1052# is run, you must also specify the path to the tagfile here.
1053
1054TAGFILES               =
1055
1056# When a file name is specified after GENERATE_TAGFILE, doxygen will create
1057# a tag file that is based on the input files it reads.
1058
1059GENERATE_TAGFILE = ..\html\coin.tag
1060
1061# If the ALLEXTERNALS tag is set to YES all external classes will be listed
1062# in the class index. If set to NO only the inherited external classes
1063# will be listed.
1064
1065ALLEXTERNALS           = NO
1066
1067# If the EXTERNAL_GROUPS tag is set to YES all external groups will be listed
1068# in the modules index. If set to NO, only the current project's groups will
1069# be listed.
1070
1071EXTERNAL_GROUPS        = YES
1072
1073# The PERL_PATH should be the absolute path and name of the perl script
1074# interpreter (i.e. the result of `which perl').
1075
1076PERL_PATH              = /usr/bin/perl
1077
1078#---------------------------------------------------------------------------
1079# Configuration options related to the dot tool
1080#---------------------------------------------------------------------------
1081
1082# If the CLASS_DIAGRAMS tag is set to YES (the default) Doxygen will
1083# generate a inheritance diagram (in HTML, RTF and LaTeX) for classes with base
1084# or super classes. Setting the tag to NO turns the diagrams off. Note that
1085# this option is superseded by the HAVE_DOT option below. This is only a
1086# fallback. It is recommended to install and use dot, since it yields more
1087# powerful graphs.
1088
1089CLASS_DIAGRAMS         = YES
1090
1091# If set to YES, the inheritance and collaboration graphs will hide
1092# inheritance and usage relations if the target is undocumented
1093# or is not a class.
1094
1095HIDE_UNDOC_RELATIONS   = NO
1096
1097# If you set the HAVE_DOT tag to YES then doxygen will assume the dot tool is
1098# available from the path. This tool is part of Graphviz, a graph visualization
1099# toolkit from AT&T and Lucent Bell Labs. The other options in this section
1100# have no effect if this option is set to NO (the default)
1101
1102HAVE_DOT               = NO
1103
1104# If the CLASS_GRAPH and HAVE_DOT tags are set to YES then doxygen
1105# will generate a graph for each documented class showing the direct and
1106# indirect inheritance relations. Setting this tag to YES will force the
1107# the CLASS_DIAGRAMS tag to NO.
1108
1109CLASS_GRAPH            = YES
1110
1111# If the COLLABORATION_GRAPH and HAVE_DOT tags are set to YES then doxygen
1112# will generate a graph for each documented class showing the direct and
1113# indirect implementation dependencies (inheritance, containment, and
1114# class references variables) of the class with other documented classes.
1115
1116COLLABORATION_GRAPH    = YES
1117
1118# If the GROUP_GRAPHS and HAVE_DOT tags are set to YES then doxygen
1119# will generate a graph for groups, showing the direct groups dependencies
1120
1121GROUP_GRAPHS           = YES
1122
1123# If the UML_LOOK tag is set to YES doxygen will generate inheritance and
1124# collaboration diagrams in a style similar to the OMG's Unified Modeling
1125# Language.
1126
1127UML_LOOK               = NO
1128
1129# If set to YES, the inheritance and collaboration graphs will show the
1130# relations between templates and their instances.
1131
1132TEMPLATE_RELATIONS     = YES
1133
1134# If the ENABLE_PREPROCESSING, SEARCH_INCLUDES, INCLUDE_GRAPH, and HAVE_DOT
1135# tags are set to YES then doxygen will generate a graph for each documented
1136# file showing the direct and indirect include dependencies of the file with
1137# other documented files.
1138
1139INCLUDE_GRAPH          = YES
1140
1141# If the ENABLE_PREPROCESSING, SEARCH_INCLUDES, INCLUDED_BY_GRAPH, and
1142# HAVE_DOT tags are set to YES then doxygen will generate a graph for each
1143# documented header file showing the documented files that directly or
1144# indirectly include this file.
1145
1146INCLUDED_BY_GRAPH      = YES
1147
1148# If the CALL_GRAPH and HAVE_DOT tags are set to YES then doxygen will
1149# generate a call dependency graph for every global function or class method.
1150# Note that enabling this option will significantly increase the time of a run.
1151# So in most cases it will be better to enable call graphs for selected
1152# functions only using the \callgraph command.
1153
1154CALL_GRAPH             = NO
1155
1156# If the GRAPHICAL_HIERARCHY and HAVE_DOT tags are set to YES then doxygen
1157# will graphical hierarchy of all classes instead of a textual one.
1158
1159GRAPHICAL_HIERARCHY    = YES
1160
1161# If the DIRECTORY_GRAPH, SHOW_DIRECTORIES and HAVE_DOT tags are set to YES
1162# then doxygen will show the dependencies a directory has on other directories
1163# in a graphical way. The dependency relations are determined by the #include
1164# relations between the files in the directories.
1165
1166DIRECTORY_GRAPH        = YES
1167
1168# The DOT_IMAGE_FORMAT tag can be used to set the image format of the images
1169# generated by dot. Possible values are png, jpg, or gif
1170# If left blank png will be used.
1171
1172DOT_IMAGE_FORMAT       = png
1173
1174# The tag DOT_PATH can be used to specify the path where the dot tool can be
1175# found. If left blank, it is assumed the dot tool can be found in the path.
1176
1177DOT_PATH               =
1178
1179# The DOTFILE_DIRS tag can be used to specify one or more directories that
1180# contain dot files that are included in the documentation (see the
1181# \dotfile command).
1182
1183DOTFILE_DIRS           =
1184
1185# The MAX_DOT_GRAPH_DEPTH tag can be used to set the maximum depth of the
1186# graphs generated by dot. A depth value of 3 means that only nodes reachable
1187# from the root by following a path via at most 3 edges will be shown. Nodes
1188# that lay further from the root node will be omitted. Note that setting this
1189# option to 1 or 2 may greatly reduce the computation time needed for large
1190# code bases. Also note that a graph may be further truncated if the graph's
1191# image dimensions are not sufficient to fit the graph (see MAX_DOT_GRAPH_WIDTH
1192# and MAX_DOT_GRAPH_HEIGHT). If 0 is used for the depth value (the default),
1193# the graph is not depth-constrained.
1194
1195MAX_DOT_GRAPH_DEPTH    = 0
1196
1197# Set the DOT_TRANSPARENT tag to YES to generate images with a transparent
1198# background. This is disabled by default, which results in a white background.
1199# Warning: Depending on the platform used, enabling this option may lead to
1200# badly anti-aliased labels on the edges of a graph (i.e. they become hard to
1201# read).
1202
1203DOT_TRANSPARENT        = NO
1204
1205# Set the DOT_MULTI_TARGETS tag to YES allow dot to generate multiple output
1206# files in one run (i.e. multiple -o and -T options on the command line). This
1207# makes dot run faster, but since only newer versions of dot (>1.8.10)
1208# support this, this feature is disabled by default.
1209
1210DOT_MULTI_TARGETS      = NO
1211
1212# If the GENERATE_LEGEND tag is set to YES (the default) Doxygen will
1213# generate a legend page explaining the meaning of the various boxes and
1214# arrows in the dot generated graphs.
1215
1216GENERATE_LEGEND        = YES
1217
1218# If the DOT_CLEANUP tag is set to YES (the default) Doxygen will
1219# remove the intermediate dot files that are used to generate
1220# the various graphs.
1221
1222DOT_CLEANUP            = YES
1223
1224#---------------------------------------------------------------------------
1225# Configuration::additions related to the search engine
1226#---------------------------------------------------------------------------
1227
1228# The SEARCHENGINE tag specifies whether or not a search engine should be
1229# used. If set to NO the values of all tags below this one will be ignored.
1230
1231SEARCHENGINE           = NO
1232