Date: Thu Dec 30 21:03:13 2010 New Revision: 390 Modified: GtkRadiant/trunk/libs/mathlib.h GtkRadiant/trunk/libs/mathlib/mathlib.c GtkRadiant/trunk/tools/quake3/common/polylib.c Log: Undoing commits r363 and r371 as it pertains to polylib.c, mathlib.c, and mathlib.h (the regression tests have not been removed). Trunk is now restored to a state that it was in before I started trying to fix the math accuracy errors in q3map2. Commits r363 and r371 were "correct" and did improve math accuracy significantly, but unfortunately the underlying cause of math accuracy issues is something else, which is being addressed in branch Rambetter-math-fix-experiments currently. I'm taking the BSD approach here, which is "we not going to partially fix the problem. it's all or nothing". Otherwise it's just too risky in my opinion. I don't like playing Whack-A-Mole. Someday, we might merge Rambetter-math-fix-experiments branch to trunk. Sorry about all these needless commits to trunk. |
||
|---|---|---|
| contrib | ||
| docs | ||
| Doxygen_files | ||
| icons | ||
| include | ||
| libs | ||
| plugins | ||
| radiant | ||
| regression_tests/q3map2 | ||
| setup/data | ||
| tools | ||
| .gitattributes | ||
| .patchsets | ||
| branch-manager | ||
| ChangeLog | ||
| ChangeLog.idsoftware | ||
| COMPILING | ||
| conftest.cpp | ||
| CONTRIBUTORS | ||
| cross-Makefile.conf | ||
| download-gamepacks.sh | ||
| DoxyConfig | ||
| Doxyfile | ||
| gen.readme | ||
| gendox | ||
| generic_cpp.py | ||
| generic_h.py | ||
| generic_module.py | ||
| GPL | ||
| install-dlls.sh | ||
| install-dylibs.sh | ||
| install-gamepack.sh | ||
| install-gamepacks.sh | ||
| LGPL | ||
| LICENSE | ||
| Makefile | ||
| Makefile.conf | ||
| merge-from-zerowing.sh | ||
| mingw-Makefile.conf | ||
| mingw-Makefile.inc | ||
| README.doxygen | ||
| TODO | ||
Documentation for generating doxygen documentation
---------------------------------------------------------
1. Options for gendox
More up-to-date command line options are available via
the command ./gendox --help
usage: "sh gendox [ <target(s)> ] [ -o <output_dir> ]"
or "./gendox [ <target(s)> ] [ -o <output_dir> ]"
<target(s)>
The directory, or directories to generate the
documentation from.
-o
Specifies the output directory <output_dir> which
should follow the -o switch
-q --quiet
Stops the script from outputing status information,
other than errors.
-k --kill
Kills other running doxygen pids.
eg: ./gendox include/ -o ../Documentation
* This will produce documentation for the include files,
and output to the directory specified one level above the
current directory.
The target can be the current directory "./" in which case
doxygen will generate documentation for all subdirectories
of the current directory recursively.
The default output directory is currently ...
> ../GtkRadiant-doxygen
* If the script is called without any target directories
it will generate documentation for the core of radiant...
include/ libs/ radiant/ and plugins/
If there are specific options that you'd like to customise,
the DoxyConfig file is used to generate the file from which
doxygen gets its settings from. So any changes that need
to be made should be made to this file.
Gef :]
(gefdavis@dingoblue.net.au)
---------------------------------------------------------