Subversion Repositories gelsvn

Rev

Rev 129 | Rev 195 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 129 Rev 178
Line 60... Line 60...
60
  enum Axis {XAXIS=0,YAXIS=1,ZAXIS=2};
60
  enum Axis {XAXIS=0,YAXIS=1,ZAXIS=2};
61
 
61
 
62
#ifdef WIN32
62
#ifdef WIN32
63
	inline bool isnan(double x) { return _isnan(x);}
63
	inline bool isnan(double x) { return _isnan(x);}
64
#else
64
#else
65
	inline bool isnan(double x) { return isnan(x);}
65
	inline bool isnan(double x) { return std::isnan(x);}
66
#endif
66
#endif
67
 
67
 
68
  template<class Scalar>
68
  template<class Scalar>
69
  Scalar s_min(Scalar a, Scalar b)
69
  Scalar s_min(Scalar a, Scalar b)
70
  {
70
  {