POV-Ray : Newsgroups : povray.binaries.images : Simplicity Server Time
17 Aug 2024 16:16:32 EDT (-0400)
  Simplicity (Message 1 to 8 of 8)  
From: Thomas Lake
Subject: Simplicity
Date: 2 Sep 2001 19:47:00
Message: <3b92c4f4@news.povray.org>
There is something really lovely about the simple images. There are a few
things I'd like to change here, but I like the lighting scheme I have here.


Post a reply to this message


Attachments:
Download 'light.jpg' (46 KB)

Preview of image 'light.jpg'
light.jpg


 

From: Bill DeWitt
Subject: Re: Simplicity
Date: 2 Sep 2001 21:41:00
Message: <3b92dfac@news.povray.org>
"Thomas Lake" <tla### [at] homecom> wrote in message
news:3b92c4f4@news.povray.org...
> There is something really lovely about the simple images. There are a few
> things I'd like to change here, but I like the lighting scheme I have
here.

    That must be radiosity that makes the interesting paint faults in the
corners of the walls?


Post a reply to this message

From: Thomas Lake
Subject: Re: Simplicity
Date: 2 Sep 2001 22:27:22
Message: <3b92ea8a@news.povray.org>
>     That must be radiosity that makes the interesting paint faults in the
> corners of the walls?

Yup radiosity artefacts.


Post a reply to this message

From: Bill DeWitt
Subject: Re: Simplicity
Date: 2 Sep 2001 23:23:26
Message: <3b92f7ae@news.povray.org>
"Thomas Lake" <tla### [at] homecom> wrote in message
news:3b92ea8a@news.povray.org...
> >     That must be radiosity that makes the interesting paint faults in
the
> > corners of the walls?
>
> Yup radiosity artefacts.

    I like things that make good effects but are not really intended.


Post a reply to this message

From: Thomas Lake
Subject: Re: Simplicity
Date: 3 Sep 2001 01:05:01
Message: <3b930f7d$1@news.povray.org>
>     I like things that make good effects but are not really intended.

Yeah I guess I could keep them an say the previous owners did a bad paint
job:-)


Post a reply to this message

From: Nekar Xenos
Subject: Re: Simplicity
Date: 3 Sep 2001 07:05:14
Message: <3b9363ea@news.povray.org>
Luv the globe. Could you please post the code?

- Nekar

"Thomas Lake" <tla### [at] homecom> wrote in message news:3b92c4f4@news.povray.org...
> There is something really lovely about the simple images. There are a few
> things I'd like to change here, but I like the lighting scheme I have here.
>
>
>


Post a reply to this message

From: Thomas Lake
Subject: Re: Simplicity
Date: 3 Sep 2001 17:31:03
Message: <3b93f697@news.povray.org>
The whole light fixture is actually modeled in Rhino, there is a lot of
detail in the light bulb that you can not see at this distance and would be
very hard to model in Pov. However the glob itself should be easily
reproducible using a lathe object. I suppose the thing that makes it look
neat is the texture, see below, and the glowing filament. The filament is
made up of 1000 glow objects placed along a pentagon shaped spline to
simulate the shape of the filament in a real bulb. The rest of the scene was
modelled and textures in Moray, one thing that I really find annoying about
Moray is the fact that it uses the right handed coordinate system, making
very frustrating to edit the file by hand, especially if you want to place a
scripted object in the scene not producible in Moray.

Glob texture:

   material  // Glass Ball Glass
   {
      texture
      {
         pigment
         {
            color rgbft <0.584314, 0.454902, 0.0, 0.3, 0.692>
         }
         finish
         {
            ambient 0.0
            specular 0.223
            reflection 0.1
         }
      }
      interior
      {
         ior 1.03
      }
   }

Light Bulb Glass:

   material  // Glass bulb
   {
      texture
      {
         pigment
         {
            color rgbt <1.0, 1.0, 1.0, 0.9>
         }
         finish
         {
            ambient 0.0
            phong 1.0
            phong_size 50.993333
         }
      }
      interior
      {
         ior 1.01
      }
   }

"Nekar Xenos" <j-p### [at] citywalkcoza> wrote in message
news:3b9363ea@news.povray.org...
> Luv the globe. Could you please post the code?
>
> - Nekar
>
> "Thomas Lake" <tla### [at] homecom> wrote in message
news:3b92c4f4@news.povray.org...
> > There is something really lovely about the simple images. There are a
few
> > things I'd like to change here, but I like the lighting scheme I have
here.
> >
> >
> >
>
>


Post a reply to this message

From: Nekar Xenos
Subject: Re: Simplicity
Date: 4 Sep 2001 02:05:27
Message: <3b946f27@news.povray.org>
Thanks,
-Nekar
"Thomas Lake" <tla### [at] homecom> wrote in message news:3b93f697@news.povray.org...
> The whole light fixture is actually modeled in Rhino, there is a lot of
> detail in the light bulb that you can not see at this distance and would be
> very hard to model in Pov. However the glob itself should be easily
> reproducible using a lathe object. I suppose the thing that makes it look
> neat is the texture, see below, and the glowing filament. The filament is
> made up of 1000 glow objects placed along a pentagon shaped spline to
> simulate the shape of the filament in a real bulb. The rest of the scene was
> modelled and textures in Moray, one thing that I really find annoying about
> Moray is the fact that it uses the right handed coordinate system, making
> very frustrating to edit the file by hand, especially if you want to place a
> scripted object in the scene not producible in Moray.
>
> Glob texture:
>
>    material  // Glass Ball Glass
>    {
>       texture
>       {
>          pigment
>          {
>             color rgbft <0.584314, 0.454902, 0.0, 0.3, 0.692>
>          }
>          finish
>          {
>             ambient 0.0
>             specular 0.223
>             reflection 0.1
>          }
>       }
>       interior
>       {
>          ior 1.03
>       }
>    }
>
> Light Bulb Glass:
>
>    material  // Glass bulb
>    {
>       texture
>       {
>          pigment
>          {
>             color rgbt <1.0, 1.0, 1.0, 0.9>
>          }
>          finish
>          {
>             ambient 0.0
>             phong 1.0
>             phong_size 50.993333
>          }
>       }
>       interior
>       {
>          ior 1.01
>       }
>    }
>
> "Nekar Xenos" <j-p### [at] citywalkcoza> wrote in message
> news:3b9363ea@news.povray.org...
> > Luv the globe. Could you please post the code?
> >
> > - Nekar
> >
> > "Thomas Lake" <tla### [at] homecom> wrote in message
> news:3b92c4f4@news.povray.org...
> > > There is something really lovely about the simple images. There are a
> few
> > > things I'd like to change here, but I like the lighting scheme I have
> here.
> > >
> > >
> > >
> >
> >
>
>


Post a reply to this message

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