POV-Ray : Newsgroups : povray.general : Texture: Canvas (slightly Transluscent) : Re: Texture: Canvas (slightly Transluscent) Server Time
31 Jul 2024 06:25:47 EDT (-0400)
  Re: Texture: Canvas (slightly Transluscent)  
From: Tim Attwood
Date: 19 Feb 2008 20:55:39
Message: <47bb889b$1@news.povray.org>
Probably something like this...

#declare canvas = texture {
   pigment {
      image_map {
         png "star_arrow.png"
         transmit all 0.35
      }
      rotate 90*x
   }
   normal {
      bump_map {
         png "canvas.png"
         interpolate 2
      }
      rotate 90*x
      scale 4
   }
   finish {
      specular 0.3
      roughness 0.05
   }
};

http://s201.photobucket.com/albums/aa280/Zakardis/?action=view&current=cloth_wing.png
http://s201.photobucket.com/albums/aa280/Zakardis/?action=view&current=star_arrow.png
http://s201.photobucket.com/albums/aa280/Zakardis/?action=view&current=canvas.png

It'll look a bit better with radiosity too,
since the color of the ribs will color the canvas.


Post a reply to this message

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