POV-Ray : Newsgroups : povray.general : empty blob : empty blob Server Time
31 Jul 2024 10:22:41 EDT (-0400)
  empty blob  
From: Leander
Date: 29 Mar 2007 14:10:01
Message: <web.460c0e76b1c8adc4de19c14a0@news.povray.org>
Hello,

when cut my blob like this:

intersection{
 blob{}
 box{}
}

a hollow object remains. How can I make
it solid?

Thank you,
Leander


here's an example:

#include "colors.inc"

global_settings {
    assumed_gamma 1.0
    max_trace_level 15
    ambient_light rgb <1,1,1>
}

camera {
        orthographic
        location <0, -20, 00>
    look_at <0, 0, 0>
}

light_source {
    <0, -20, 00>
    color White
}

#declare test = intersection {
 blob{
  threshold .600000
  sphere {
    <0,0,0>,
        10,10
    pigment { color rgb <1.000000,0.000000,0.785398> }
    finish { brilliance 3 phong 1 phong_size 500 }

  }
}
 box {<100,6,100>,<-100,-6,-100>}
}
object { test  rotate <0,90,0> }


Post a reply to this message

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