Skip to content

Commit 3e4e868

Browse files
bnbailey-pslsmbanx
andcommitted
[1.3.26] 2025-01-17
*Context* - Definition of global PI_F variable in global.h was causing a build issue on some compilers *Visualizer* - Added mouse-based camera controls in the interactive visualizer. Credit to Sean Banks for this update. *Plant Architecture* - Added methods for querying bulk properties of a plant (total leaf count, stem height, plant height, leaf angle distribution) and write plant mesh vertices to file. Co-authored-by: Sean Banks <smbanx@gmail.com>
1 parent c1cb4c7 commit 3e4e868

File tree

859 files changed

+40802
-33887
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

859 files changed

+40802
-33887
lines changed

core/include/global.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,11 @@
2626
#define M_PI 3.14159265358979323846
2727
#endif
2828

29-
inline constexpr float PI_F = 3.14159265358979323846f;
30-
3129
#ifndef HELIOS_GLOBAL
3230
#define HELIOS_GLOBAL
3331

32+
constexpr float PI_F = 3.14159265358979323846f;
33+
3434
#include <cstdlib>
3535
#include <cstdio>
3636
#include <cstring>

doc/CHANGELOG

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2012,4 +2012,15 @@ The radiation model has been re-designed, with the following primary additions:
20122012
- All output messages were not being properly suppressed after calling disableOutputMessages().
20132013

20142014
*Canopy Generator*
2015-
- Many edits made regarding how parameters with random variation are handled, mainly to ensure proper constraints on values (e.g., always positive).
2015+
- Many edits made regarding how parameters with random variation are handled, mainly to ensure proper constraints on values (e.g., always positive).
2016+
2017+
[1.3.26] 2025-01-17
2018+
2019+
*Context*
2020+
- Definition of global PI_F variable in global.h was causing a build issue on some compilers
2021+
2022+
*Visualizer*
2023+
- Added mouse-based camera controls in the interactive visualizer. Credit to Sean Banks for this update.
2024+
2025+
*Plant Architecture*
2026+
- Added methods for querying bulk properties of a plant (total leaf count, stem height, plant height, leaf angle distribution) and write plant mesh vertices to file.

doc/UserGuide.dox

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! \mainpage Helios Documentation v1.3.25
1+
/*! \mainpage Helios Documentation v1.3.26
22

33
<p> <br> </p>
44

@@ -537,8 +537,8 @@ $ git pull
537537
Note that the above colors can be directly passed to \ref helios::make_RGBAcolor() "make_RGBAcolor" to specify an alpha (transparency) value:
538538

539539
~~~~~~{.cpp}
540-
RGBAcolor red_trans = make_RGBAcolor( RGB::red, 0.5 );
541-
~~~~~~
540+
RGBAcolor red_trans = make_RGBAcolor( RGB::red, 0.5 );
541+
~~~~~~
542542

543543
<!-- **************** COORDINATE SYSTEM ***************** -->
544544
\section Coord Coordinate System

doc/header.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
<tr id="projectrow">
4141
<td id="projectlogo"><img alt="Logo" src="Helios_logo_small.png"/></td>
4242
<td id="projectalign">
43-
<div id="projectname"><span id="projectnumber">&#160;v1.3.25</span>
43+
<div id="projectname"><span id="projectnumber">&#160;v1.3.26</span>
4444
</div>
4545
</td>
4646
</tr>

doc/html/_a_p_i.html

Lines changed: 170 additions & 88 deletions
Large diffs are not rendered by default.

doc/html/_aerial_li_d_a_r_8cpp.html

Lines changed: 18 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -38,30 +38,41 @@
3838
<tr id="projectrow">
3939
<td id="projectlogo"><img alt="Logo" src="Helios_logo_small.png"/></td>
4040
<td id="projectalign">
41-
<div id="projectname"><span id="projectnumber">&#160;v1.3.25</span>
41+
<div id="projectname"><span id="projectnumber">&#160;v1.3.26</span>
4242
</div>
4343
</td>
4444
</tr>
4545
</tbody>
4646
</table>
4747
</div>
48-
<!-- end header part --><!-- Generated by Doxygen 1.9.6 -->
48+
<!-- end header part -->
49+
<!-- Generated by Doxygen 1.12.0 -->
4950
<script type="text/javascript">
5051
/* @license magnet:?xt=urn:btih:d3d9a9a6595521f9666a5e94cc830dab83b65699&amp;dn=expat.txt MIT */
5152
var searchBox = new SearchBox("searchBox", "search/",'.html');
5253
/* @license-end */
5354
</script>
55+
<script type="text/javascript">
56+
/* @license magnet:?xt=urn:btih:d3d9a9a6595521f9666a5e94cc830dab83b65699&amp;dn=expat.txt MIT */
57+
$(function() { codefold.init(0); });
58+
/* @license-end */
59+
</script>
5460
<script type="text/javascript" src="menudata.js"></script>
5561
<script type="text/javascript" src="menu.js"></script>
5662
<script type="text/javascript">
5763
/* @license magnet:?xt=urn:btih:d3d9a9a6595521f9666a5e94cc830dab83b65699&amp;dn=expat.txt MIT */
5864
$(function() {
59-
initMenu('',true,false,'search.php','Search');
60-
$(document).ready(function() { init_search(); });
65+
initMenu('',true,false,'search.php','Search',false);
66+
$(function() { init_search(); });
6167
});
6268
/* @license-end */
6369
</script>
6470
<div id="main-nav"></div>
71+
<script type="text/javascript">
72+
/* @license magnet:?xt=urn:btih:d3d9a9a6595521f9666a5e94cc830dab83b65699&amp;dn=expat.txt MIT */
73+
$(function(){ initResizable(false); });
74+
/* @license-end */
75+
</script>
6576
<!-- window showing the filter options -->
6677
<div id="MSearchSelectWindow"
6778
onmouseover="return searchBox.OnSearchSelectShow()"
@@ -88,6 +99,7 @@
8899
<li class="navelem"><a class="el" href="dir_38c8d24aef3972a7f87b834274e76e31.html">plugins</a></li><li class="navelem"><a class="el" href="dir_311a8078924eda44cf0bc3884606fa36.html">aeriallidar</a></li><li class="navelem"><a class="el" href="dir_e8ed08f2d5f8ac3e3b5447bfe7f0fce5.html">src</a></li> </ul>
89100
</div>
90101
</div><!-- top -->
102+
<div id="doc-content">
91103
<div class="header">
92104
<div class="headertitle"><div class="title">AerialLiDAR.cpp File Reference</div></div>
93105
</div><!--header-->
@@ -105,7 +117,8 @@
105117
</div></div><!-- contents -->
106118
<!-- start footer part -->
107119
<hr class="footer"/><address class="footer"><small>
108-
Generated by&#160;<a href="https://www.doxygen.org/index.html"><img class="footer" src="doxygen.svg" width="104" height="31" alt="doxygen"/></a> 1.9.6
120+
Generated by&#160;<a href="https://www.doxygen.org/index.html"><img class="footer" src="doxygen.svg" width="104" height="31" alt="doxygen"/></a> 1.12.0
109121
</small></address>
122+
</div><!-- doc-content -->
110123
</body>
111124
</html>

0 commit comments

Comments
 (0)