POV-Ray : Newsgroups : povray.newusers : If I follow Server Time
6 Sep 2024 10:11:16 EDT (-0400)
  If I follow (Message 6 to 15 of 15)  
<<< Previous 5 Messages Goto Initial 10 Messages
From: Ken
Subject: Re: If I follow
Date: 24 Nov 1998 05:10:01
Message: <365A856C.8310E556@pacbell.net>
Nieminen Mika wrote:

>   And btw, MY BIGGEST problem with povray 3.1 is that there's no povhelp
> program anymore, and that really PISSES ME OFF! Sorry, I just had to
> complain.
>   I still can't use the new features of pov3.1 because I DON'T KNOW HOW,
> damn it!

Why that's just not true. There is documentation for Pov v3.1. The
layout is different but it exists as it did before. It even functions
the way it did in in v3.0x where you can place the cursor over a
keyword, press f1, and the documentation menu pops up giving you a
selection of relevant topics to choose from. I am not happy with the
way it's been structured in a non-scrolling format as it was but the
information is still being supplied. It appears you missed something
somewhere.

Ken Tyler


Post a reply to this message

From: Ken
Subject: Re: If I follow
Date: 24 Nov 1998 07:33:27
Message: <365AA714.E5C76FD2@pacbell.net>
Ken wrote:

> Nieminen Mika wrote:
>
> >   And btw, MY BIGGEST problem with povray 3.1 is that there's no povhelp
> > program anymore, and that really PISSES ME OFF! Sorry, I just had to
> > complain.
> >   I still can't use the new features of pov3.1 because I DON'T KNOW HOW,
> > damn it!
>
> Why that's just not true. There is documentation for Pov v3.1. The
> layout is different but it exists as it did before. It even functions
> the way it did in in v3.0x where you can place the cursor over a
> keyword, press f1, and the documentation menu pops up giving you a
> selection of relevant topics to choose from. I am not happy with the
> way it's been structured in a non-scrolling format as it was but the
> information is still being supplied. It appears you missed something
> somewhere.
>
> Ken Tyler

In support ov my previous post I just copied this from the v3.1
docs concerning the use of the New with Pov v3.1 function "Media"


Previous:Density Maps and Density Lists   Main Index
Next:AtmosphericEffects

Multiple Density vs. Multiple Media

It is possible to have more than one media specified per object and it
is legal to have more than one density per media. The effects are quite
different. Consider this example:

  object{MyObject
    pigment{rgbf 1}
    interior{
      media{
        density{Some_Density}
        density{Another_Density}
      }
    }
  }

As the media is sampled, calculations are performed for each density
pattern at each sample point. The resulting samples are multiplied
together. Suppose one density returned rgb<.8,.8,.4> and the other
returned rgb<.25,.25,0>. The resulting color is rgb<.2,.2,0>. Note
that in areas where one density returns zero, it will wipe out the
other density. The end result is that only density areas which overlap
will be visible. This is similar to a CSG intersection operation. Now
consider

  object{MyObject
    pigment{rgbf 1}
    interior{
      media{
        density{Some_Density}
      }
      media{
        density{Another_Density}
      }
    }
  }

In this case each media is computed independently. The resulting colors
are added together. Suppose one density and media returned rgb<.8,.8,.4>
and the other returned rgb<.25,.25,0>. The resulting color is
rgb<1.05,1.05,.4>. The end result is that density areas which overlap
will be especially bright and all areas will be visible. This is similar
to a CSG union operation. See the sample scene
scenes/interior/media/media4.pov for an example which illustrates this.

Previous:Density Maps and Density Lists   Main Index
Next:AtmosphericEffects

Ken Tyler


Post a reply to this message

