Click or drag to resize
PoErrorCurvevariationType Property

Defines the interpretation of the values lowY and highY.

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

Property Value

Type: SoSFEnumPoErrorCurveVariationTypes
Remarks

The ordinate yl of the i-th point of the low curve depends on the value of this field:

  • FIXED_VARIATION: yl = lowY[i]

  • REL_VARIATION: yl = point[i][1] - lowY[i]

  • PERCENT_FIXED_VARIATION: yl = point[i][1] * lowY[i]

  • PERCENT_REL_VARIATION: yl = point[i][1] - (lowY[i] * point[i][1])

The same method is used to compute yh, the ordinate of the i-th point of the high curve.

See Also