SoVolumeHistogramComputeMinMaxWithUndefined Method |
Namespace: OIV.LDMAssembly: OIV.LDM (in OIV.LDM.dll) Version: 10.12.3.0 (10.12.3.0)
Syntax public static void ComputeMinMaxWithUndefined(
SoBufferObject valuesBuffer,
double undefinedValue,
SbDataType dataType,
SbVec3i32 arrayDim,
SbBox3i32 range,
out double min,
out double max
)
Public Shared Sub ComputeMinMaxWithUndefined (
valuesBuffer As SoBufferObject,
undefinedValue As Double,
dataType As SbDataType,
arrayDim As SbVec3i32,
range As SbBox3i32,
<OutAttribute> ByRef min As Double,
<OutAttribute> ByRef max As Double
)
public:
static void ComputeMinMaxWithUndefined(
SoBufferObject^ valuesBuffer,
double undefinedValue,
SbDataType dataType,
SbVec3i32 arrayDim,
SbBox3i32 range,
[OutAttribute] double% min,
[OutAttribute] double% max
)
static member ComputeMinMaxWithUndefined :
valuesBuffer : SoBufferObject *
undefinedValue : float *
dataType : SbDataType *
arrayDim : SbVec3i32 *
range : SbBox3i32 *
min : float byref *
max : float byref -> unit
Parameters
- valuesBuffer
- Type: OIV.Inventor.DevicesSoBufferObject
Input buffer of values.
- undefinedValue
- Type: SystemDouble
Discarded value in the computation of min and max.
- dataType
- Type: OIV.InventorSbDataType
Type of datas stored in valuesBuffer.
- arrayDim
- Type: OIV.InventorSbVec3i32
Dimensions of valuesBuffer.
- range
- Type: OIV.InventorSbBox3i32
Box in which min and max values are computed.
- min
- Type: SystemDouble
Computed minimum value.
- max
- Type: SystemDouble
Computed maximum value.
Remarks See Also