GetHistogramBin
Returns the value of a single histogram bin.
Syntax
C++
C#
Python
def GetHistogramBin( inHistogram: Histogram, inIndex: int, /, *, inCyclic: bool = False, inInverse: bool = False ) -> ( outValue: float, outBinStart: float, outBinEnd: float )
Parameters
| Name | Type | Default | Description | |
|---|---|---|---|---|
![]() |
inHistogram | Histogram | Input histogram | |
![]() |
inIndex | int | Input bin index | |
![]() |
inCyclic | bool | False | Whether to wrap the index around or not |
![]() |
inInverse | bool | False | Reversed order of bins |
![]() |
outValue | float | Output value of the bin | |
![]() |
outBinStart | float | Lower limit of the bin | |
![]() |
outBinEnd | float | Upper limit of the bin |


