Files
OpenSpace/data/scene/batsrus/batsrus.mod
Alexander Bock 428f488bb6 Add documentation to Ephemeris classes
Remove unused "Reference" specification from mod files
Add osirisrex files to gitgnore
Make Ephemeris values into properties
2016-09-20 19:24:14 +02:00

62 lines
1.9 KiB
Modula-2

return {
-- Volume module
---[[
{
Name = "BatsrusRho",
Parent = "Earth",
Ephemeris = {
Type = "Static",
Position = { 0, 0, 0.0, 0}
},
Renderable = {
Type = "RenderableVolumeGL",
-- BoxScaling = { 2.8, 1, 1},
VolumeName = "BatsrusRhoVolume",
Volume = "${OPENSPACE_DATA}/batsrus.cdf",
Hints = {
-- Dimensions = {300, 100, 100},
Dimensions = {600, 200, 200},
-- Dimensions = {900, 300, 300},
Model = "BATSRUS",
Variable = "rho",
Cache = true,
--Variables = {"bx", "by", "bz"},
},
TransferFunctionName = "BatsrusRhoTF",
TransferFunction = "transferfunctions/rho.txt",
Sampler = "rhosampler.glsl",
},
GuiName = "/Volumes/Volume"
},
--]
---[[
{
Name = "BatsrusP",
Parent = "Earth",
Ephemeris = {
Type = "Static",
Position = { 0, 0, 0.0, 0}
},
Renderable = {
Type = "RenderableVolumeGL",
-- BoxScaling = { 2.8, 1, 1},
VolumeName = "BatsrusPVolume",
Volume = "${OPENSPACE_DATA}/batsrus.cdf",
Hints = {
-- Dimensions = {300, 100, 100},
Dimensions = {600, 200, 200},
-- Dimensions = {900, 300, 300},
Model = "BATSRUS",
Variable = "p",
Cache = true,
--Variables = {"bx", "by", "bz"},
},
TransferFunctionName = "BatsrusPTF",
TransferFunction = "transferfunctions/p.txt",
Sampler = "psampler.glsl",
}
}
}