POV-Ray : Newsgroups : povray.binaries.images : Garden - Work in Progress Server Time
4 Oct 2024 01:17:49 EDT (-0400)
  Garden - Work in Progress (Message 15 to 24 of 24)  
<<< Previous 10 Messages Goto Initial 10 Messages
From: Ken
Subject: Re: Garden - Work in Progress
Date: 5 Oct 1999 14:37:00
Message: <37FA4542.8DC01535@pacbell.net>
Tika wrote:

> > OTOH you could difference a box inside: right now it looks like a solid
> > box with a circular hole rather than an empty box with a circular
> > opening...
> 
> Oh, NOW I see what you're saying... I think instead of the cube I made up in
> sPatch, I will use some planes to make a hollow box intead. That'll be
> tricky - not sure if POV-Ray has square surfaces that can be put together.
> 
> --
> 
> Tika

Here is an example of "differencing" one object from another as was
suggested before. Triangles may not work well for your application
because they have no thickness plus you cannot cut a hole through
the face of a triangle so modelling the hole would be a real problem.
While a plane may be ok for making a box I think you will be much
better off if you spend some time learning how to use the box object
instead. It is one of the most important objects in POV-Ray and if
you don't spend some time with the basics you will never get anywhere
with the program.

In this example the first box is the shell of the bird house, the second
box is used to hollow it out, and the cylinder is used to cut the hole
in the face of the house. I added a simple camera and light source so
that you can render it to see how effective it is.

camera{ location<-1.5,0,-5>look_at 0}
light_source {<-20,0,-50>rgb 1}

difference {
             box {  -1, 1 }
             box { -.9,.9 }
        cylinder { < 0, 0,-1.1>,<0,0,-.75>,.3}
          pigment{ rgb 1}
}

Enjoy,

-- 
Ken Tyler
1100+ Povray, Graphics, 3D Rendering, and Raytracing Links:
http://home.pacbell.net/tylereng/index.html


Post a reply to this message

From: Bob Hughes
Subject: Re: Garden - Work in Progress
Date: 5 Oct 1999 17:08:42
Message: <37fa68da@news.povray.org>
Glad a couple people caught this in time (hopefully).  May as well use that
'disc' with a black 'pigment' on there if using just planes for box sides,
unless they are CSG'd together right (I think).

Bob

Ken <tyl### [at] pacbellnet> wrote in message
news:37FA4542.8DC01535@pacbell.net...
>
>
> Tika wrote:
>
> > > OTOH you could difference a box inside: right now it looks like a
solid
> > > box with a circular hole rather than an empty box with a circular
> > > opening...
> >
> > Oh, NOW I see what you're saying... I think instead of the cube I made
up in
> > sPatch, I will use some planes to make a hollow box intead. That'll be
> > tricky - not sure if POV-Ray has square surfaces that can be put
together.
> >
> > --
> >
> > Tika
>
> Here is an example of "differencing" one object from another as was
> suggested before. Triangles may not work well for your application
> because they have no thickness plus you cannot cut a hole through
> the face of a triangle so modelling the hole would be a real problem.
> While a plane may be ok for making a box I think you will be much
> better off if you spend some time learning how to use the box object
> instead. It is one of the most important objects in POV-Ray and if
> you don't spend some time with the basics you will never get anywhere
> with the program.
>
> In this example the first box is the shell of the bird house, the second
> box is used to hollow it out, and the cylinder is used to cut the hole
> in the face of the house. I added a simple camera and light source so
> that you can render it to see how effective it is.
>
> camera{ location<-1.5,0,-5>look_at 0}
> light_source {<-20,0,-50>rgb 1}
>
> difference {
>              box {  -1, 1 }
>              box { -.9,.9 }
>         cylinder { < 0, 0,-1.1>,<0,0,-.75>,.3}
>           pigment{ rgb 1}
> }
>
> Enjoy,
>
> --
> Ken Tyler
> 1100+ Povray, Graphics, 3D Rendering, and Raytracing Links:
> http://home.pacbell.net/tylereng/index.html


Post a reply to this message

From: Bob Hughes
Subject: Re: Garden - Work in Progress
Date: 5 Oct 1999 17:13:12
Message: <37fa69e8@news.povray.org>
'normal' is what you need to look into then for causing some surface changes
which will then be made more visible by the 'specular' or 'phong'
highlighting.

Crash course POV-Ray Instructor,
Bob (aka computer-crash Bob) j/k!

