POV-Ray : Newsgroups : povray.general : Black spots in media : Black spots in media Server Time
30 Jul 2024 22:21:45 EDT (-0400)
  Black spots in media  
From: Maxime Marrow
Date: 23 Mar 2008 09:33:58
Message: <47e66a56$1@news.povray.org>
Consider the following POV-Ray code:

#include "functions.inc"

background{1}

camera {
    location  1.5
    look_at   0
}

isosurface{
  function { f_noise3d(3*x, 3*y, 3*z) - 1/2 }

  max_gradient 4

  hollow
  pigment { rgbf 1 }

  interior{
   media{
    intervals 100
    absorption 1
   }
  }
}

What is the reason for the black spots and is there a way to avoid them?

Thank you,
Maxime


Post a reply to this message

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