POV-Ray : Newsgroups : povray.general : How to use #ifdef? : Re: How to use #ifdef? Server Time
23 Apr 2024 18:15:39 EDT (-0400)
  Re: How to use #ifdef?  
From: jr
Date: 12 Jun 2020 14:45:00
Message: <web.5ee3cc0d353de50c4d00143e0@news.povray.org>
hi,

"Kima" <nomail@nomail> wrote:
> I have trouble to use #ifdef and #ifndef for multiple conditions. Can you
> provide the correct syntax for the following cases:
>
> 1. #ifdef(a1) ...
>    #else #ifdef(a2) ....
>    #else ...
>
> 2. #ifdef(a1) & (a1=1) ...
>
> 3. #ifdef(a1) & #ifdef(a2) ...

1. #if (defined(a1))
   #elseif (defined(a2))
   #else
   #end

2. #if (a1 & 1 = a1)

3. #if (a1 & a2)


regards, jr.


Post a reply to this message

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