Difference between revisions of "Libfov"
Jump to navigation
Jump to search
(Added link to sourceforge site.) |
|||
Line 1: | Line 1: | ||
See the [http://libfov.sourceforge.net/wiki/ libfov wiki] for all your libfov documentation and support. | |||
http:// | |||
== Bugs == | |||
== | |||
in order to be able to "#include <fov/fov.h>" and compile as a c program rather then a c++ one, you need to add the following lines before including fov.h: | in order to be able to "#include <fov/fov.h>" and compile as a c program rather then a c++ one, you need to add the following lines before including fov.h: | ||
Revision as of 23:00, 3 September 2007
See the libfov wiki for all your libfov documentation and support.
Bugs
in order to be able to "#include <fov/fov.h>" and compile as a c program rather then a c++ one, you need to add the following lines before including fov.h:
#define bool int #include <math.h>
For instance:
#define bool int #include <math.h> #include <fov/fov.h> int main(){ /*do stuff*/ return 0; }
--this page needs to be expanded!