Updating examples after discussions

This commit is contained in:
Alexander Bock
2024-04-23 20:13:52 +02:00
parent f23505db90
commit c9fd9543e6
6 changed files with 18 additions and 12 deletions

View File

@@ -1,3 +1,4 @@
-- Minimal
-- This asset creates a SceneGraphNode that only displays coordinate axes. The coordinate
-- axis normally have a length of 1 meter and are scaled in this example by different
-- values for each axis. The x axis is scaled by a factor of 149597870700, which means
@@ -17,8 +18,8 @@ local Node = {
Type = "RenderableCartesianAxes"
},
GUI = {
Name = "NonUniformStaticScale",
Path = "/Examples"
Name = "Minimal",
Path = "/Examples/NonUniformStaticScale"
}
}

View File

@@ -1,3 +1,4 @@
-- Ellipsoid
-- This asset creates a SceneGraphNode that is rendering a sphere which is adjust to an
-- ellipsoidal shape by using a non-uniform scaling. In particular, the second axis is
-- half as long as the first, and the third axis is a third as long.
@@ -14,8 +15,8 @@ local Node = {
Type = "RenderableSphericalGrid"
},
GUI = {
Name = "NonUniformStaticScale (Ellipsoid)",
Path = "/Examples"
Name = "Ellipsoid",
Path = "/Examples/NonUniformStaticScale"
}
}

View File

@@ -1,3 +1,4 @@
-- Minimal
-- This asset creates a SceneGraphNode that only displays coordinate axes. The coordinate
-- axis normally have a length of 1 meter and are scaled in this example by a factor of
-- 149597870700, which means they will be 149597870700 m (1 AU) long, thus reaching the
@@ -15,8 +16,8 @@ local Node = {
Type = "RenderableCartesianAxes"
},
GUI = {
Name = "StaticScale",
Path = "/Examples"
Name = "Minimal",
Path = "/Examples/StaticScale"
}
}

View File

@@ -1,3 +1,4 @@
-- Minimal
-- This asset creates a SceneGraphNode that only displays coordinate axes, which grow at
-- a speed of 1 m/s starting on January 1st, 2000 00:00:00. This means that on
-- that date, the coordinate axes will disappear and, for example, on January 1st, 2000
@@ -15,8 +16,8 @@ local Node = {
Type = "RenderableCartesianAxes"
},
GUI = {
Name = "TimeDependentScale",
Path = "/Examples"
Name = "Minimal",
Path = "/Examples/TimeDependentScale"
}
}

View File

@@ -1,3 +1,4 @@
-- with Speed
-- This asset creates a SceneGraphNode that only displays coordinate axes, which grow at
-- a speed of 12 km/s starting on August 8th, 1969 12:00:00. This means that on
-- that date, the coordinate axes will disappear and, for example, on August 8th, 1969
@@ -16,8 +17,8 @@ local Node = {
Type = "RenderableCartesianAxes"
},
GUI = {
Name = "TimeDependentScale (Speed)",
Path = "/Examples"
Name = "with Speed",
Path = "/Examples/TimeDependentScale"
}
}

View File

@@ -1,3 +1,4 @@
-- Minimal
-- This example creates a union out of two simpler TimeFrameIntervals and uses it for a
-- SceneGraphNode. The first TimeFrameInterval covers January 1st, 2000 and the second
-- TimeFrameInterval covers March 1st, 2002. The resulting TimeFrameUnion will cover both
@@ -26,8 +27,8 @@ local Node = {
Type = "RenderableCartesianAxes"
},
GUI = {
Name = "TimeFrameUnion",
Path = "/Examples"
Name = "Minimal",
Path = "/Examples/TimeFrameUnion"
}
}