SoArithmeticComputeMinMax Method (SoCpuBufferObject, SbDataType, SbVec3i32, SbBox3i32, Double, Double) |
Compute min max of values contained in the specified range of the buffer.
Namespace: OIV.Inventor.AlgorithmsAssembly: OIV.Inventor.Algorithms (in OIV.Inventor.Algorithms.dll) Version: 2023.1.3.0 (2023.1.3)
Syntax public void ComputeMinMax(
SoCpuBufferObject inputBuffer,
SbDataType dataType,
SbVec3i32 arrayDim,
SbBox3i32 range,
out double min,
out double max
)
Public Sub ComputeMinMax (
inputBuffer As SoCpuBufferObject,
dataType As SbDataType,
arrayDim As SbVec3i32,
range As SbBox3i32,
<OutAttribute> ByRef min As Double,
<OutAttribute> ByRef max As Double
)
public:
void ComputeMinMax(
SoCpuBufferObject^ inputBuffer,
SbDataType dataType,
SbVec3i32 arrayDim,
SbBox3i32 range,
[OutAttribute] double% min,
[OutAttribute] double% max
)
member ComputeMinMax :
inputBuffer : SoCpuBufferObject *
dataType : SbDataType *
arrayDim : SbVec3i32 *
range : SbBox3i32 *
min : float byref *
max : float byref -> unit
Parameters
- inputBuffer
- Type: OIV.Inventor.DevicesSoCpuBufferObject
- dataType
- Type: OIV.InventorSbDataType
- arrayDim
- Type: OIV.InventorSbVec3i32
- range
- Type: OIV.InventorSbBox3i32
- min
- Type: SystemDouble
- max
- Type: SystemDouble
Remarks
Fast version for Cpu buffers.
See Also