disambiguated a pow() call
This commit is contained in:
parent
c1c51913d3
commit
38323a3c48
|
@ -509,7 +509,7 @@ static Color4b ColorPow(Color4b c, float exponent)
|
||||||
|
|
||||||
static float ValuePow(float value, float exponent)
|
static float ValuePow(float value, float exponent)
|
||||||
{
|
{
|
||||||
return pow((double)value, exponent);
|
return powf(value, exponent);
|
||||||
}
|
}
|
||||||
|
|
||||||
static int Colourisation(UpdateMeshType &m, Color4b c, float intensity, const bool ProcessSelected=false)
|
static int Colourisation(UpdateMeshType &m, Color4b c, float intensity, const bool ProcessSelected=false)
|
||||||
|
|
Loading…
Reference in New Issue