aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/src/others/mimesh/libg3d-0.0.8/doc/api/html/libg3d-types.html
diff options
context:
space:
mode:
Diffstat (limited to 'src/others/mimesh/libg3d-0.0.8/doc/api/html/libg3d-types.html')
-rw-r--r--src/others/mimesh/libg3d-0.0.8/doc/api/html/libg3d-types.html109
1 files changed, 109 insertions, 0 deletions
diff --git a/src/others/mimesh/libg3d-0.0.8/doc/api/html/libg3d-types.html b/src/others/mimesh/libg3d-0.0.8/doc/api/html/libg3d-types.html
new file mode 100644
index 0000000..b7f076d
--- /dev/null
+++ b/src/others/mimesh/libg3d-0.0.8/doc/api/html/libg3d-types.html
@@ -0,0 +1,109 @@
1<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
2<html>
3<head>
4<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
5<title>types</title>
6<meta name="generator" content="DocBook XSL Stylesheets V1.73.2">
7<link rel="start" href="index.html" title="libg3d Reference Manual">
8<link rel="up" href="ch01.html" title="Application interface">
9<link rel="prev" href="ch01.html" title="Application interface">
10<link rel="next" href="libg3d-context.html" title="context">
11<meta name="generator" content="GTK-Doc V1.10 (XML mode)">
12<link rel="stylesheet" href="style.css" type="text/css">
13<link rel="chapter" href="ch01.html" title="Application interface">
14<link rel="chapter" href="ch02.html" title="Plugin interface">
15</head>
16<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
17<table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2">
18<tr valign="middle">
19<td><a accesskey="p" href="ch01.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
20<td><a accesskey="u" href="ch01.html"><img src="up.png" width="24" height="24" border="0" alt="Up"></a></td>
21<td><a accesskey="h" href="index.html"><img src="home.png" width="24" height="24" border="0" alt="Home"></a></td>
22<th width="100%" align="center">libg3d Reference Manual</th>
23<td><a accesskey="n" href="libg3d-context.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td>
24</tr>
25<tr><td colspan="5" class="shortcuts"><nobr><a href="#libg3d-types.synopsis" class="shortcut">Top</a>
26  | 
27 <a href="#libg3d-types.description" class="shortcut">Description</a></nobr></td></tr>
28</table>
29<div class="refentry" lang="en">
30<a name="libg3d-types"></a><div class="titlepage"></div>
31<div class="refnamediv"><table width="100%"><tr>
32<td valign="top">
33<h2><span class="refentrytitle"><a name="libg3d-types.top_of_page"></a>types</span></h2>
34<p>types — Basic types</p>
35</td>
36<td valign="top" align="right"></td>
37</tr></table></div>
38<div class="refsynopsisdiv">
39<a name="libg3d-types.synopsis"></a><h2>Synopsis</h2>
40<pre class="synopsis">
41
42#include &lt;g3d/types.h&gt;
43
44typedef <a class="link" href="libg3d-types.html#G3DSingle" title="G3DSingle">G3DSingle</a>;
45typedef <a class="link" href="libg3d-types.html#G3DDouble" title="G3DDouble">G3DDouble</a>;
46typedef <a class="link" href="libg3d-types.html#G3DFloat" title="G3DFloat">G3DFloat</a>;
47#define <a class="link" href="libg3d-types.html#G3D-FLOAT-IS-DOUBLE:CAPS" title="G3D_FLOAT_IS_DOUBLE">G3D_FLOAT_IS_DOUBLE</a>
48</pre>
49</div>
50<div class="refsect1" lang="en">
51<a name="libg3d-types.description"></a><h2>Description</h2>
52<p>
53Some basic type abstractions used in libg3d.</p>
54<p>
55
56</p>
57</div>
58<div class="refsect1" lang="en">
59<a name="libg3d-types.details"></a><h2>Details</h2>
60<div class="refsect2" lang="en">
61<a name="G3DSingle"></a><h3>G3DSingle</h3>
62<pre class="programlisting">typedef gfloat G3DSingle;
63</pre>
64<p>
65Single-precision floating point number.</p>
66<p>
67
68</p>
69</div>
70<hr>
71<div class="refsect2" lang="en">
72<a name="G3DDouble"></a><h3>G3DDouble</h3>
73<pre class="programlisting">typedef gdouble G3DDouble;
74</pre>
75<p>
76Double-precision floating point number.</p>
77<p>
78
79</p>
80</div>
81<hr>
82<div class="refsect2" lang="en">
83<a name="G3DFloat"></a><h3>G3DFloat</h3>
84<p>
85Default floating point type. If used consistently in the library (not the
86case at the moment) this type can be switched between single and double
87precision at compile-time.</p>
88<p>
89
90</p>
91</div>
92<hr>
93<div class="refsect2" lang="en">
94<a name="G3D-FLOAT-IS-DOUBLE:CAPS"></a><h3>G3D_FLOAT_IS_DOUBLE</h3>
95<pre class="programlisting">#define G3D_FLOAT_IS_DOUBLE</pre>
96<p>
97A flag indicating type of <a class="link" href="libg3d-types.html#G3DFloat" title="G3DFloat"><span class="type">G3DFloat</span></a>. It is TRUE if <a class="link" href="libg3d-types.html#G3DFloat" title="G3DFloat"><span class="type">G3DFloat</span></a> is double and
98FALSE if <a class="link" href="libg3d-types.html#G3DFloat" title="G3DFloat"><span class="type">G3DFloat</span></a> is single precision.</p>
99<p>
100
101</p>
102</div>
103</div>
104</div>
105<div class="footer">
106<hr>
107 Generated by GTK-Doc V1.10</div>
108</body>
109</html>