POV-Ray : Newsgroups : povray.general : Trying to Apply Focal Blur on an Orthographic Projection : Re: Trying to Apply Focal Blur on an Orthographic Projection Server Time
16 Apr 2024 09:11:48 EDT (-0400)
  Re: Trying to Apply Focal Blur on an Orthographic Projection  
From: Drawliphant
Date: 13 Nov 2019 09:55:07
Message: <web.5dcc1822c35fe2b53cd9f1c00@news.povray.org>
> // for scaling the noise function
> #declare XS = 0.001;
> #declare YS = 0.001;
> #declare ZS = 0.01;
>
>   isosurface {
>
>     function {abs (BlurPlane (x/XS, y/YS, z/ZS)) - Thickness}
>     //open
>     threshold 0.5
>     //max_gradient 10
>     accuracy     0.01
>     evaluate Gradient*Min_factor,  sqrt(Gradient/(Gradient*Min_factor)),  min
> (0.7, 1.0)
>     contained_by {box {<-3, -2, -1>*Range, <Whole*3, 2.3, 1>*Range}}
>     hollow
>       texture {T_Glass}
>       interior {I_Glass}
>       //texture {Tex1}
>      scale 1
>      rotate x*1 // Seems absolutely essential!  :O
>      translate <-1.5, -0.5, -7>
>     }

This is great! If I can't get focal blur working how I want it I can blur it
with this. I'm pretty new so when people where talking about a blur plane I had
no idea how to make that. I'll try veeery small aperatures first then try this
one


Post a reply to this message

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