PoBiErrorPointFieldvariationType Property |
Defines the interpretation of the values lowX, lowY, highX, highY.
Namespace: OIV.MeshViz.GraphAssembly: OIV.MeshViz (in OIV.MeshViz.dll) Version: 10.12.3.0 (10.12.3.0)
Syntax public SoSFEnum<PoBiErrorPointFieldVariationTypes> variationType { get; }
Public ReadOnly Property variationType As SoSFEnum(Of PoBiErrorPointFieldVariationTypes)
Get
public:
property SoSFEnum<PoBiErrorPointFieldVariationTypes>^ variationType {
SoSFEnum<PoBiErrorPointFieldVariationTypes>^ get ();
}
member variationType : SoSFEnum<PoBiErrorPointFieldVariationTypes> with get
Property Value
Type:
SoSFEnumPoBiErrorPointFieldVariationTypesRemarks The low abscissa xl of the i-th point depends on the value of this field:
FIXED_VARIATION: xl = lowY[i]
REL_VARIATION: xl = point[i][0] - lowY[i]
PERCENT_FIXED_VARIATION: xl = point[i][0] * lowY[i]
PERCENT_REL_VARIATION: xl = point[i][0] - (lowY[i] * point[i][0])
The same method is used to compute the high abscissa xh, low ordinate yl and high ordinate yh.
See Also