|
|
This:
#declare aVector=<1,2,3,4>;
gets me an error, altough the manual say you can define 4d and 5d vectors.
----------------------------------------------------------------
POV INFO
----------------------------------------------------------------
POV-Ray for Windows
Version 3.1.beta.6b.watcom.win32 [Pentium II optimised]
----------------------------------------------------------------
SYSTEM INFO
----------------------------------------------------------------
MS Windows 95 4.00.950 B
IE 4.0 4.711712.6
Pentium Pro 233MHz
128MB RAM
Post a reply to this message
|
|
|
|
Philippe Debar wrote:
>
> This:
>
> #declare aVector=<1,2,3,4>;
>
> gets me an error, altough the manual say you can define 4d and 5d vectors.
That's true, but
#declare a = color<1, 2, 3, 4>;
works just fine. This also works for 5-d vectors. Maybe it should be
changed, but it was done intentionally, so it's not really a 'bug'.
Apparantly there is a conflict between the program and the documentation,
so one of them needs to be changed. I personally think that POV should
be changed so you don't need the 'color'.
NOTE: you could also use rgbf instead of color for 4-d vectors, and
rgbft for 5-d vectors.
-Nathan Kopp
Post a reply to this message
|
|