34 {
36
39
41 {
45
49 {
52 }
55
57 }
58 }
float m_InterpolatedStepSize
Definition TemperatureData.c:41
float m_InterpolatedFraction
Definition TemperatureData.c:42
float m_AdjustedTarget
Definition TemperatureData.c:36
float m_HeatPermeabilityCoef
Definition TemperatureData.c:39
float m_UpdateTimeInfo
Definition TemperatureData.c:37
float m_UpdateTimeCoef
Definition TemperatureData.c:38
float m_Value
Definition TemperatureData.c:35
Definition constants.c:638
const float TEMP_COEF_COOLING_GLOBAL
Definition constants.c:908
static const float TEMPERATURE_INTERPOLATION_THRESHOLD_MAX_ABS
Definition constants.c:885
static const float TEMPERATURE_INTERPOLATION_THRESHOLD_MIN_ABS
Definition constants.c:884
static const float TEMPERATURE_RATE_MAX_ABS
Definition constants.c:882
static const float TEMPERATURE_RATE_AVERAGE_ABS
Definition constants.c:881
static proto float Max(float x, float y)
Returns bigger of two given values.
static proto float Clamp(float value, float min, float max)
Clamps 'value' to 'min' if it is lower than 'min', or to 'max' if it is higher than 'max'.
static proto float InverseLerp(float a, float b, float value)
Calculates the linear value that produces the interpolant value within the range [a,...
static proto float Min(float x, float y)
Returns smaller of two given values.
static proto float Lerp(float a, float b, float time)
Linearly interpolates between 'a' and 'b' given 'time'.