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:
Robert Osfield
2002-08-03 18:03:40 +00:00
parent 1ba901cf64
commit c253d3558b
8 changed files with 37 additions and 37 deletions

View File

@@ -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: