A simple class which holds data for our PeakMeterCtrl
.
Default class constructor. |
|
Returns whether 2 instances of |
|
Returns whether one |
|
Returns whether one |
PeakMeterData
(object)¶A simple class which holds data for our PeakMeterCtrl
.
__init__
(self, value=0, falloff=0, peak=0)¶Default class constructor.
value – the current PeakMeterCtrl
value;
falloff – the falloff effect. True
to enable it, False
to
disable it;
peak – the peak value.
IsEqual
(self, pm)¶Returns whether 2 instances of PeakMeterData
are the same.
pm – another instance of PeakMeterData
.
IsGreater
(self, pm)¶Returns whether one PeakMeterData
is greater than another.
pm – another instance of PeakMeterData
.
IsLower
(self, pm)¶Returns whether one PeakMeterData
is smaller than another.
pm – another instance of PeakMeterData
.