Changed the range max and min members variables to maximum and minimum to
prevent collision with windows min and max macros.
This commit is contained in:
@@ -66,7 +66,7 @@ namespace osgParticle
|
||||
template<class T_>
|
||||
T_ interpolate(float t, const range<T_> &r) const
|
||||
{
|
||||
return interpolate(t, r.min, r.max);
|
||||
return interpolate(t, r.minimum, r.maximum);
|
||||
}
|
||||
|
||||
protected:
|
||||
|
||||
Reference in New Issue
Block a user