From: Ron Parker
Subject: Re: If I follow
Date: 24 Nov 1998 08:29:40
Message: <365ab4c4.0@news.povray.org>
On Tue, 24 Nov 1998 02:07:40 -0800, Ken <tyl### [at] pacbellnet> wrote:
>Nieminen Mika wrote:
>
>>   And btw, MY BIGGEST problem with povray 3.1 is that there's no povhelp
>> program anymore, and that really PISSES ME OFF! Sorry, I just had to
>> complain.
>>   I still can't use the new features of pov3.1 because I DON'T KNOW HOW,
>> damn it!
>
>Why that's just not true. There is documentation for Pov v3.1. The
>layout is different but it exists as it did before. It even functions
>the way it did in in v3.0x where you can place the cursor over a
>keyword, press f1,
>[...]

it sounds like you're using Windows and he's using DOS.  The DOS povhelp
program is indeed gone, but someone was going to revive it; check 
.programming (I think) for info on this.


Post a reply to this message

From: Ken
Subject: Re: If I follow
Date: 24 Nov 1998 08:49:33
Message: <365AB8EC.2DECC45@pacbell.net>
Ron Parker wrote:

> On Tue, 24 Nov 1998 02:07:40 -0800, Ken <tyl### [at] pacbellnet> wrote:
> >Nieminen Mika wrote:
> >
> >>   And btw, MY BIGGEST problem with povray 3.1 is that there's no povhelp
> >> program anymore, and that really PISSES ME OFF! Sorry, I just had to
> >> complain.
> >>   I still can't use the new features of pov3.1 because I DON'T KNOW HOW,
> >> damn it!
> >
> >Why that's just not true. There is documentation for Pov v3.1. The
> >layout is different but it exists as it did before. It even functions
> >the way it did in in v3.0x where you can place the cursor over a
> >keyword, press f1,
> >[...]
>
> it sounds like you're using Windows and he's using DOS.  The DOS povhelp
> program is indeed gone, but someone was going to revive it; check
> .programming (I think) for info on this.

  Oh ! If that's the case I apologize for my presumed statements.

Ken Tyler


Post a reply to this message

From: Ken
Subject: Re: If I follow
Date: 24 Nov 1998 08:53:02
Message: <365AB9BD.1AAA1EA5@pacbell.net>
Nieminen Mika wrote:

>   And btw, MY BIGGEST problem with povray 3.1 is that there's no povhelp
> program anymore, and that really PISSES ME OFF! Sorry, I just had to
> complain.
>   I still can't use the new features of pov3.1 because I DON'T KNOW HOW,
> damn it!

If you do not have the documentation for the new features in
Pov v3.1 due to you using the dos version I will volunteer to
copy and paste the passages detailing the new features into
a text formated file for you. May take a couple of days but
I can understand your frustration if this is the case.

Ken Tyler


Post a reply to this message

From: Ron Parker
Subject: Re: If I follow
Date: 24 Nov 1998 08:59:43
Message: <365abbcf.0@news.povray.org>
On Tue, 24 Nov 1998 05:50:53 -0800, Ken <tyl### [at] pacbellnet> wrote:
>Nieminen Mika wrote:
>
>>   And btw, MY BIGGEST problem with povray 3.1 is that there's no povhelp
>> program anymore, and that really PISSES ME OFF! Sorry, I just had to
>> complain.
>>   I still can't use the new features of pov3.1 because I DON'T KNOW HOW,
>> damn it!
>
>If you do not have the documentation for the new features in
>Pov v3.1 due to you using the dos version I will volunteer to
>copy and paste the passages detailing the new features into
>a text formated file for you. May take a couple of days but
>I can understand your frustration if this is the case.

There is documentation in a text file, but the old povhelp program that
handled hypertext, paging, and other cool features is gone.


Post a reply to this message

From: Nieminen Mika
Subject: Re: If I follow
Date: 24 Nov 1998 10:49:53
Message: <365ad5a1.0@news.povray.org>
Ken <tyl### [at] pacbellnet> wrote:
: If you do not have the documentation for the new features in
: Pov v3.1 due to you using the dos version I will volunteer to
: copy and paste the passages detailing the new features into
: a text formated file for you. May take a couple of days but
: I can understand your frustration if this is the case.

  I thank you, but the problem is not getting the documentation itself,