Tika <sum### [at] hotmailcom> wrote in message
news:37fa3f4c@news.povray.org...
> Bob Hughes <inv### [at] aolcom> wrote in message
> news:37f950f7@news.povray.org...
> > 'ambient', if too high (1 max is typical, 0.1 is default) will tend to
> > flatten the colors on shapes and leave you without enough contrast.
Same
> > can happen if adding 'no_shadow' to the object or 'shadowless' to your
> > light.  Takes some learning time, just keep at it.  The variations are
so
> > endless that unless you use defaults you could end up with anything
> > practically.
>
> Well, I never set any 'ambient' in the picture that I know of... I just
used
> defaults that came up when I inserted code from the code menu or made
myself.
> I'll have to experiement with ambient to see what it does to the picture.
>
> > If by "shine" you mean let the light shine off of it like a reflected
glare,
> > that can be tough since it gets based upon orientation of all three
things,
> > camera, light and object.  You have to think in terms of real world
> > instances of things and position accordingly.  Other than that, by
varying
> > the 'roughness' for 'specular' you can change how much and how wide a
> > surface area gets affected.
>
> Ah, ok. I'm thinking, I want the treehouse roof, house, hole and perch to
look
> like painted wood, and the post to look like painted rough metal (you
know,
> the kind of posts with little dimples in it :) I think I'll try and make
my
> own textures (not image maps :) for that - if I learn how to make
textures,
> that is. <G>
>
> > Btw, please don't put a black 'disc' on there for the openings, okay?
 : )
>
> I don't want to either. :) I wanted the hole to look real - like you can
peer
> into it, so I think I'll leave the hole as is. After all, a real birdhouse
> actually has a *hole* in it, so thus should my model, IMHO.
>
>
> --
>
> Tika
>
> Tika's Graphics: http://www.5thpower.com/tika/
>
>


Post a reply to this message

From: Bob Hughes
Subject: Re: Garden - Work in Progress
Date: 5 Oct 1999 17:22:08
Message: <37fa6c00@news.povray.org>
Real neat place there, I checked out most of the images.  If you have a
monitor like my old 486 PC had it would explain why you generally have
brighter, and thus faded pictures compared to what I'm seeing here on this
current one.
Always hard to tell if it's intentional or out of neccessity when the
pictures are light or dark.

Bob

Tika <sum### [at] hotmailcom> wrote in message
news:37fa3f4a@news.povray.org...
> Bob Hughes <inv### [at] aolcom> wrote in message
> news:37f948f2@news.povray.org...
>
> > I hadn't even considered the frame being 2D the dop shadow might have
been a
> > tip-off but you have good area light shadows in the picture besides too,
> > unless of course you were post-processing on those also.
>
> I don't think I did any post-processing of the lighting. Sometimes I do
adjust
> gamma and brightness but this one I didn't have to. The frame is two Blade
Pro
> Presets (www.flamingpear.com) for Photoshop/Paint Shop Pro. The basket
weave
> is one of my own presets and the golden frame color is one I found on the
> 'net. I just put one over the other (white area, basketweave, then again
with
> gold). I normally add drop shadow for frames.
>
> I'm so used to "framing" my objects for two reasons: One being that I
frequent
> alt.binaries.comp-graphics which is 2D and 3D art and I like to keep the
> images small, and picture-like, and two - I like to have it look like
> something for a gallery (ie. my art gallery found at my site :) I have to
get
> with it and update the gallery, too, and add my models I made.
>
>
> --
>
> Tika
>
> Tika's Graphics: http://www.5thpower.com/tika/
>
>


Post a reply to this message

From: Tika
Subject: Re: Garden - Work in Progress
Date: 6 Oct 1999 18:44:15
Message: <37fbd0bf@news.povray.org>
Jerome M. BERGER <jbe### [at] enstfr> wrote in message
news:37FA423A.38626F35@enst.fr...

> I'm not sure planes would do what you want: plane are actually solid
> object, not surfaces, in POV: one side is "inside" and the other is
> "outside" so if you difference a cylinder from a plane you won't get a
> hole that allows you to see what's on the other side, but you'll get the
> same kind of hole you already have with your box. I believe the easiest
> way to get what you want is to difference a slightly smaller box from
> the birdhouse:

I was just thinking the same before I checked my messages. :) I'll try out
your code - thanks.

--

Tika

Tika's Graphics: http://www.5thpower.com/tika/


Post a reply to this message

From: Tika
Subject: Re: Garden - Work in Progress
Date: 6 Oct 1999 18:44:16
Message: <37fbd0c0@news.povray.org>
Ken <tyl### [at] pacbellnet> wrote in message
news:37FA4542.8DC01535@pacbell.net...

