Adding periods to the description texts

This commit is contained in:
Alexander Bock
2024-04-23 22:33:17 +02:00
parent c9fd9543e6
commit 78b3b4fb2e
156 changed files with 887 additions and 1194 deletions

View File

@@ -39,29 +39,28 @@ namespace {
constexpr openspace::properties::Property::PropertyInfo ColorInfo = {
"Color",
"Color",
"This value determines the color of the grid lines that are rendered",
// @VISIBILITY(1.17)
"This value determines the color of the grid lines that are rendered.",
openspace::properties::Property::Visibility::NoviceUser
};
constexpr openspace::properties::Property::PropertyInfo LineWidthInfo = {
"LineWidth",
"Line Width",
"This value specifies the line width of the spherical grid",
"This value specifies the line width of the spherical grid.",
openspace::properties::Property::Visibility::User
};
constexpr openspace::properties::Property::PropertyInfo SizeInfo = {
"Size",
"Grid Size",
"This value species the size of each dimensions of the box",
"This value species the size of each dimensions of the box.",
openspace::properties::Property::Visibility::AdvancedUser
};
const openspace::properties::PropertyOwner::PropertyOwnerInfo LabelsInfo = {
"Labels",
"Labels",
"The labels for the grid"
"The labels for the grid."
};
struct [[codegen::Dictionary(RenderableBoxGrid)]] Parameters {

View File

@@ -39,16 +39,14 @@ namespace {
constexpr openspace::properties::Property::PropertyInfo ColorInfo = {
"Color",
"Color",
"This value determines the color of the grid lines that are rendered",
// @VISIBILITY(1.25)
"This value determines the color of the grid lines that are rendered.",
openspace::properties::Property::Visibility::NoviceUser
};
constexpr openspace::properties::Property::PropertyInfo HighlightColorInfo = {
"HighlightColor",
"Highlight Color",
"This value determines the color of the highlighted lines in the grid",
// @VISIBILITY(1.25)
"This value determines the color of the highlighted lines in the grid.",
openspace::properties::Property::Visibility::NoviceUser
};
@@ -56,8 +54,7 @@ namespace {
"Segments",
"Number of Segments",
"This value specifies the number of segments that are used to render the "
"grid in each direction",
// @VISIBILITY(2.75)
"grid in each direction.",
openspace::properties::Property::Visibility::User
};
@@ -73,29 +70,28 @@ namespace {
constexpr openspace::properties::Property::PropertyInfo LineWidthInfo = {
"LineWidth",
"Line Width",
"This value specifies the line width of the grid",
// @VISIBILITY(1.5)
"This value specifies the line width of the grid.",
openspace::properties::Property::Visibility::NoviceUser
};
constexpr openspace::properties::Property::PropertyInfo HighlightLineWidthInfo = {
"HighlightLineWidth",
"Highlight Line Width",
"This value specifies the line width of the highlighted lines in the grid",
"This value specifies the line width of the highlighted lines in the grid.",
openspace::properties::Property::Visibility::User
};
constexpr openspace::properties::Property::PropertyInfo SizeInfo = {
"Size",
"Grid Size",
"This value species the size of each dimensions of the grid",
"This value species the size of each dimensions of the grid.",
openspace::properties::Property::Visibility::User
};
const openspace::properties::PropertyOwner::PropertyOwnerInfo LabelsInfo = {
"Labels",
"Labels",
"The labels for the grid"
"The labels for the grid."
};
struct [[codegen::Dictionary(RenderableGrid)]] Parameters {

View File

@@ -40,8 +40,7 @@ namespace {
constexpr openspace::properties::Property::PropertyInfo ColorInfo = {
"Color",
"Color",
"This value determines the color of the grid lines that are rendered",
// @VISIBILITY(1.25)
"This value determines the color of the grid lines that are rendered.",
openspace::properties::Property::Visibility::NoviceUser
};
@@ -49,8 +48,7 @@ namespace {
"GridSegments",
"Number of Grid Segments",
"Specifies the number of segments for the grid, in the radial and angular "
"direction respectively",
// @VISIBILITY(2.5)
"direction respectively.",
openspace::properties::Property::Visibility::User
};
@@ -58,15 +56,14 @@ namespace {
"CircleSegments",
"Number of Circle Segments",
"This value specifies the number of segments that is used to render each circle "
"in the grid",
// @VISIBILITY(2.5)
"in the grid.",
openspace::properties::Property::Visibility::User
};
constexpr openspace::properties::Property::PropertyInfo LineWidthInfo = {
"LineWidth",
"Line Width",
"This value specifies the line width of the spherical grid",
"This value specifies the line width of the spherical grid.",
openspace::properties::Property::Visibility::User
};
@@ -75,15 +72,14 @@ namespace {
"Inner and Outer Radius",
"The radii values that determine the size of the circular grid. The first value "
"is the radius of the inmost ring and the second is the radius of the outmost "
"ring",
// @VISIBILITY(2.67)
"ring.",
openspace::properties::Property::Visibility::User
};
const openspace::properties::PropertyOwner::PropertyOwnerInfo LabelsInfo = {
"Labels",
"Labels",
"The labels for the grid"
"The labels for the grid."
};
struct [[codegen::Dictionary(RenderableRadialGrid)]] Parameters {

View File

@@ -39,8 +39,7 @@ namespace {
constexpr openspace::properties::Property::PropertyInfo ColorInfo = {
"Color",
"Color",
"This value determines the color of the grid lines that are rendered",
// @VISIBILITY(1.25)
"This value determines the color of the grid lines that are rendered.",
openspace::properties::Property::Visibility::NoviceUser
};
@@ -48,23 +47,21 @@ namespace {
"Segments",
"Number of Segments",
"This value specifies the number of segments that are used to render the "
"surrounding sphere",
// @VISIBILITY(2.25)
"surrounding sphere.",
openspace::properties::Property::Visibility::User
};
constexpr openspace::properties::Property::PropertyInfo LineWidthInfo = {
"LineWidth",
"Line Width",
"This value specifies the line width of the spherical grid",
// @VISIBILITY(1.67)
"This value specifies the line width of the spherical grid.",
openspace::properties::Property::Visibility::NoviceUser
};
const openspace::properties::PropertyOwner::PropertyOwnerInfo LabelsInfo = {
"Labels",
"Labels",
"The labels for the grid"
"The labels for the grid."
};
struct [[codegen::Dictionary(RenderableSphericalGrid)]] Parameters {