but getting the online popup documentation that I had in pov3.0. I copied
the povhelp program and the pov3.0 documentation to the pov3.1 directory
so I can use that, but that doesn't help with the new features.
  Maybe I'll just print the documentation, so I can use the paper version,
although it's not as handy as the popup help. But at least it's definitely
much more handy than a big text file.
  I hope that the guy making the povhelp for 3.1 gets it done some day. I
will be thankful forever.

-- 
main(i){char*_="BdsyFBThhHFBThhHFRz]NFTITQF|DJIFHQhhF";while(i=
*_++)for(;i>1;printf("%s",i-70?i&1?"[]":" ":(i=0,"\n")),i/=2);} /*- Warp. -*/


Post a reply to this message

From: Margus Ramst
Subject: Re: If I follow
Date: 24 Nov 1998 12:58:02
Message: <365AF3DA.4792ED6D@peak.edu.ee>
I don't know much about povhelp's features, but if easier browsing is wat you're
after, you might try downloading the HTML docs and use the Lynx browser to read
them. It doesn't support graphics, but at least the hypertext is there.

Margus

Nieminen Mika wrote:
> 
>   I thank you, but the problem is not getting the documentation itself,
> but getting the online popup documentation that I had in pov3.0. I copied
> the povhelp program and the pov3.0 documentation to the pov3.1 directory
> so I can use that, but that doesn't help with the new features.
>   Maybe I'll just print the documentation, so I can use the paper version,
> although it's not as handy as the popup help. But at least it's definitely
> much more handy than a big text file.
>   I hope that the guy making the povhelp for 3.1 gets it done some day. I
> will be thankful forever.
>


Post a reply to this message

From: Nieminen Mika
Subject: Re: If I follow
Date: 24 Nov 1998 16:09:10
Message: <365b2076.0@news.povray.org>
Margus Ramst <mar### [at] peakeduee> wrote:
: I don't know much about povhelp's features, but if easier browsing is wat you're
: after, you might try downloading the HTML docs and use the Lynx browser to read
: them. It doesn't support graphics, but at least the hypertext is there.

  It's not just the easy browsing, but the popup feature, ie. when I edit
the scene for example with qedit and then place the cursor over a
keyword and press alt-esc then the povhelp pops up with the help about
that keyword; this works because the povhelp stays resident in memory as
a TSR and pressing alt-esc (or whatever you have configured) activates it.
You can also copypaste easyly code from the povhelp to the editor. This
makes povhelp, IMHO, one of the best dos-programs ever made.
  I have tried lynx for dos, but it really doesn't help my problem.

-- 
main(i){char*_="BdsyFBThhHFBThhHFRz]NFTITQF|DJIFHQhhF";while(i=
*_++)for(;i>1;printf("%s",i-70?i&1?"[]":" ":(i=0,"\n")),i/=2);} /*- Warp. -*/


Post a reply to this message

From: george erhard
Subject: Re: If I follow
Date: 10 Jan 1999 19:57:13
Message: <36994CCE.248C1079@pacbell.net>
A good way to learn is to examine the source of the sample files and the
tutorials, render them, then go in and edit just one thing and see what
happens.   Read the docs, then experiment with one keyword or another to
see what it's supposed to do.

Oh yes, if you're shaky on geometry and algebraic math, you _might_ want
to get a couple of textbooks and run thru the areas you're unclear on.
With POV, math helps.

egloria wrote:

>  I am using the biggest little word in the english
> Language,I have no programming experience
> whatsoever so IF I follow the tutorials that came
> in the documentation will I be able to understand it
> so I can become a povray artist too?Right now I am
> converting the documentation to word pro so I can print
> it out without a lot of wasted space and yes I am putting
> the graphics from the tutorial in povray and tracing
> them but it has just been cutting and pasting for right
> now.

--
 george erhard
 microsoft certified system engineer
 http://home.pacbell.net/dcnblues

 remove "nospam" from domain when replying


Post a reply to this message

<<< Previous 5 Messages Goto Initial 10 Messages

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