> better off if you spend some time learning how to use the box object
> instead. It is one of the most important objects in POV-Ray and if
> you don't spend some time with the basics you will never get anywhere
> with the program.

Thanks... I forgot about the box object - I had used it some while doing some
of the POV Tutorials. Thanks for the code too... I'll try this out.


--

Tika

Tika's Graphics: http://www.5thpower.com/tika/


Post a reply to this message

From: Tika
Subject: Re: Garden - Work in Progress
Date: 6 Oct 1999 18:44:17
Message: <37fbd0c1@news.povray.org>
Bob Hughes <inv### [at] aolcom> wrote in message
news:37fa6c00@news.povray.org...
> Real neat place there, I checked out most of the images.

Thanks. :) Most stuff in my gallery at my site was done in Paint Shop Pro.

> If you have a monitor like my old 486 PC had it would explain why
> you generally have brighter, and thus faded pictures compared to
> what I'm seeing here on this current one. Always hard to tell if
> it's intentional or out of neccessity when the pictures are light
> or dark.

I have a CTX VL-400 and only a bit over a year old. And using Win98, then
there's color management to worry about (or else what I see in other programs
won't match what I see in PSP). Now days, getting things to look the same on
all monitors is nothing short of rocket science, IMHO. It looks fine on my
system. I've never had anyone mention that my pictures are "faded" looking,
either. That's the first I've ever heard that.

Not to offend, but maybe your brightness and contrast isn't near "center"? Or
the monitor might be going? I had that happen on an older CTX one time before
the brightness circuitry went haywire. (Thus why I bought my VL-400 :)

I'll leave things as is though, unless I get many others having the same
problem.


--

Tika

Tika's Graphics: http://www.5thpower.com/tika/


Post a reply to this message

From: Bob Hughes
Subject: Re: Garden - Work in Progress
Date: 7 Oct 1999 20:21:20
Message: <37fd3900@news.povray.org>
The monitor adjustments I try are usually in vain.  It's a two year + old
IBM monitor, probably fine.  But I can never seem to get the "black" nothing
onscreen background without reducing everything to a darkened mess or
terrible contrast.  Basically I don't think this thing ever could do a pure
black screen.

Bob

Tika <sum### [at] hotmailcom> wrote in message
news:37fbd0c1@news.povray.org...
> Not to offend, but maybe your brightness and contrast isn't near "center"?
Or
> the monitor might be going? I had that happen on an older CTX one time
before
> the brightness circuitry went haywire. (Thus why I bought my VL-400 :)


Post a reply to this message

From: GrimDude
Subject: Re: Garden - Work in Progress
Date: 8 Oct 1999 01:27:33
Message: <37fd80c5@news.povray.org>
Same here, Bob.

--
GrimDude
gri### [at] netzerocom

Bob Hughes <inv### [at] aolcom> wrote in message
news:37fd3900@news.povray.org...
> The monitor adjustments I try are usually in vain.  It's a two year + old
> IBM monitor, probably fine.  But I can never seem to get the "black"
nothing
> onscreen background without reducing everything to a darkened mess or
> terrible contrast.  Basically I don't think this thing ever could do a
pure
> black screen.
>
> Bob


Post a reply to this message

From: Tika
Subject: Re: Garden - Work in Progress
Date: 8 Oct 1999 10:40:20
Message: <37fe0254@news.povray.org>
Bob Hughes <inv### [at] aolcom> wrote in message
news:37fd3900@news.povray.org...

> The monitor adjustments I try are usually in vain.  It's a two year + old
> IBM monitor, probably fine.  But I can never seem to get the "black" nothing
> onscreen background without reducing everything to a darkened mess or
> terrible contrast.  Basically I don't think this thing ever could do a pure
> black screen.

Ahhh. ok. That's why things will look so bright and washed out on your
monitor. My monitor can give me a totally black background and yet produce
rich, vivid colors as well, all on the same screen. My other CTX I had before
this one took 5 years of almost constant use (on 3 different computers, and
survived when I had to move) before the thing went "too bright" - like your
IBM, you got a charcoal dark dark grey background but never pure black (where
before the brightness circuit blew, it would give pure black). But 2 years
seems an awful short life span for a monitor. Sounds like a not-so-good
monitor. CTX's VL-400 I bought for around $153 shipped from CMO/New MMI about
a year or so ago. I'm happy with it so far.


--

Tika

Tika's Graphics: http://www.5thpower.com/tika/


Post a reply to this message

<<< Previous 10 Messages Goto Initial 10 Messages

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