Difference between revisions of "Libfov"

From RogueBasin
Jump to navigation Jump to search
 
(6 intermediate revisions by 6 users not shown)
Line 1: Line 1:
See the [http://libfov.sourceforge.net/wiki/ libfov wiki] for all your libfov documentation and support.
{{library| name = libfov
|developer = blue.puyo
|released =
|updated = Sep 19, 2009 (1.0.4)
|dependencies =
|status =
|licensing = MIT License
|language = [[C]]
|platforms =
|site = http://code.google.com/p/libfov/
}}{{stub}}


== Bugs ==
Field of View library. See the [http://code.google.com/p/libfov/ libfov homepage] for all your libfov documentation, support, bugs, etc.
 
[[category:FOV]]
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:
 
<pre><nowiki>
#define bool int
#include <math.h>
</nowiki></pre>
For instance:
<pre><nowiki>
#define bool int
#include <math.h>
#include <fov/fov.h>
 
int
main(){
    /*do stuff*/
    return 0;
}
</nowiki></pre>
 
 
--this page needs to be expanded!

Latest revision as of 22:55, 9 March 2011

libfov
Library project
Developer blue.puyo
Released
Updated Sep 19, 2009 (1.0.4)
Status
Licensing MIT License
P. Language C
Platforms
Dependencies
Official site of libfov


Field of View library. See the libfov homepage for all your libfov documentation, support, bugs, etc.