From bab0824608498d1079d4e9522f3014d3d538aabe Mon Sep 17 00:00:00 2001 From: Tomasz Kramkowski Date: Fri, 27 Apr 2018 20:56:00 +0100 Subject: Implement basic model loading of FMD format. The FMD (Faqe Model Data) format is a format designed for faqe. It stores vertex, element and material information and mesh information. This patch provides the basic implementation and use of this format. This patch also implements perspective projection, depth testing and view and model matrices. An example fmd file is provided. --- ieee754.h | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 ieee754.h (limited to 'ieee754.h') diff --git a/ieee754.h b/ieee754.h new file mode 100644 index 0000000..58f886d --- /dev/null +++ b/ieee754.h @@ -0,0 +1,6 @@ +#ifndef IEEE754_H +#define IEEE754_H + +float ieee754f(unsigned long l); + +#endif // IEEE754_H -- cgit v1.2.3-54-g00ecf