You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- More minor documentation fixes.
- Implemented some improvements for file path handling on Windows systems to improve robustness.
- Added *= and /= operators for `helios::vec2`, `helios::vec3` and `helios::vec4` vector types.
- Fixed 'haloing' around text.
- Efficiency of changing the visualization type was improved (e.g., via `Visualizer::colorContextPrimitivesByData()` or `Visualizer::colorContextObjectsByData()`), whereby only the color data is changed rather than rebuilding the entire geometry.
- Added `Visualizer::deleteGeometry()` method to delete a geometric element based on its ID.
- The visualizer window can now be freely resized with arbitrary aspect ratio, including making the visualizer window full screen.
- Console now auto-scrolls to the bottom when new text is added.
- Disabled keyboard controls so that rotating the view via keyboard does not conflict.
- There was an unhandled error when the combination of `leaves_per_petiole` and `leaflet_offset` are too large such that there is no more space along the petiole to place leaflets. There was a similar issue with flowers for the parameters `flowers_per_peduncle` and `flower_offset`, potentially resulting in too many flowers per peduncle.
- Fixed a minor issue where the max leaf age was not properly enforced when the plant hits its maximum age and stops growing.
- Changed how the camera image post-processing pipeline works. It now applies global histogram equalization, followed by an optional saturation, brightness, and contrast adjustment.
- Added documentation page.
- Added optional output primitive data to write stomatal conductance model parameters to primitive data.
Co-authored by: Sean Banks <smbanx@users.noreply.github.com>
2252
-
2253
2247
# [1.3.34] 2025-06-15
2254
2248
2255
2249
- Added .clang-format file for consistent code formatting across IDEs and agents.
@@ -2401,4 +2395,35 @@ Co-authored by: Sean Banks <smbanx@users.noreply.github.com>
2401
2395
- Added self-test to check `plantID` assignment.
2402
2396
2403
2397
## Radiation, Energy Balance, LiDAR, Aerial LiDAR
2404
-
- CMake now uses consistent c++ standard for CUDA code based on the standard used for regular c++ code. It also now explicitly sets the c++ standard for Windows CUDA code.
2398
+
- CMake now uses consistent c++ standard for CUDA code based on the standard used for regular c++ code. It also now explicitly sets the c++ standard for Windows CUDA code.
2399
+
2400
+
# [1.3.39] 2025-07-09
2401
+
2402
+
- More minor documentation fixes.
2403
+
2404
+
## Context
2405
+
- Implemented some improvements for file path handling on Windows systems to improve robustness.
2406
+
- Added *= and /= operators for `helios::vec2`, `helios::vec3` and `helios::vec4` vector types.
2407
+
2408
+
## Visualizer
2409
+
- Fixed 'haloing' around text.
2410
+
- Efficiency of changing the visualization type was improved (e.g., via `Visualizer::colorContextPrimitivesByData()` or `Visualizer::colorContextObjectsByData()`), whereby only the color data is changed rather than rebuilding the entire geometry.
2411
+
- Added `Visualizer::deleteGeometry()` method to delete a geometric element based on its ID.
2412
+
- The visualizer window can now be freely resized with arbitrary aspect ratio, including making the visualizer window full screen.
2413
+
2414
+
## Project Builder
2415
+
- Console now auto-scrolls to the bottom when new text is added.
2416
+
- Disabled keyboard controls so that rotating the view via keyboard does not conflict.
2417
+
2418
+
## Plant Architecture
2419
+
- There was an unhandled error when the combination of `leaves_per_petiole` and `leaflet_offset` are too large such that there is no more space along the petiole to place leaflets. There was a similar issue with flowers for the parameters `flowers_per_peduncle` and `flower_offset`, potentially resulting in too many flowers per peduncle.
2420
+
- Fixed a minor issue where the max leaf age was not properly enforced when the plant hits its maximum age and stops growing.
2421
+
2422
+
## Radiation
2423
+
- Changed how the camera image post-processing pipeline works. It now applies global histogram equalization, followed by an optional saturation, brightness, and contrast adjustment.
2424
+
2425
+
## Leaf Optics
2426
+
- Added documentation page.
2427
+
2428
+
## Stomatal Conductance
2429
+
- Added optional output primitive data to write stomatal conductance model parameters to primitive data.
0 commit comments