POV-Ray : Newsgroups : povray.general : Parse Error: No matching } in 'pigment', string identifier found instead : Re: Parse Error: No matching } in 'pigment', string identifier found instead Server Time
20 Apr 2024 06:18:38 EDT (-0400)
  Re: Parse Error: No matching } in 'pigment', string identifier found instead  
From: Mike Williams
Date: 1 Feb 2009 02:46:07
Message: <p8t8ZbD1MVhJFwBw@econym.demon.co.uk>
Wasn't it societyofrobots who wrote:
>I'm running Eagle3D that compiles using POV-Ray.
>
>This is the error I'm getting:
>
>Parse Error: No matching } in 'pigment', string identifier found instead

It looks like you've declared color_sub to be a text string rather than
a pigment identifier.

E.g. you can't to this is you want to use color_sub as a pigment
identifier

        #declare color_sub = "rgb <1,0,0>";

but you can do this instead

        #declare color_sub = pigment {rgb <1,0,0>};

-- 
Mike Williams
Gentleman of Leisure


Post a reply to this message

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