POV-Ray : Newsgroups : povray.general : pigment image map big image : Re: pigment image map big image Server Time
29 Jul 2024 02:28:18 EDT (-0400)
  Re: pigment image map big image  
From: Cousin Ricky
Date: 2 Jul 2013 14:20:01
Message: <web.51d318b8958a06f478641e0c0@news.povray.org>
"handos" <han### [at] gmailcom> wrote:
> plane {
>     y,0
>     translate table3_pos
>     translate 300*y
>     pigment {
>       image_map {png "floor_stonechip.png"}
>     }
>   }

Image maps map to the x-y plane.  You need to rotate the pigment:

    pigment {
      image_map {png "floor_stonechip.png"}
      rotate 90 * x
    }


Post a reply to this message

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