Subversion Repositories gelsvn

Rev

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

Rev 55 Rev 59
Line 42... Line 42...
42
  enum Axis {XAXIS=0,YAXIS=1,ZAXIS=2};
42
  enum Axis {XAXIS=0,YAXIS=1,ZAXIS=2};
43
 
43
 
44
#ifdef WIN32
44
#ifdef WIN32
45
	inline bool isnan(double x) { return _isnan(x);}
45
	inline bool isnan(double x) { return _isnan(x);}
46
#else
46
#else
47
	inline bool isnan(double x) { return std::isnan(x);}
47
	inline bool isnan(double x) { return isnan(x);}
48
#endif
48
#endif
49
 
49
 
50
  template<class Scalar>
50
  template<class Scalar>
51
  Scalar s_min(Scalar a, Scalar b)
51
  Scalar s_min(Scalar a, Scalar b)
52
  {
52
  {