|
|
|
|
|
|
| |
| |
|
|
|
|
| |
| |
|
|
Hello
Does anyone of you can send me or does know a link to a documentation to the
FRAME structure?
Thank you for any help
Henryk
Post a reply to this message
|
|
| |
| |
|
|
|
|
| |
| |
|
|
In article <397ffc99$1@news.povray.org> , "Henryk Mueller"
<hen### [at] gmxde> wrote:
> Does anyone of you can send me or does know a link to a documentation to the
> FRAME structure?
There is no documentation of the POV-Ray source code except the comments in
it. It is part of the fun with the POV-Ray source code to play with it and
find out how it works.
Thorsten
____________________________________________________
Thorsten Froehlich
e-mail: mac### [at] povrayorg
I am a member of the POV-Ray Team.
Visit POV-Ray on the web: http://mac.povray.org
Post a reply to this message
|
|
| |
| |
|
|
|
|
| |
| |
|
|
> There is no documentation of the POV-Ray source code except the comments
in
> it. It is part of the fun with the POV-Ray source code to play with it
and
> find out how it works.
Hey, I can imagine things that make more fun that exploring source code! ;-)
Btw, do you or anybody else know the source file where FRAME is defined.
There are way to many files and I hate those extern declarations...
Henryk
Post a reply to this message
|
|
| |
| |
|
|
|
|
| |
| |
|
|
On Thu, 27 Jul 2000 15:37:05 +0200, Henryk Mueller wrote:
>> There is no documentation of the POV-Ray source code except the comments
>in
>> it. It is part of the fun with the POV-Ray source code to play with it
>and
>> find out how it works.
>
>Hey, I can imagine things that make more fun that exploring source code! ;-)
>
>Btw, do you or anybody else know the source file where FRAME is defined.
>There are way to many files and I hate those extern declarations...
Yes.
Oh, you want us to tell you. Well then. It's a typedef in povray.h.
--
Ron Parker http://www2.fwi.com/~parkerr/traces.html
My opinions. Mine. Not anyone else's.
Post a reply to this message
|
|
| |
| |
|
|
|
|
| |
| |
|
|
What is FRAME?
--
main(i,_){for(_?--i,main(i+2,"FhhQHFIJD|FQTITFN]zRFHhhTBFHhhTBFysdB"[i]
):_;i&&_>1;printf("%s",_-70?_&1?"[]":" ":(_=0,"\n")),_/=2);} /*- Warp -*/
Post a reply to this message
|
|
| |
| |
|
|
|
|
| |
| |
|
|
In article <39805bcd@news.povray.org> , Warp <war### [at] tagpovrayorg> wrote:
> What is FRAME?
typedef struct Frame_Struct FRAME;
struct Frame_Struct
{
CAMERA *Camera;
int Screen_Height, Screen_Width; /* OPTIONS */
int Number_Of_Light_Sources;
LIGHT_SOURCE *Light_Sources;
OBJECT *Objects;
DBL Atmosphere_IOR, Atmosphere_Dispersion, Antialias_Threshold;
COLOUR Background_Colour;
COLOUR Ambient_Light;
COLOUR Irid_Wavelengths;
IMEDIA *Atmosphere;
FOG *Fog;
RAINBOW *Rainbow;
SKYSPHERE *Skysphere;
};
____________________________________________________
Thorsten Froehlich, Duisburg, Germany
e-mail: tho### [at] trfde
Visit POV-Ray on the web: http://mac.povray.org
Post a reply to this message
|
|
| |
| |
|
|
|
|
| |
| |
|
|
In article <398039fd@news.povray.org> , "Henryk Mueller"
<hen### [at] gmxde> wrote:
> Btw, do you or anybody else know the source file where FRAME is defined.
> There are way to many files and I hate those extern declarations...
Yes, this is a typical problem of large programs. Depending on the
operating system you are using, either 'grep' or an IDE/text editor with a
multi-file search function will be very useful.
Thorsten
____________________________________________________
Thorsten Froehlich, Duisburg, Germany
e-mail: tho### [at] trfde
Visit POV-Ray on the web: http://mac.povray.org
Post a reply to this message
|
|
| |
| |
|
|
|
|
| |
| |
|
|
Thorsten Froehlich wrote:
> In article <398039fd@news.povray.org> , "Henryk Mueller"
> <hen### [at] gmxde> wrote:
>
> > Btw, do you or anybody else know the source file where FRAME is defined.
> > There are way to many files and I hate those extern declarations...
>
> Yes, this is a typical problem of large programs. Depending on the
> operating system you are using, either 'grep' or an IDE/text editor with a
> multi-file search function will be very useful.
Do any other IDEs have the equivalent of MSVC's Source Browser & ClassWizard
functions.
--
Bye
Pabs
Post a reply to this message
|
|
| |
| |
|
|
|
|
| |
| |
|
|
For which operating system? I can suggest several decent ones for
linux.
Pabs wrote:
>
> Thorsten Froehlich wrote:
>
> > In article <398039fd@news.povray.org> , "Henryk Mueller"
> > <hen### [at] gmxde> wrote:
> >
> > > Btw, do you or anybody else know the source file where FRAME is defined.
> > > There are way to many files and I hate those extern declarations...
> >
> > Yes, this is a typical problem of large programs. Depending on the
> > operating system you are using, either 'grep' or an IDE/text editor with a
> > multi-file search function will be very useful.
>
> Do any other IDEs have the equivalent of MSVC's Source Browser & ClassWizard
> functions.
>
> --
> Bye
> Pabs
Post a reply to this message
|
|
| |
| |
|
|
|
|
| |
| |
|
|
Ken Cecka wrote:
> For which operating system? I can suggest several decent ones for
> linux.
> > Do any other IDEs have the equivalent of MSVC's Source Browser & ClassWizard
> functions.
I was just asking if these kind of things are implemented for other IDEs (they are
incredibly useful)
I only have access to M$ Windoze machines at the moment.
Bye
Pabs
Post a reply to this message
|
|
| |
| |
|
|
|
|
| |