2020-06-28 23:07:29 +08:00
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2022-09-08 08:17:03 +08:00
< html xmlns = "http://www.w3.org/1999/xhtml" lang = "en-US" >
2020-06-28 23:07:29 +08:00
< head >
< meta http-equiv = "Content-Type" content = "text/xhtml;charset=UTF-8" / >
2021-10-26 03:34:27 +08:00
< meta http-equiv = "X-UA-Compatible" content = "IE=11" / >
2023-01-21 05:44:50 +08:00
< meta name = "generator" content = "Doxygen 1.9.6" / >
2020-06-28 23:07:29 +08:00
< meta name = "viewport" content = "width=device-width, initial-scale=1" / >
< title > Algorithms_in_C: Data Fields< / title >
< link href = "tabs.css" rel = "stylesheet" type = "text/css" / >
< script type = "text/javascript" src = "jquery.js" > < / script >
< script type = "text/javascript" src = "dynsections.js" > < / script >
< link href = "navtree.css" rel = "stylesheet" type = "text/css" / >
< script type = "text/javascript" src = "resize.js" > < / script >
< script type = "text/javascript" src = "navtreedata.js" > < / script >
< script type = "text/javascript" src = "navtree.js" > < / script >
< link href = "search/search.css" rel = "stylesheet" type = "text/css" / >
< script type = "text/javascript" src = "search/searchdata.js" > < / script >
< script type = "text/javascript" src = "search/search.js" > < / script >
< script type = "text/x-mathjax-config" >
2021-10-26 03:34:27 +08:00
MathJax.Hub.Config({
extensions: ["tex2jax.js", "TeX/AMSmath.js", "TeX/AMSsymbols.js"],
jax: ["input/TeX","output/HTML-CSS"],
2020-06-28 23:07:29 +08:00
});
< / script >
< script type = "text/javascript" async = "async" src = "https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.7/MathJax.js?config=TeX-MML-AM_CHTML/MathJax.js" > < / script >
< link href = "doxygen.css" rel = "stylesheet" type = "text/css" / >
< / head >
< body >
< div id = "top" > <!-- do not remove this div, it is closed by doxygen! -->
< div id = "titlearea" >
< table cellspacing = "0" cellpadding = "0" >
< tbody >
2022-01-15 04:11:27 +08:00
< tr id = "projectrow" >
< td id = "projectalign" >
2021-10-26 03:34:27 +08:00
< div id = "projectname" > Algorithms_in_C< span id = "projectnumber" >   1.0.0< / span >
2020-06-28 23:07:29 +08:00
< / div >
< div id = "projectbrief" > Set of algorithms implemented in C.< / div >
< / td >
< / tr >
< / tbody >
< / table >
< / div >
<!-- end header part -->
2023-01-21 05:44:50 +08:00
<!-- Generated by Doxygen 1.9.6 -->
2020-06-28 23:07:29 +08:00
< script type = "text/javascript" >
2021-10-26 03:34:27 +08:00
/* @license magnet:?xt=urn:btih:d3d9a9a6595521f9666a5e94cc830dab83b65699& dn=expat.txt MIT */
2022-09-08 08:17:03 +08:00
var searchBox = new SearchBox("searchBox", "search/",'.html');
2020-06-28 23:07:29 +08:00
/* @license-end */
< / script >
< script type = "text/javascript" src = "menudata.js" > < / script >
< script type = "text/javascript" src = "menu.js" > < / script >
< script type = "text/javascript" >
2021-10-26 03:34:27 +08:00
/* @license magnet:?xt=urn:btih:d3d9a9a6595521f9666a5e94cc830dab83b65699& dn=expat.txt MIT */
2020-06-28 23:07:29 +08:00
$(function() {
initMenu('',true,false,'search.php','Search');
$(document).ready(function() { init_search(); });
});
2021-10-26 03:34:27 +08:00
/* @license-end */
< / script >
2020-06-28 23:07:29 +08:00
< div id = "main-nav" > < / div >
< / div > <!-- top -->
< div id = "side-nav" class = "ui-resizable side-nav-resizable" >
< div id = "nav-tree" >
< div id = "nav-tree-contents" >
< div id = "nav-sync" class = "sync" > < / div >
< / div >
< / div >
< div id = "splitbar" style = "-moz-user-select:none;"
class="ui-resizable-handle">
< / div >
< / div >
< script type = "text/javascript" >
2021-10-26 03:34:27 +08:00
/* @license magnet:?xt=urn:btih:d3d9a9a6595521f9666a5e94cc830dab83b65699& dn=expat.txt MIT */
2020-06-28 23:07:29 +08:00
$(document).ready(function(){initNavTree('functions.html',''); initResizable(); });
/* @license-end */
< / script >
< div id = "doc-content" >
<!-- window showing the filter options -->
< div id = "MSearchSelectWindow"
onmouseover="return searchBox.OnSearchSelectShow()"
onmouseout="return searchBox.OnSearchSelectHide()"
onkeydown="return searchBox.OnSearchSelectKey(event)">
< / div >
<!-- iframe showing the search results (closed by default) -->
< div id = "MSearchResultsWindow" >
2022-09-08 08:17:03 +08:00
< div id = "MSearchResults" >
< div class = "SRPage" >
< div id = "SRIndex" >
< div id = "SRResults" > < / div >
< div class = "SRStatus" id = "Loading" > Loading...< / div >
< div class = "SRStatus" id = "Searching" > Searching...< / div >
< div class = "SRStatus" id = "NoMatches" > No Matches< / div >
< / div >
< / div >
< / div >
2020-06-28 23:07:29 +08:00
< / div >
< div class = "contents" >
2020-08-27 03:28:38 +08:00
< div class = "textblock" > Here is a list of all documented struct and union fields with links to the struct/union documentation for each field:< / div >
2021-10-26 03:34:27 +08:00
< h3 > < a id = "index_a" name = "index_a" > < / a > - a -< / h3 > < ul >
< li > a  :  < a class = "el" href = "dc/d18/structsudoku.html#a507f788b793d4d3d6f6a70415be84ded" > sudoku< / a > < / li >
2022-11-18 02:24:50 +08:00
< li > AT  :  < a class = "el" href = "d5/da1/structnode.html#a5507c3c76ddbda9c482749f3a8a8f0cc" > node< / a > < / li >
2020-08-27 03:28:38 +08:00
< / ul >
2021-10-26 03:34:27 +08:00
< h3 > < a id = "index_b" name = "index_b" > < / a > - b -< / h3 > < ul >
< li > bank  :  < a class = "el" href = "d2/de8/structeuler__.html#a34941b75b9bb747cd68d28315fa9691a" > euler_< / a > < / li >
2022-11-18 02:24:50 +08:00
< li > BT  :  < a class = "el" href = "d5/da1/structnode.html#ac0a6453f996d4c362c015fd4348ecc6e" > node< / a > < / li >
2021-10-26 03:34:27 +08:00
< li > bytes  :  < a class = "el" href = "d4/d73/struct_m_e_m_o_r_y___i_n_f_o_r_m_a_t_i_o_n.html#a7f42967fd6562d77ac03445ea6e36a3d" > MEMORY_INFORMATION< / a > < / li >
2020-08-27 03:28:38 +08:00
< / ul >
2021-10-26 03:34:27 +08:00
< h3 > < a id = "index_c" name = "index_c" > < / a > - c -< / h3 > < ul >
< li > coef  :  < a class = "el" href = "df/d86/structterm.html#a5a730814391f70179da78c657e6e6f7b" > term< / a > < / li >
< li > combine  :  < a class = "el" href = "dd/d06/structsegment__tree.html#a973ab017a97678fdc6774543585897df" > segment_tree< / a > < / li >
2022-11-09 05:23:55 +08:00
< li > contents  :  < a class = "el" href = "d4/d06/struct_vector.html#afd870750f3874ee097833fc8a1dc809e" > Vector< / a > < / li >
2021-10-26 03:34:27 +08:00
< li > count  :  < a class = "el" href = "d1/d99/structcluster.html#aaacf0562ee2d9e8866c66ddaa6527c2b" > cluster< / a > < / li >
2022-11-18 02:24:50 +08:00
< li > CT  :  < a class = "el" href = "d5/da1/structnode.html#aece40a25d30d3e0d2135007642b64882" > node< / a > < / li >
2022-11-09 05:23:55 +08:00
< li > current  :  < a class = "el" href = "d4/d06/struct_vector.html#a8cb577f14bea1a6c1fbf85717b3ee4f9" > Vector< / a > < / li >
2020-08-27 03:28:38 +08:00
< / ul >
2021-10-26 03:34:27 +08:00
< h3 > < a id = "index_d" name = "index_d" > < / a > - d -< / h3 > < ul >
< li > data  :  < a class = "el" href = "d8/db8/structkohonen__array__3d.html#ad546baa2e81c6196d5f1dc0fe2e5bd59" > kohonen_array_3d< / a > , < a class = "el" href = "d5/da1/structnode.html#a2d890bb9f6af0ffd73fe79b21124c2a2" > node< / a > , < a class = "el" href = "db/d8b/struct_node.html#a87c003c9f600e3fc58e6e90835f0b605" > Node< / a > < / li >
< li > digits  :  < a class = "el" href = "d3/d5a/struct__large__num.html#afaf353a072cf050ac86ac6e39868bcc9" > _large_num< / a > < / li >
< li > dim1  :  < a class = "el" href = "d8/db8/structkohonen__array__3d.html#a16720581653fa9a34d1029e7229a7377" > kohonen_array_3d< / a > < / li >
< li > dim2  :  < a class = "el" href = "d8/db8/structkohonen__array__3d.html#a888d7e007b38c91c7933e12a9566af1d" > kohonen_array_3d< / a > < / li >
< li > dim3  :  < a class = "el" href = "d8/db8/structkohonen__array__3d.html#a160f14830bdfbbf9f422f382ee754dbf" > kohonen_array_3d< / a > < / li >
< li > dual  :  < a class = "el" href = "d7/dfd/structdual__quat__.html#a1b05fbc4135e4f9b731423f26527543d" > dual_quat_< / a > , < a class = "el" href = "de/d58/structquaternion__.html#a596abbab688731119c1f23b26a7ac17a" > quaternion_< / a > < / li >
2020-08-27 03:28:38 +08:00
< / ul >
2021-10-26 03:34:27 +08:00
< h3 > < a id = "index_e" name = "index_e" > < / a > - e -< / h3 > < ul >
< li > elem_size  :  < a class = "el" href = "dd/d06/structsegment__tree.html#aa9dc376b5b219c4cec6546483527b853" > segment_tree< / a > < / li >
< li > elevation  :  < a class = "el" href = "d2/de8/structeuler__.html#abbbf12f0a960faf783d219f9012cdce6" > euler_< / a > < / li >
< li > end  :  < a class = "el" href = "d9/dd7/struct__cantor__set.html#acfc25ab716a3c79be8a5a4cab94e8def" > _cantor_set< / a > < / li >
< li > eta  :  < a class = "el" href = "d2/daa/structadaline.html#a85dbd7cce6195d11ebb388220b96bde2" > adaline< / a > < / li >
2020-08-27 03:28:38 +08:00
< / ul >
2021-10-26 03:34:27 +08:00
< h3 > < a id = "index_f" name = "index_f" > < / a > - f -< / h3 > < ul >
< li > fileName  :  < a class = "el" href = "d4/d73/struct_m_e_m_o_r_y___i_n_f_o_r_m_a_t_i_o_n.html#a934ad84d159c35b24ff54f7eceb1c6be" > MEMORY_INFORMATION< / a > < / li >
< li > frequency  :  < a class = "el" href = "db/d8b/struct_node.html#abe1c200da58f5276c6fd74f640a29a02" > Node< / a > < / li >
< li > functionName  :  < a class = "el" href = "d4/d73/struct_m_e_m_o_r_y___i_n_f_o_r_m_a_t_i_o_n.html#a1f13725b3de5ca6ab99b238b712cb417" > MEMORY_INFORMATION< / a > < / li >
2021-02-18 06:41:16 +08:00
< / ul >
2021-10-26 03:34:27 +08:00
< h3 > < a id = "index_g" name = "index_g" > < / a > - g -< / h3 > < ul >
< li > group  :  < a class = "el" href = "d1/d5e/structobservation.html#a2db8ace685c08aa7b52f5a28b0843aab" > observation< / a > < / li >
2020-08-27 03:28:38 +08:00
< / ul >
2021-10-26 03:34:27 +08:00
< h3 > < a id = "index_h" name = "index_h" > < / a > - h -< / h3 > < ul >
< li > heading  :  < a class = "el" href = "d2/de8/structeuler__.html#a899572e1b6a43387128de3a402a0a5f8" > euler_< / a > < / li >
2020-08-27 03:28:38 +08:00
< / ul >
2021-10-26 03:34:27 +08:00
< h3 > < a id = "index_i" name = "index_i" > < / a > - i -< / h3 > < ul >
2022-11-18 02:24:50 +08:00
< li > ID  :  < a class = "el" href = "d5/da1/structnode.html#ac0c8b57ac0a76d72588561c81481c454" > node< / a > < / li >
2021-10-26 03:34:27 +08:00
< li > identity  :  < a class = "el" href = "dd/d06/structsegment__tree.html#a5373ee53a5ac1cd7a9dcb89a4c23a04a" > segment_tree< / a > < / li >
2020-09-10 00:54:50 +08:00
< / ul >
2021-10-26 03:34:27 +08:00
< h3 > < a id = "index_l" name = "index_l" > < / a > - l -< / h3 > < ul >
< li > left  :  < a class = "el" href = "d5/da1/structnode.html#af7109e6ffd82cbbb705e486fd0ce92f0" > node< / a > , < a class = "el" href = "db/d8b/struct_node.html#ad0976834843c7618677d22a10c495b36" > Node< / a > < / li >
2022-11-09 05:23:55 +08:00
< li > len  :  < a class = "el" href = "d4/d06/struct_vector.html#a55870593ddea19c96770c2521b075059" > Vector< / a > < / li >
2021-10-26 03:34:27 +08:00
< li > length  :  < a class = "el" href = "dd/d06/structsegment__tree.html#a5ad61abcbd2c25a4a71416281dba8f1e" > segment_tree< / a > < / li >
< li > line  :  < a class = "el" href = "d4/d73/struct_m_e_m_o_r_y___i_n_f_o_r_m_a_t_i_o_n.html#a731603550d2238abb179f2b572f20d99" > MEMORY_INFORMATION< / a > < / li >
< li > llink  :  < a class = "el" href = "db/d8b/struct_node.html#a60b73f452505cef98795d2c8de3e72ef" > Node< / a > < / li >
2020-08-27 03:28:38 +08:00
< / ul >
2021-10-26 03:34:27 +08:00
< h3 > < a id = "index_n" name = "index_n" > < / a > - n -< / h3 > < ul >
< li > N  :  < a class = "el" href = "dc/d18/structsudoku.html#a160365012280c3e10f1b31e914e8f129" > sudoku< / a > < / li >
< li > N2  :  < a class = "el" href = "dc/d18/structsudoku.html#a0f01e2782e82306e6fab9a8578006f56" > sudoku< / a > < / li >
2022-11-18 02:24:50 +08:00
< li > next  :  < a class = "el" href = "d9/dd7/struct__cantor__set.html#a2f7f9f19125725d3e5673fdb4ac8cfb1" > _cantor_set< / a > , < a class = "el" href = "d4/d73/struct_m_e_m_o_r_y___i_n_f_o_r_m_a_t_i_o_n.html#aa296b903d0e2ac54acaa7c305bae8007" > MEMORY_INFORMATION< / a > , < a class = "el" href = "d5/da1/structnode.html#a111a569ab2765add9b91c9f94cf9f063" > node< / a > , < a class = "el" href = "df/d86/structterm.html#ab7ac49a58cc431c9838c855bf59a243a" > term< / a > < / li >
2021-10-26 03:34:27 +08:00
< li > next_digit  :  < a class = "el" href = "dc/d77/struct__big__int.html#a187538b984c86d7cfdb13e297e7f3564" > _big_int< / a > < / li >
< li > num_digits  :  < a class = "el" href = "d3/d5a/struct__large__num.html#a3fd11c0b413bbabfb8737d4ae73e5aa0" > _large_num< / a > < / li >
< li > num_weights  :  < a class = "el" href = "d2/daa/structadaline.html#a53314e737a0a5ff4552a03bcc9dafbc1" > adaline< / a > < / li >
2020-08-27 03:28:38 +08:00
< / ul >
2021-10-26 03:34:27 +08:00
< h3 > < a id = "index_p" name = "index_p" > < / a > - p -< / h3 > < ul >
< li > pitch  :  < a class = "el" href = "d2/de8/structeuler__.html#aa71f9aa6dfa32d8014b2d54ab8410e0b" > euler_< / a > < / li >
< li > pow  :  < a class = "el" href = "df/d86/structterm.html#a057f161d279d856d11786aa96fc87f74" > term< / a > < / li >
< li > prev  :  < a class = "el" href = "d8/d10/structlist.html#a2054c799f7580787a500df82d14ace25" > list< / a > < / li >
< li > prev_digit  :  < a class = "el" href = "dc/d77/struct__big__int.html#ad8405989a924410942b39ec0e9fef30b" > _big_int< / a > < / li >
< li > previous  :  < a class = "el" href = "d4/d73/struct_m_e_m_o_r_y___i_n_f_o_r_m_a_t_i_o_n.html#a1cec46413acf776e3ee2b0b9241490c3" > MEMORY_INFORMATION< / a > < / li >
2022-11-18 02:24:50 +08:00
< li > priority  :  < a class = "el" href = "d5/da1/structnode.html#a44e51013eb31fc1f17866ca9fe8ac75b" > node< / a > < / li >
2021-10-26 03:34:27 +08:00
< li > ptr  :  < a class = "el" href = "d4/d73/struct_m_e_m_o_r_y___i_n_f_o_r_m_a_t_i_o_n.html#a6b0971c1415de6e0123b8d0d0a626fde" > MEMORY_INFORMATION< / a > < / li >
2020-08-27 03:28:38 +08:00
< / ul >
2021-10-26 03:34:27 +08:00
< h3 > < a id = "index_q" name = "index_q" > < / a > - q -< / h3 > < ul >
< li > q0  :  < a class = "el" href = "de/d58/structquaternion__.html#a37819eb7d76c65c37a9c2a63f01f65b2" > quaternion_< / a > < / li >
2020-08-27 03:28:38 +08:00
< / ul >
2021-10-26 03:34:27 +08:00
< h3 > < a id = "index_r" name = "index_r" > < / a > - r -< / h3 > < ul >
< li > real  :  < a class = "el" href = "d7/dfd/structdual__quat__.html#ad663036ace6a586f90a2f89386f7731a" > dual_quat_< / a > < / li >
< li > right  :  < a class = "el" href = "d5/da1/structnode.html#a51e160f22dc6064bac4a4f9f1d931c2c" > node< / a > , < a class = "el" href = "db/d8b/struct_node.html#af99e7102380da88d7c079fa264230cf4" > Node< / a > < / li >
< li > rlink  :  < a class = "el" href = "db/d8b/struct_node.html#a0ed3c7305b43527f0f237bbfd438b8f7" > Node< / a > < / li >
< li > roll  :  < a class = "el" href = "d2/de8/structeuler__.html#a3f1b77e489be443a8d84a84082b8092e" > euler_< / a > < / li >
< li > root  :  < a class = "el" href = "dd/d06/structsegment__tree.html#aa18d7cb422873a807707b26448dce7cd" > segment_tree< / a > < / li >
< li > row1  :  < a class = "el" href = "d9/d8b/structmat__3x3__.html#ac74f33a2e1ad1f6db74d94807cf1f64e" > mat_3x3_< / a > < / li >
< li > row2  :  < a class = "el" href = "d9/d8b/structmat__3x3__.html#a8d7ae8fbcc408e3c30e9d64bbd28feaf" > mat_3x3_< / a > < / li >
< li > row3  :  < a class = "el" href = "d9/d8b/structmat__3x3__.html#a490bb6be52ea95b333b55b236af41563" > mat_3x3_< / a > < / li >
2020-08-27 03:28:38 +08:00
< / ul >
2021-10-26 03:34:27 +08:00
< h3 > < a id = "index_s" name = "index_s" > < / a > - s -< / h3 > < ul >
< li > stack  :  < a class = "el" href = "dd/d10/struct_stack.html#a856ca6f4a9ffde43f0cb3b43cb4d044d" > Stack< / a > < / li >
< li > start  :  < a class = "el" href = "d9/dd7/struct__cantor__set.html#abd2176c3cc3a1d85d15bbeaace35fa03" > _cantor_set< / a > < / li >
2020-08-27 03:28:38 +08:00
< / ul >
2021-10-26 03:34:27 +08:00
< h3 > < a id = "index_t" name = "index_t" > < / a > - t -< / h3 > < ul >
2022-11-18 02:24:50 +08:00
< li > TAT  :  < a class = "el" href = "d5/da1/structnode.html#abbe30696293849bebed90520b8cf7ba3" > node< / a > < / li >
2021-10-26 03:34:27 +08:00
< li > top  :  < a class = "el" href = "dd/d10/struct_stack.html#ad62fb36816185f3eef3a6f735a61f54a" > Stack< / a > < / li >
< li > tos  :  < a class = "el" href = "dd/d10/struct_stack.html#ac2dbef151bc913684a90b06836725ef9" > Stack< / a > < / li >
2021-02-11 13:15:05 +08:00
< / ul >
2021-10-26 03:34:27 +08:00
< h3 > < a id = "index_v" name = "index_v" > < / a > - v -< / h3 > < ul >
2023-03-03 23:16:25 +08:00
< li > value  :  < a class = "el" href = "dc/d77/struct__big__int.html#a273ee73fd755f2a99512cca5f0e09008" > _big_int< / a > , < a class = "el" href = "d8/d10/structlist.html#a5363bdc0495ab9ef0ed587c99b9a2b41" > list< / a > , < a class = "el" href = "d5/da1/structnode.html#a4df5127dc26bf42ff5d965d77823efb5" > node< / a > < / li >
2020-08-27 03:28:38 +08:00
< / ul >
2021-10-26 03:34:27 +08:00
< h3 > < a id = "index_w" name = "index_w" > < / a > - w -< / h3 > < ul >
< li > w  :  < a class = "el" href = "de/d58/structquaternion__.html#a835e2ba72517fbb29d0d4e3cb4c2914f" > quaternion_< / a > < / li >
< li > weights  :  < a class = "el" href = "d2/daa/structadaline.html#a32e58c03fd9258709eae6138ad0ec657" > adaline< / a > < / li >
< li > word  :  < a class = "el" href = "db/d8b/struct_node.html#afa6ccc6414d3e0bcacb715dcdf764bca" > Node< / a > < / li >
2022-11-18 02:24:50 +08:00
< li > WT  :  < a class = "el" href = "d5/da1/structnode.html#a878d22393f374f3861035e35b9edd653" > node< / a > < / li >
2020-08-27 03:28:38 +08:00
< / ul >
2021-10-26 03:34:27 +08:00
< h3 > < a id = "index_x" name = "index_x" > < / a > - x -< / h3 > < ul >
< li > x  :  < a class = "el" href = "d1/d99/structcluster.html#a13278ef636c1d9bd9ce8fad736f4c570" > cluster< / a > , < a class = "el" href = "d1/d5e/structobservation.html#a04f3dcfd59dd91353395e35c9831fade" > observation< / a > , < a class = "el" href = "d5/db4/structvec__3d__.html#a53462a5a195c9e16fb584f73fd66c3d0" > vec_3d_< / a > < / li >
2020-08-27 03:28:38 +08:00
< / ul >
2021-10-26 03:34:27 +08:00
< h3 > < a id = "index_y" name = "index_y" > < / a > - y -< / h3 > < ul >
< li > y  :  < a class = "el" href = "d1/d99/structcluster.html#a10fa7010c12d0f03a422d68321495479" > cluster< / a > , < a class = "el" href = "d1/d5e/structobservation.html#ab6be1fa7024b2d5f3a30d6c6b70efdd7" > observation< / a > , < a class = "el" href = "d5/db4/structvec__3d__.html#a76098d39a382838df3b4b48c3443413b" > vec_3d_< / a > < / li >
< li > yaw  :  < a class = "el" href = "d2/de8/structeuler__.html#aad52507cc423ec49847471f6f15dd9d7" > euler_< / a > < / li >
2020-08-27 03:28:38 +08:00
< / ul >
2021-10-26 03:34:27 +08:00
< h3 > < a id = "index_z" name = "index_z" > < / a > - z -< / h3 > < ul >
< li > z  :  < a class = "el" href = "d5/db4/structvec__3d__.html#a3339a40de7385fa55bee30be81c098c6" > vec_3d_< / a > < / li >
2020-06-28 23:07:29 +08:00
< / ul >
< / div > <!-- contents -->
< / div > <!-- doc - content -->
<!-- start footer part -->
< div id = "nav-path" class = "navpath" > <!-- id is needed for treeview function! -->
< ul >
2023-01-21 05:44:50 +08:00
< li class = "footer" > Generated by < a href = "https://www.doxygen.org/index.html" > < img class = "footer" src = "doxygen.svg" width = "104" height = "31" alt = "doxygen" / > < / a > 1.9.6 < / li >
2020-06-28 23:07:29 +08:00
< / ul >
< / div >
< / body >
< / html >