POV-Ray : Newsgroups : povray.binaries.images : Recycling the Bottle Collection Server Time
30 Jul 2024 08:25:32 EDT (-0400)
  Recycling the Bottle Collection (Message 1 to 9 of 9)  
From: Robert McGregor
Subject: Recycling the Bottle Collection
Date: 22 Sep 2012 12:05:03
Message: <web.505de13a837dcde2f7aa22b40@news.povray.org>
Some more fun with Bullet physics, stacking the old CGRender.com lighting
challenge #4 Bottle Collection into a recycle bin. Gobo tree shadows via an
image_pattern mask. Ground is a height_field with misc. mesh plants.

Cheers,
Rob
-------------------------------------------------
www.McGregorFineArt.com


Post a reply to this message


Attachments:
Download 'recycled_bottle_collection3.jpg' (882 KB)

Preview of image 'recycled_bottle_collection3.jpg'
recycled_bottle_collection3.jpg


 

From: Jaime Vives Piqueres
Subject: Re: Recycling the Bottle Collection
Date: 22 Sep 2012 13:25:04
Message: <505df470$1@news.povray.org>
On 22/09/12 18:03, Robert McGregor wrote:
> Some more fun with Bullet physics, stacking the old CGRender.com lighting
> challenge #4 Bottle Collection into a recycle bin. Gobo tree shadows via an
> image_pattern mask. Ground is a height_field with misc. mesh plants.
>

   Very very nice... what did you use as collision shapes?

   BTW, the floor is the best HF job I've ever seen!

--
Jaime


Post a reply to this message

From: Samuel Benge
Subject: Re: Recycling the Bottle Collection
Date: 22 Sep 2012 15:05:00
Message: <web.505e0b4ced0273cc8f71e70b0@news.povray.org>
"Robert McGregor" <rob### [at] mcgregorfineartcom> wrote:
> Some more fun with Bullet physics, stacking the old CGRender.com lighting
> challenge #4 Bottle Collection into a recycle bin. Gobo tree shadows via an
> image_pattern mask. Ground is a height_field with misc. mesh plants.
>

Great rendering, Rob! Are we having fun yet? :D

So how many different bottle types are in there? I'm counting at least four. Did
you place the plants by hand, or randomly test the height pattern for areas
likely to allow growth?

Sam


Post a reply to this message

From: Robert McGregor
Subject: Re: Recycling the Bottle Collection
Date: 22 Sep 2012 17:25:02
Message: <web.505e2b79ed0273ccf7aa22b40@news.povray.org>
Jaime Vives Piqueres <jai### [at] ignoranciaorg> wrote:
>    Very very nice... what did you use as collision shapes?

Thank you :)
The bottles are all convex hull collision and the box is triangle mesh
collision.

>    BTW, the floor is the best HF job I've ever seen!

Thanks again, but the image map has to take most of the credit for that - it's a
16-bit PNG that's 4300 x 3000 px. I used an image_pattern mask to break it up
for some "forced" realism:

#declare P_Cracked = pigment { image_map { png "cracked" interpolate 2 } }

height_field { png "cracked_bump"
   smooth
   translate -0.5
   //pigment { rgb 0.5}
   texture {
      image_pattern { png "cracked_bump" interpolate 2 }
      texture_map {
         [0
            //pigment { srgb <1,0,0> }
            pigment { P_Cracked }
            finish { diffuse 0.2 specular 0 reflection 0 }
         ]
         [1
            //pigment { srgb <0,0,1> }
            pigment { P_Cracked }
            finish { diffuse 0.5 specular 0.5 roughness 0.5
               reflection {0, 0.25 fresnel on } conserve_energy
            }
         ]
      }
      translate -0.5 rotate x*90
   }
   interior { ior 1.8 }
   scale <43/30, 0.0015, 1>
   scale 300
}

Cheers
-------------------------------------------------
www.McGregorFineArt.com


Post a reply to this message


Attachments:
Download 'concrete_heightfield.jpg' (1109 KB)

Preview of image 'concrete_heightfield.jpg'
concrete_heightfield.jpg


 

From: Robert McGregor
Subject: Re: Recycling the Bottle Collection
Date: 22 Sep 2012 17:30:01
Message: <web.505e2d72ed0273ccf7aa22b40@news.povray.org>
"Samuel Benge" <stb### [at] hotmailcom> wrote:
> Great rendering, Rob! Are we having fun yet? :D

Thanks Sam :)

> So how many different bottle types are in there? I'm counting at least four.

There are 15 different bottle types. I've attached a Silo screenshot of the raw
models before subdivision/smoothing.

Did
> you place the plants by hand, or randomly test the height pattern for areas
> likely to allow growth?

No, I just rendered an orthographic view from above with a checkerboard overlay
and & used the grid to place them (somewhat tediously) by hand. That
auto-crevice-growth idea sounds like a cool Benge project though ;)

Cheers
-------------------------------------------------
www.McGregorFineArt.com


Post a reply to this message


Attachments:
Download 'bottlescreenshot.jpg' (383 KB)

Preview of image 'bottlescreenshot.jpg'
bottlescreenshot.jpg


 

From: Robert McGregor
Subject: Re: Recycling the Bottle Collection
Date: 22 Sep 2012 17:35:01
Message: <web.505e2ec3ed0273ccf7aa22b40@news.povray.org>
Here's a gobo shadows test without textures or height_field

Cheers
-------------------------------------------------
www.McGregorFineArt.com


Post a reply to this message


Attachments:
Download 'recycle_notextures.jpg' (201 KB)

Preview of image 'recycle_notextures.jpg'
recycle_notextures.jpg


 

From: Thomas de Groot
Subject: Re: Recycling the Bottle Collection
Date: 23 Sep 2012 03:09:33
Message: <505eb5ad$1@news.povray.org>
On 22-9-2012 23:28, Robert McGregor wrote:
> No, I just rendered an orthographic view from above with a checkerboard overlay
> and & used the grid to place them (somewhat tediously) by hand. That
> auto-crevice-growth idea sounds like a cool Benge project though ;)
>
Why not using eval_pigment(map, pos)? Especially with your blue/red 
image_map that would be a breeze. I did that for my Acres of Diamonds 
contribution.

Thomas


Post a reply to this message

From: Thomas de Groot
Subject: Re: Recycling the Bottle Collection
Date: 23 Sep 2012 03:10:19
Message: <505eb5db$1@news.povray.org>
As always, a perfect image, Robert.

Thomas


Post a reply to this message

From: Robert McGregor
Subject: Re: Recycling the Bottle Collection
Date: 23 Sep 2012 10:00:00
Message: <web.505f15b0ed0273ccf7aa22b40@news.povray.org>
Thomas de Groot <tho### [at] degrootorg> wrote:
> Why not using eval_pigment(map, pos)? Especially with your blue/red
> image_map that would be a breeze. I did that for my Acres of Diamonds
> contribution.

Well, actually it's an image_pattern, not a blue/red image map (although I now
realize I mistakenly typed pigment_pattern in the image descriptions above), but
I see your point. I'll need to play with that idea a bit.

> As always, a perfect image, Robert.
>
Well, I certainly keep /trying/ for perfection; maybe one day. But thank you
very much :)

-------------------------------------------------
www.McGregorFineArt.com


Post a reply to this message

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