mirror of
https://github.com/OpenSpace/OpenSpace.git
synced 2026-01-06 03:29:44 -06:00
Doxygen style overhaul (#2954)
Reformatting the existing Doxygen comments to be unified
This commit is contained in:
@@ -66,7 +66,7 @@ struct CameraKeyframe {
|
||||
|
||||
double _timestamp = 0.0;
|
||||
|
||||
void serialize(std::vector<char> &buffer) const {
|
||||
void serialize(std::vector<char>& buffer) const {
|
||||
// Add position
|
||||
buffer.insert(
|
||||
buffer.end(),
|
||||
|
||||
@@ -30,25 +30,27 @@
|
||||
namespace openspace::datamessagestructures {
|
||||
|
||||
/**
|
||||
* Method that creates a CameraKeyframe object and populates
|
||||
* it with the current properties of the camera from the navigation handler.
|
||||
* \returns CameraKeyframe with current state from NavigationHandler
|
||||
* Method that creates a CameraKeyframe object and populates it with the current
|
||||
* properties of the camera from the navigation handler.
|
||||
*
|
||||
* \return CameraKeyframe with current state from NavigationHandler
|
||||
*/
|
||||
CameraKeyframe generateCameraKeyframe();
|
||||
|
||||
/**
|
||||
* Method that creates a TimeKeyframe object and populates
|
||||
* it with the current time values from the application time manager.
|
||||
* \returns TimeKeyframe The time keyframe
|
||||
* Method that creates a TimeKeyframe object and populates it with the current time values
|
||||
* from the application time manager.
|
||||
*
|
||||
* \return TimeKeyframe The time keyframe
|
||||
*/
|
||||
TimeKeyframe generateTimeKeyframe();
|
||||
|
||||
/**
|
||||
* Method that creates a ScriptMessage object from a given script
|
||||
* string, and populates the ScriptMessage with the script and timestamp
|
||||
* of the current application time.
|
||||
* Method that creates a ScriptMessage object from a given script string, and populates
|
||||
* the ScriptMessage with the script and timestamp of the current application time.
|
||||
*
|
||||
* \param script The script to execute in std::string form
|
||||
* \returns ScriptMessage The ScriptMessage data structure with script
|
||||
* \return ScriptMessage The ScriptMessage data structure with script
|
||||
*/
|
||||
ScriptMessage generateScriptMessage(std::string script);
|
||||
|
||||
|
||||
@@ -66,9 +66,9 @@ public:
|
||||
double latencyStandardDeviation() const;
|
||||
|
||||
/**
|
||||
* Returns the Lua library that contains all Lua functions available to affect the
|
||||
* remote OS parallel connection.
|
||||
*/
|
||||
* Returns the Lua library that contains all Lua functions available to affect the
|
||||
* remote OS parallel connection.
|
||||
*/
|
||||
static scripting::LuaLibrary luaLibrary();
|
||||
ParallelConnection::Status status();
|
||||
int nConnections();
|
||||
|
||||
Reference in New Issue
Block a user