|
|
|
|
|
|
| |
| |
|
|
From: Mark Jeghers
Subject: Is there a more up to date version of USS Enterprise?
Date: 17 Feb 2003 16:09:29
Message: <3e514f89$1@news.povray.org>
|
|
|
| |
| |
|
|
Hi, all,
I tried to render the lovely Enterprise that Ville Saari developed,
but I cannot get it to work in POV 3.5 -- even with the older
versions turned on.
Does anyone know of an updated version that builds in 3.5 ?
Thanks,
Mark
Post a reply to this message
|
|
| |
| |
|
|
|
|
| |
| |
|
|
Mark Jeghers wrote:
>
> Hi, all,
>
> I tried to render the lovely Enterprise that Ville Saari developed,
> but I cannot get it to work in POV 3.5 -- even with the older
> versions turned on.
What kind of error messages are you getting?
Post a reply to this message
|
|
| |
| |
|
|
From: Mark Jeghers
Subject: Re: Is there a more up to date version of USS Enterprise?
Date: 18 Feb 2003 01:11:30
Message: <3e51ce92@news.povray.org>
|
|
|
| |
| |
|
|
"Ken" <tyl### [at] pacbellnet> wrote in message
news:3E518C85.D6962C61@pacbell.net...
>
>
> Mark Jeghers wrote:
> >
> > Hi, all,
> >
> > I tried to render the lovely Enterprise that Ville Saari developed,
> > but I cannot get it to work in POV 3.5 -- even with the older
> > versions turned on.
>
> What kind of error messages are you getting?
File: C:\Program Files\POV-Ray for Windows v3.5\INCLUDE\colors.inc Line:
164
// Takes Hue value as input, returns RGB vector.
#macro <----ERROR
Parse Error: Macros require #version 3.1 or later but #version 1.00 is set.
Returned from renderer with error status
^^^^^^^^^^^^------------ after setting it into 1.0 mode -- 3.5 mode has
other errors.
Post a reply to this message
|
|
| |
| |
|
|
From: Kruger
Subject: Re: Is there a more up to date version of USS Enterprise?
Date: 18 Feb 2003 02:02:26
Message: <3e51da82@news.povray.org>
|
|
|
| |
| |
|
|
This may be a stupid uestion, but did you try setting the version to 3.1 ?
anyway, the most common error I have run across from old 3.1 source is
declarations need a semicolon at the end. I am sure there are many other
differences, but that is usually the only thing that I have had to fix.
I hope this helps
Kruger
"Mark Jeghers" <mar### [at] nospamcom> wrote in message
news:3e51ce92@news.povray.org...
>
> "Ken" <tyl### [at] pacbellnet> wrote in message
> news:3E518C85.D6962C61@pacbell.net...
> >
> >
> > Mark Jeghers wrote:
> > >
> > > Hi, all,
> > >
> > > I tried to render the lovely Enterprise that Ville Saari developed,
> > > but I cannot get it to work in POV 3.5 -- even with the older
> > > versions turned on.
> >
> > What kind of error messages are you getting?
>
>
> File: C:\Program Files\POV-Ray for Windows v3.5\INCLUDE\colors.inc Line:
> 164
> // Takes Hue value as input, returns RGB vector.
>
> #macro <----ERROR
>
> Parse Error: Macros require #version 3.1 or later but #version 1.00 is
set.
>
>
> Returned from renderer with error status
>
> ^^^^^^^^^^^^------------ after setting it into 1.0 mode -- 3.5 mode has
> other errors.
>
>
Post a reply to this message
|
|
| |
| |
|
|
|
|
| |
| |
|
|
Mark Jeghers wrote:
>
> "Ken" <tyl### [at] pacbellnet> wrote in message
> news:3E518C85.D6962C61@pacbell.net...
> >
> >
> > Mark Jeghers wrote:
> > >
> > > Hi, all,
> > >
> > > I tried to render the lovely Enterprise that Ville Saari developed,
> > > but I cannot get it to work in POV 3.5 -- even with the older
> > > versions turned on.
> >
> > What kind of error messages are you getting?
>
> File: C:\Program Files\POV-Ray for Windows v3.5\INCLUDE\colors.inc Line:
> 164
> // Takes Hue value as input, returns RGB vector.
>
> #macro <----ERROR
>
> Parse Error: Macros require #version 3.1 or later but #version 1.00 is set.
>
> Returned from renderer with error status
>
> ^^^^^^^^^^^^------------ after setting it into 1.0 mode -- 3.5 mode has
> other errors.
You may have to use multiple #version settings to get it work. e.g.
#version 3.5
#include "colors.inc"
#version 1.0
old stuff here
--
Ken Tyler
Post a reply to this message
|
|
| |
| |
|
|
|
|
| |