DicomObjects.NET.V8
DicomObjects Namespace / DicomImage3D Class / EarlyRayTermination Property



EarlyRayTermination Property
The opacity at which to stop Ray Tracing (VR only)
Syntax
public float EarlyRayTermination {get; set;}
public:
property float EarlyRayTermination {
   float get();
   void set (    float value);
}
'Declaration
 
Public Property EarlyRayTermination As Single
 
'Usage
 
Dim instance As DicomImage3D
Dim value As Single
 
instance.EarlyRayTermination = value
 
value = instance.EarlyRayTermination
Remarks
This is used to speed up ray tracing. Once the cumulative alpha value along a ray is greater than alpha, rendering that ray stops. The value should be 0 to 1.0. Setting to 1.0 will render all data (no early ray termination).
Requirements

Target Platforms: .NET CLR 3.5 or higher

See Also