Added support for new SampleDensityWhenMovingProperty into .p3d format, with it default to 0.02.

One can override this value via the sampleDensityWhenMoving="value" property in the volume tag, i.e.

         <volume sampleDensityWhenMoving="0.01">CardiacCT</volume>

To switch the feature off set the value to 0, i.e.

         <volume sampleDensityWhenMoving="0">CardiacCT</volume>
This commit is contained in:
Robert Osfield
2011-03-17 17:33:02 +00:00
parent 89eadcfe82
commit 6b67320190
3 changed files with 6 additions and 1 deletions

View File

@@ -267,7 +267,8 @@ public:
region_in_pixel_coords(false),
alphaValue(1.0),
cutoffValue(0.1),
sampleDensityValue(0.005)
sampleDensityValue(0.005),
sampleDensityWhenMovingValue(0.02)
{
region[0] = region[1] = region[2] = 0.0f;
region[3] = region[4] = region[5] = 1.0f;
@@ -282,6 +283,7 @@ public:
float alphaValue;
float cutoffValue;
float sampleDensityValue;
float sampleDensityWhenMovingValue;
};