POV-Ray : Newsgroups : povray.unofficial.patches : Images & Isosurfaces Server Time
2 Sep 2024 12:13:04 EDT (-0400)
  Images & Isosurfaces (Message 1 to 2 of 2)  
From: Andrea Ryan
Subject: Images & Isosurfaces
Date: 11 Feb 2000 16:29:00
Message: <38A47BC8.D62A79B3@global2000.net>
Is there a quick way of using a image in isosurfaces?
Brendan Ryan


Post a reply to this message

From: Chris Huff
Subject: Re: Images & Isosurfaces
Date: 11 Feb 2000 16:52:15
Message: <chrishuff_99-27BD2B.16531911022000@news.povray.org>
In article <38A47BC8.D62A79B3@global2000.net>, Andrea Ryan 
<ary### [at] global2000net> wrote:

> Is there a quick way of using a image in isosurfaces?

The usual ways are to use a pigment function with either image_map or 
image_pattern.

#declare Image_Function =
function {
   pigment {
      image_map {IMAGE_MAP_STUFF}
   }
   or
   pigment {image_pattern {tga "image.tga"}
      color_map {[0 color Black] [1 color White]}
   }
}

isosurface {
   function {y - Image_Function(x,y,z)}
   ...
}

-- 
Chris Huff
e-mail: chr### [at] yahoocom
Web page: http://chrishuff.dhs.org/


Post a reply to this message

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