Home
last modified time | relevance | path

Searched refs:POV_ISINF (Results 1 – 3 of 3) sorted by relevance

/dports/graphics/povray38/povunix-v3.8.0-beta.2-src/unix/povconfig/
H A Dsyspovconfig.h247 #define POV_ISINF(x) std::isinf(x) macro
249 #define POV_ISINF(x) isinf(x) macro
253 #define POV_ISINF(x) pov_isinf(x) macro
258 #define POV_ISINF(x) (false) macro
261 #define POV_ISFINITE(x) (!POV_ISNAN(x) && !POV_ISINF(x))
/dports/graphics/povray38/povunix-v3.8.0-beta.2-src/source/base/
H A Dconfigbase.h501 #ifndef POV_ISINF
504 #define POV_ISINF(x) pov_isinf(x) macro
538 #define POV_ISFINITE(x) (!POV_ISINF(x) && !POV_ISNAN(x))
H A Dcolour.h75 inline bool ColourChannelIsValid(T c) { return !POV_ISINF(c); } in ColourChannelIsValid()