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
Copy file name to clipboardExpand all lines: docs/source/Vizard/VizardReleaseNotes.rst
+14-2Lines changed: 14 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -11,9 +11,21 @@ Release Notes
11
11
- Add the rate gyro visualization
12
12
- Alternate camera view points relative to non-spacecraft locations (lunar landing site, etc.)
13
13
- Add magnetic torque bar visualization
14
-
- Add range to target information
15
14
- Visualize aerobraking maneuvers
16
15
16
+
**Version 2.1.5 (June 28, 2023)**
17
+
18
+
- main camera range to target display (hot key = r, or toggle under Camera menu)
19
+
- very far zoom-out of main camera in spacecraft local view when the ``forceStartAtSpacecraftLocalView``
20
+
setting is set to 1
21
+
- depth map generation available on instrument camera - can only be turned on in ``CameraConfig`` message
22
+
- command line start of Vizard with file load (use argument ``-loadFile`` followed by the filepath)
23
+
- updated NetMQ plugins to be compatible with Basilisk ZMQ 3.5.0 libraries
24
+
- fixed the cause of the effectors appearing to fly-in at start-up
25
+
- support for nested toggles for effectors for all HUDS and devices under the Actuator and Devices menus
26
+
- Add the ability to visualize ground locations using a simple colored sphere. This allows 1000's of locations
27
+
to be visualized. This is set through the ``useSimpleLocationMarkers`` flag.
28
+
17
29
18
30
**Version 2.1.4 (March 24, 2023)**
19
31
@@ -50,7 +62,7 @@ Release Notes
50
62
51
63
**Version 2.1.3 (Jan. 20, 2023)**
52
64
53
-
- added support for Settings flag ``ForceStartAtSpacecraftLocalView``. If this flag is set to 1, the main camera will stay in the spacecraft local view and has been improved to allow zooming out to very large distances from the camera target spacecraft. Vizard will remain locked in spacecraft local view unless a non-spacecraft camera target is selected.
65
+
- added support for Settings flag ``forceStartAtSpacecraftLocalView``. If this flag is set to 1, the main camera will stay in the spacecraft local view and has been improved to allow zooming out to very large distances from the camera target spacecraft. Vizard will remain locked in spacecraft local view unless a non-spacecraft camera target is selected.
54
66
- added MultiSphere support to ``VizMessage.proto`` and support visualizing the MultiSpheres on a spacecraft.
Copy file name to clipboardExpand all lines: src/architecture/msgPayloadDefC/CameraConfigMsgPayload.h
+2Lines changed: 2 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -41,6 +41,8 @@ typedef struct {
41
41
doubleppFocalLength; //!< [m] (Optional) Valid setting range: 0.001m to 0.3m. Value of 0 to turn off this parameter entirely.
42
42
intppMaxBlurSize; //!< (Optional) Convolution kernel size of the bokeh filter, which determines the maximum radius of bokeh. It also affects the performance (the larger the kernel is, the longer the GPU time is required). Depth textures Value of 1 for Small, 2 for Medium, 3 for Large, 4 for Extra Large. Value of 0 to turn off this parameter entirely.
43
43
intupdateCameraParameters; //!< If true, commands camera to update Instrument Camera to current message's parameters
44
+
intrenderMode; //!< (Optional) Value of 0 to render visual image (default), value of 1 to render depth buffer to image
45
+
doubledepthMapClippingPlanes[2]; //!< (Optional) [m] Set the bounds of rendered depth map by setting the near and far clipping planes when in renderMode=1 (depthMap mode). Default values of 0.1 and 100.
0 commit comments