From cb3716ffb584fe0f593b6f1669a8efdba1305104 Mon Sep 17 00:00:00 2001 From: David Walter Seikel Date: Tue, 29 Mar 2016 02:16:55 +1000 Subject: Added my version of libg3d and friends. --- .../mimesh/libg3d-0.0.8/doc/api/xml/types.xml | 92 ++++++++++++++++++++++ 1 file changed, 92 insertions(+) create mode 100644 src/others/mimesh/libg3d-0.0.8/doc/api/xml/types.xml (limited to 'src/others/mimesh/libg3d-0.0.8/doc/api/xml/types.xml') diff --git a/src/others/mimesh/libg3d-0.0.8/doc/api/xml/types.xml b/src/others/mimesh/libg3d-0.0.8/doc/api/xml/types.xml new file mode 100644 index 0000000..c12d48b --- /dev/null +++ b/src/others/mimesh/libg3d-0.0.8/doc/api/xml/types.xml @@ -0,0 +1,92 @@ + + + + +types +3 +LIBG3D Library + + + +types +Basic types + + + + +Synopsis + + + +#include <g3d/types.h> + +typedef G3DSingle; +typedef G3DDouble; +typedef G3DFloat; +#define G3D_FLOAT_IS_DOUBLE + + + + + + + + + + + + +Description + +Some basic type abstractions used in libg3d. + + + + + + +Details + +G3DSingle +G3DSingletypedef gfloat G3DSingle; + + +Single-precision floating point number. + + + + +G3DDouble +G3DDoubletypedef gdouble G3DDouble; + + +Double-precision floating point number. + + + + +G3DFloat +G3DFloat +Default floating point type. If used consistently in the library (not the +case at the moment) this type can be switched between single and double +precision at compile-time. + + + + +G3D_FLOAT_IS_DOUBLE +G3D_FLOAT_IS_DOUBLE#define G3D_FLOAT_IS_DOUBLE + +A flag indicating type of G3DFloat. It is TRUE if G3DFloat is double and +FALSE if G3DFloat is single precision. + + + + + + + + + + -- cgit v1.1