POV-Ray : Newsgroups : povray.binaries.images : Another blurred dice theme Server Time
15 Aug 2024 08:20:05 EDT (-0400)
  Another blurred dice theme (Message 1 to 10 of 11)  
Goto Latest 10 Messages Next 1 Messages >>>
From: Rene Schwietzke
Subject: Another blurred dice theme
Date: 20 Aug 2002 02:24:21
Message: <3d61e095@news.povray.org>
Hi,

looking forward to your comments. Rendering time 2days 11 hours on a
Pentium-II-400.

Rene

--
Rene Schwietzke
r.schwietzke<at>reneschwietzke.de


Post a reply to this message


Attachments:
Download 'dice_colors15b.jpg' (68 KB)

Preview of image 'dice_colors15b.jpg'
dice_colors15b.jpg


 

From: Martin Magnusson
Subject: Re: Another blurred dice theme
Date: 20 Aug 2002 03:56:02
Message: <3D61F60B.2070003@frustratedhousewives.zzn.com>
Good looking lighting and highlights.

/ martin


Post a reply to this message

From:  Light Beam 
Subject: Re: Another blurred dice theme
Date: 20 Aug 2002 05:18:31
Message: <3d620967@news.povray.org>
Did you used povray's focal blur ? So how ?


news: 3d61e095@news.povray.org...
> Hi,
>
> looking forward to your comments. Rendering time 2days 11 hours on a
> Pentium-II-400.
>
> Rene
>
> --
> Rene Schwietzke
> r.schwietzke<at>reneschwietzke.de
>


Post a reply to this message

From: Marcus Fritzsch
Subject: Re: Another blurred dice theme
Date: 20 Aug 2002 07:26:11
Message: <3D622738.5020505@fritschy.de>
Hi Rene,

Rene Schwietzke schrieb:
> looking forward to your comments. Rendering time 2days 11 hours on a
> Pentium-II-400.
It looks very nice, would you mind to render some of these at 1024x768 
or similar for wallpaper-use? :o)

greetz, Marcus


Post a reply to this message

From: Rene Schwietzke
Subject: Re: Another blurred dice theme
Date: 20 Aug 2002 08:47:51
Message: <3d623a77$1@news.povray.org>
Hi,

I am rendering a 5250x3500 pixel image for zazzle.com at the moment,
therefore a wallpaper version is possible too.

Rene
"Marcus Fritzsch" <m### [at] fritschyde> wrote in message
news:3D6### [at] fritschyde...
> Hi Rene,
>
> Rene Schwietzke schrieb:
> > looking forward to your comments. Rendering time 2days 11 hours on a
> > Pentium-II-400.
> It looks very nice, would you mind to render some of these at 1024x768
> or similar for wallpaper-use? :o)
>
> greetz, Marcus
>


Post a reply to this message

From: Rene Schwietzke
Subject: Re: Another blurred dice theme
Date: 20 Aug 2002 08:51:26
Message: <3d623b4e@news.povray.org>
Of course I used the POV-Ray 3.5 focual blur feature, see my settings:

// ----------------------------------------
camera {
  location  <.5, 30, .5>
  right     x*image_width/image_height
  look_at   <0, 0, 0>
  angle 50

  // focal blur settings
  aperture 0.5           // [0...N] larger is narrower depth of field
(blurrier)
  blur_samples 150        // number of rays per pixel for sampling
  focal_point <0,22,0>    // point that is in focus <X,Y,Z>
  variance 0
  confidence 0.9999999
}

Any questions, do not hesitate to ask!

Rene

"_Light_Beam_" <fac### [at] aolcom> wrote in message
news:3d620967@news.povray.org...
> Did you used povray's focal blur ? So how ?
>

> news: 3d61e095@news.povray.org...
> > Hi,
> >
> > looking forward to your comments. Rendering time 2days 11 hours on a
> > Pentium-II-400.
> >
> > Rene
> >
> > --
> > Rene Schwietzke
> > r.schwietzke<at>reneschwietzke.de
> >
>
>


Post a reply to this message

