|
|
|
|
|
|
| |
| |
|
|
|
|
| |
| |
|
|
Hi, all
Where can I find the defination of "VECTOR"?
Thanks
Wu Yang
Post a reply to this message
|
|
| |
| |
|
|
|
|
| |
| |
|
|
On Fri, 18 Oct 2002 11:34:17 -0400, "Wu Yang" <wya### [at] cswrightedu> wrote:
> Hi, all
> Where can I find the defination of "VECTOR"?
> Thanks
> Wu Yang
There is a section 'Scalar, color and vector stuff.' in frame.h
ABX
Post a reply to this message
|
|
| |
| |
|
|
|
|
| |
| |
|
|
> Where can I find the defination of "VECTOR"?
You should learn how to use VC++ or, if you're not using that, then your
operating system, to find files containing certain strings of text. Then you
could search for "#define VECTOR" or whatever corresponds to what you're
looking for.
- Slime
[ http://www.slimeland.com/ ]
Post a reply to this message
|
|
| |
| |
|
|
From: Christoph Hormann
Subject: Re: What is the defination of "VECTOR"
Date: 18 Oct 2002 12:18:49
Message: <3DB03468.8A747EBD@gmx.de>
|
|
|
| |
| |
|
|
Slime wrote:
>
> > Where can I find the defination of "VECTOR"?
>
> You should learn how to use VC++ or, if you're not using that, then your
> operating system, to find files containing certain strings of text. Then you
> could search for "#define VECTOR" or whatever corresponds to what you're
> looking for.
Actually it's 'typedef DBL VECTOR [3];'.
None the less searching all POV-Ray source files often is a useful method
for finding things. Either use 'grep' or the multiple file searching
function of your favorite editor.
Christoph
--
POV-Ray tutorials, IsoWood include,
TransSkin and more: http://www.tu-bs.de/~y0013390/
Last updated 13 Aug. 2002 _____./\/^>_*_<^\/\.______
Post a reply to this message
|
|
| |
| |
|
|
|
|
| |
| |
|
|
On Fri, 18 Oct 2002 18:18:48 +0200,
Christoph Hormann <chr### [at] gmxde> wrote:
>
> Slime wrote:
>>
>> > Where can I find the defination of "VECTOR"?
>>
>> You should learn how to use VC++ or, if you're not using that, then your
>> operating system, to find files containing certain strings of text. Then you
>> could search for "#define VECTOR" or whatever corresponds to what you're
>> looking for.
>
> Actually it's 'typedef DBL VECTOR [3];'.
>
> None the less searching all POV-Ray source files often is a useful method
> for finding things. Either use 'grep' or the multiple file searching
> function of your favorite editor.
I recommend global for those who don't know it already :)
http://ftp.funet.fi/pub/gnu/gnu/global/global-4.5.tar.gz
$ global -x VECTOR
VECTOR 812 frame.h typedef DBL VECTOR [3];
--
Safari - y7p### [at] sneakemailcom
"Talk is cheap. Show me the code." - Linus Torvalds
Post a reply to this message
|
|
| |
| |
|
|
|
|
| |