POV-Ray : Newsgroups : povray.unix : POV-Ray v3.8.0-beta.1 : Re: POV-Ray v3.8.0-beta.1 Server Time
29 Mar 2024 08:04:33 EDT (-0400)
  Re: POV-Ray v3.8.0-beta.1  
From: Thomas de Groot
Date: 19 Jul 2021 08:17:24
Message: <60f56d54$1@news.povray.org>
Rendering a 3.8 version scene which includes functions.inc, I get the 
following parse warning:

"functions.inc" line 167: Parse warning: use of POV-Ray v3.7 keyword 
('deprecated') detected in alleged v3.5 scene.

The only place were version 3.5 is mentioned is precisely at the start 
of functions.inc:

#ifndef(Functions_Inc_Temp)
#declare Functions_Inc_Temp = version;
#version 3.5;
...
#end

At the mentioned line 167 of this /new/ functions.inc shipped with the 
beta, a /new/ if statement has been introduced, not there in previous 
versions:

#if (Functions_Inc_Temp < 3.8)
     #declare deprecated once "f_enneper was broken prior to v3.8; 
results will most likely differ."
              f_enneper = function { internal(18) }
#else
     #declare f_enneper = function { internal(18) }
#end


-- 
Thomas


Post a reply to this message

Copyright 2003-2023 Persistence of Vision Raytracer Pty. Ltd.