From: Rob Hoopman
Subject: Re: Another blurred dice theme
Date: 20 Aug 2002 14:30:04
Message: <3D62A6E4.7020906@tuna.nl>
Just my luck,
I got started on povray a week ago and just now got around to around on 
usenet....
My pride and joy rendering so far... I guess you already feel this 
coming: Dice!
Thanks for putting me back in my place ;-)

FWIW: I like some of your earlier renders better where the middle ones 
are in focus.
Never the less you sure beat my dice hands down.

I guess it's time for me to find some other geometrically simple subject 
to render as you managed to steal my thunder.

Regards,
Rob

Rene Schwietzke wrote:
> Hi,
> 
> looking forward to your comments. Rendering time 2days 11 hours on a
> Pentium-II-400.
> 
> Rene
> 
> --
> Rene Schwietzke
> r.schwietzke<at>reneschwietzke.de
> 
> 
> ------------------------------------------------------------------------
>


Post a reply to this message

From: Marcus Fritzsch
Subject: Re: Another blurred dice theme
Date: 20 Aug 2002 17:28:33
Message: <3D62B464.3030509@fritschy.de>
Hi,

me again, i'm interested in what finish-settings do you used for the 
dices? I tried to get something similar looking, but the specular 
reflection does not look good...

greetz, Marcus


Post a reply to this message

From: Rene Schwietzke
Subject: Re: Another blurred dice theme
Date: 21 Aug 2002 05:19:57
Message: <3d635b3d@news.povray.org>
Hi,

these are my script settings. It is part of a macro that accepts colorValue
and developmentValue as parameters.

Rene

    #if (developmentValue = off)
        #local BodyColorFiltered = color colorValue filter filterValue;
    #else
        #local BodyColorFiltered = color colorValue;
    #end
    #local BodyColor = colorValue;

    #local DiceBodyInterior=
    interior
    {

        ior 1.765

        fade_color BodyColor
        fade_power 1001
        fade_distance .25

        caustics .1
    };

    #local DiceBodyTexture=
    texture
    {
        pigment
        {
            color BodyColorFiltered
        }

        #if (developmentValue = off)
            finish
            {
                reflection {.01,.1 fresnel on}
                ambient 0.01
                diffuse 0.01
                phong 0.3
                phong_size 40

                specular .2
                roughness 0.05

                brilliance 10

                conserve_energy
            }
        #end
    };

    #local DicePointTexture=
    texture
    {
        pigment {color White}
        finish
        {
            phong .4
            ambient .2
        }
    };

    #local DiceMaterial=
    material
    {
        #if (developmentValue = off)
            interior { DiceBodyInterior }
        #end
        texture  { DiceBodyTexture }
    };

Rene
"Marcus Fritzsch" <m### [at] fritschyde> wrote in message
news:3D6### [at] fritschyde...
> Hi,
>
> me again, i'm interested in what finish-settings do you used for the
> dices? I tried to get something similar looking, but the specular
> reflection does not look good...
>
> greetz, Marcus
>


Post a reply to this message

From: Rafal 'Raf256' Maj
Subject: Re: Another blurred dice theme
Date: 21 Aug 2002 05:50:53
Message: <Xns927177E5222E4raf256com@204.213.191.226>
"Rene Schwietzke" <ren### [at] reneschwietzkede> wrote in 
news:3d623a77$1@news.povray.org

> Hi,
> I am rendering a 5250x3500 pixel image for zazzle.com at the moment,
> therefore a wallpaper version is possible too.

btw. how Zaazle works ? do authors of images get any money from it ? Or is 
pov-team supported ?

-- 
#macro g(U,V)(.4*abs(sin(9*sqrt(pow(x-U,2)+pow(y-V,2))))*pow(1-min(1,(sqrt(
pow(x-U,2)+pow(y-V,2))*.3)),2)+.9)#end#macro p(c)#if(c>1)#local l=mod(c,100
);g(2*div(l,10)-8,2*mod(l,10)-8)*p(div(c,100))#else 1#end#end light_source{
y 2}sphere{z*20 9pigment{function{p(26252423)*p(36455644)*p(66656463)}}}//M


Post a reply to this message

Goto Latest 10 Messages Next 1 Messages >>>

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