POV-Ray : Newsgroups : povray.general : 4.0 Feature discussion : Re: 4.0 Feature discussion Server Time
9 Aug 2024 19:35:48 EDT (-0400)
  Re: 4.0 Feature discussion  
From: Greg M  Johnson
Date: 12 Sep 2000 08:38:29
Message: <39BE228D.5A10A193@my-dejanews.com>
"Greg M. Johnson" wrote:

> isosurface{
>           function{y/290+noise3d(x*0.05,y**0.05,z**0.05)}
>            accuracy 0.01
>            threshold .21
>            contained_by {sphere{0,100}}
>         pigment{SeaGreen}
>         finish{ambient 0.1}
>         }

In case anyone wanted to try this at home, there's a typo above.  What I literally
did was this:

#declare fnoise=.05;
#declare  MyObject=
isosurface{
          function{y/290+
                  noise3d(x*fnoise,y*fnoise,z*fnoise)/1
                  }
           accuracy 0.01
           threshold .21
           contained_by {
                      sphere{0,100}
                        }
        pigment{SeaGreen}
        finish{ambient 0.1}

        }


Post a reply to this message

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