POV-Ray : Newsgroups : povray.newusers : blob between declared object : Re: blob between declared object Server Time
4 Sep 2024 18:13:48 EDT (-0400)
  Re: blob between declared object  
From: Greg M  Johnson
Date: 9 Sep 2002 09:05:39
Message: <3d7c9ca3$2@news.povray.org>
"Christoph Hormann" <chr### [at] gmxde> wrote in message
news:3D788DD2.8471C63E@gmx.de...
>
> Where is written that the blob object accepts arbitrary
> objects as components?
>

You *should* be able to do something along the lines of what he's trying.
Here's the workaround:

Use macros!

#macro blobby1()
        sphere{x,2,1}
        sphere{y,2,1}
#end

#macro blobby2()
        sphere{-x,2,1}
#end

blob{
threshold 0.1
blobby1()
blobby2()
translate 8*z
pigment{rgb 1} finish{ambient 1}
}


Post a reply to this message

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