POV-Ray : Newsgroups : povray.binaries.images : Problems combining two isosurfaces with non-flat surface : Re: Problems combining two isosurfaces with non-flat surface Server Time
31 Jul 2024 22:14:02 EDT (-0400)
  Re: Problems combining two isosurfaces with non-flat surface  
From: Rarius
Date: 7 Mar 2009 05:02:08
Message: <49b24620$1@news.povray.org>
From the images you posted, it seems that your two isosurfaces are NOT the 
same shape, thus are not meshing together properly.

Rather than making two regions, why not make just one, then create the other 
from it...

Example:

#local oRegion=
isosurface{...}

#local oOtherRegion=
difference
{
    box{...}
    object{oRegion}
}

This way you will be guaranteed that the two regions will mesh together 
perfectly.

Rarius


Post a reply to this message

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