POV-Ray : Newsgroups : povray.general : How to use #ifdef? : Re: How to use #ifdef? Server Time
25 Apr 2024 14:57:44 EDT (-0400)
  Re: How to use #ifdef?  
From: jr
Date: 12 Jun 2020 14:50:01
Message: <web.5ee3ce2b353de50c4d00143e0@news.povray.org>
"jr" <cre### [at] gmailcom> wrote:
> 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)

oh sh*t.  :-(  sorry.

2.  #if (defined(a1) & 1 = a1)
3.  #if (defined(a1) & defined(a2))



regards, jr.


Post a reply to this message

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