|
|
|
|
|
|
| |
| |
|
|
|
|
| |
| |
|
|
I've been using povray for close to 2 years and I'm having a prolem thats
probably very simple to solve, but can't seem to do it.
I'll create my scene, add lights and camera. when I run it It displays
nothing. I've tried using this code (in 3.1g and 3.5b), and nothing just a
black image. Am i doing something wrong?
camera {
location <5, 5, 5>
look_at <0, 0, 0>
}
light_source {
<45, 35, 25> color 1
}
sphere {
<0, 0, 0>, 1
pigment {
color 1
}
}
--
Kevin
http://www.geocities.com/qsquared_1999/
Post a reply to this message
|
|
| |
| |
|
|
|
|
| |
| |
|
|
Kevin Loney wrote:
>
> sphere {
> }
> }
>
"color 1" is interpretated as color rgbft 1 which makes the sphere
compleatly transparent. Use "color rgb 1" or "color White" instead.
- Micha
Post a reply to this message
|
|
| |
| |
|
|
|
|
| |
| |
|
|
"Micha Riser" <mri### [at] gmxnet> wrote in message
news:3bc0b2fd$1@news.povray.org...
> Kevin Loney wrote:
> >
> > sphere {
> > <0, 0, 0>, 1
> > pigment {
> > color 1
> > }
> > }
> >
>
> "color 1" is interpretated as color rgbft 1 which makes the sphere
> compleatly transparent. Use "color rgb 1" or "color White" instead.
Or just pigment {rgb 1 }
Post a reply to this message
|
|
| |
| |
|
|
|
|
| |
| |
|
|
> Or just pigment {rgb 1 }
Or use colors.inc, and then pigment{White}. That's very clear... I
don't understand why people don't use colors.inc more often. I almost
never type "rgb": I'm feel lost finding colors that way.
--
Jaime Vives Piqueres
La Persistencia de la Ignorancia
http://www.ignorancia.org/
Post a reply to this message
|
|
| |
| |
|
|
|
|
| |
| |
|
|
"Jaime Vives Piqueres" <jai### [at] ignoranciaorg> wrote in message
news:3BC0CA63.153FB729@ignorancia.org...
> > Or just pigment {rgb 1 }
>
> Or use colors.inc, and then pigment{White}. That's very clear... I
> don't understand why people don't use colors.inc more often. I almost
> never type "rgb": I'm feel lost finding colors that way.
Funny, I never even use colors.inc anymore. I had a color picker for a
while, but then I got used to rgb and can pretty much type out my color
first or second try. Especially since I rarely want rgb 1 but might want rgb
<1.1, 0.9, 0.9 >
Post a reply to this message
|
|
| |
| |
|
|
|
|
| |
| |
|
|
Bill DeWitt wrote:
>
> "Jaime Vives Piqueres" <jai### [at] ignoranciaorg> wrote in message
> news:3BC0CA63.153FB729@ignorancia.org...
> > > Or just pigment {rgb 1 }
> >
> > Or use colors.inc, and then pigment{White}. That's very clear... I
> > don't understand why people don't use colors.inc more often. I almost
> > never type "rgb": I'm feel lost finding colors that way.
>
> Funny, I never even use colors.inc anymore. I had a color picker for a
> while, but then I got used to rgb and can pretty much type out my color
> first or second try. Especially since I rarely want rgb 1 but might want rgb
> <1.1, 0.9, 0.9 >
I find it easier to type rgb 1 that it is to type White. Also, you don't
have to spend time typing #include "colors.inc" into every scene file you
make.
--
Ken Tyler
Post a reply to this message
|
|
| |
| |
|
|
|
|
| |
| |
|
|
"Ken" <tyl### [at] pacbellnet> wrote :
>
> I find it easier to type rgb 1 that it is to type White. Also, you don't
> have to spend time typing #include "colors.inc" into every scene file you
> make.
There's that, but I have insert menus for that (or did, I am still
working on new ones). Mostly I find "white" or "blue" to -not- be what I
want. I want the box of crayons that have the 63 million colors.
Post a reply to this message
|
|
| |
| |
|
|
|
|
| |
| |
|
|
Bill DeWitt wrote:
> There's that, but I have insert menus for that (or did, I am still
> working on new ones). Mostly I find "white" or "blue" to -not- be what I
> want. I want the box of crayons that have the 63 million colors.
Same here. I am prefectly comfortable describing my own colors as needed.
But that is the beauty of POV-Ray. People can use it anyway they want
and if some people find using colors.inc easier than designing their own
colors then more power to them.
--
Ken Tyler
Post a reply to this message
|
|
| |
| |
|
|
|
|
| |
| |
|
|
"Ken" <tyl### [at] pacbellnet> wrote :
>
> Same here. I am prefectly comfortable describing my own colors as needed.
I might be tempted by a color select box on the tool bar of the editor.
Something that if you clicked on the one out of 16 or somewhere on the
rainbow box it would then type in "rgb <n.nn, n.nn, n.nn >. But anything
else is just too time consuming for the value returned. I dont' even use the
insert menu pigments becuas it takes longer than typing a rgb value.
> But that is the beauty of POV-Ray. People can use it anyway they want
> and if some people find using colors.inc easier than designing their own
> colors then more power to them.
Sure, and it is good while learning to do other things.
Post a reply to this message
|
|
| |
| |
|
|
|
|
| |
| |
|
|
> working on new ones). Mostly I find "white" or "blue" to -not- be what I
> want. I want the box of crayons that have the 63 million colors.
Oh, well... I never said I use the colors in colors.inc as they are!
;) I use them as a palette of known colors to mix. It is easy for me to
think on something like "White*.9+Red*.1" when a I want a light pink. I
don't care if it's longer and I don't mind typing '#include
"colors.inc"': it is worth for me.
--
Jaime Vives Piqueres
La Persistencia de la Ignorancia
http://www.ignorancia.org/
Post a reply to this message
|
|
| |
| |
|
|
|
|
| |