Cleanup of mostly asset files

- Fixes for all files
 - constexpr cleanup
 - Cosmetic changes
 - Remove punctuation from the end of messages
This commit is contained in:
Alexander Bock
2022-07-28 17:21:59 +02:00
parent 0494343a58
commit 163ac4dcef
928 changed files with 2834 additions and 2858 deletions

View File

@@ -48,14 +48,14 @@ namespace {
"StartTime",
"Start Time",
"The start time for the range of this trajectory. The date must be in ISO 8601 "
"format: YYYY MM DD HH:mm:ss.xxx."
"format: YYYY MM DD HH:mm:ss.xxx"
};
constexpr openspace::properties::Property::PropertyInfo EndTimeInfo = {
"EndTime",
"End Time",
"The end time for the range of this trajectory. The date must be in ISO 8601 "
"format: YYYY MM DD HH:mm:ss.xxx."
"format: YYYY MM DD HH:mm:ss.xxx"
};
constexpr openspace::properties::Property::PropertyInfo SampleIntervalInfo = {
@@ -64,7 +64,7 @@ namespace {
"The interval between samples of the trajectory. This value (together with "
"'TimeStampSubsampleFactor') determines how far apart (in time) the samples are "
"spaced along the trajectory. The time interval between 'StartTime' and "
"'EndTime' is split into 'SampleInterval' * 'TimeStampSubsampleFactor' segments."
"'EndTime' is split into 'SampleInterval' * 'TimeStampSubsampleFactor' segments"
};
constexpr openspace::properties::Property::PropertyInfo TimeSubSampleInfo = {
@@ -73,14 +73,14 @@ namespace {
"The factor that is used to create subsamples along the trajectory. This value "
"(together with 'SampleInterval') determines how far apart (in time) the samples "
"are spaced along the trajectory. The time interval between 'StartTime' and "
"'EndTime' is split into 'SampleInterval' * 'TimeStampSubsampleFactor' segments."
"'EndTime' is split into 'SampleInterval' * 'TimeStampSubsampleFactor' segments"
};
constexpr openspace::properties::Property::PropertyInfo RenderFullPathInfo = {
"ShowFullTrail",
"Render Full Trail",
"If this value is set to 'true', the entire trail will be rendered; if it is "
"'false', only the trail until the current time in the application will be shown."
"'false', only the trail until the current time in the application will be shown"
};
struct [[codegen::Dictionary(RenderableTrailTrajectory)]] Parameters {