Click or drag to resize
PoBiErrorPointFieldvariationType Property

Defines the interpretation of the values lowX, lowY, highX, highY.

Namespace: OIV.MeshViz.Graph
Assembly: OIV.MeshViz (in OIV.MeshViz.dll) Version: 2024.1.1.0 (2024.1.1)
Syntax
public SoSFEnum<PoBiErrorPointFieldVariationTypes> variationType { get; }

Property Value

Type: SoSFEnumPoBiErrorPointFieldVariationTypes
Remarks

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