|
 |
Le 2026-06-23 à 11:42, koppi a écrit :
> Hi, the texture in the box of oranges scene is sonehow flipped from right to
> left. I want to fix this but do not know how. Can anybody give me a hint how to
> flip the logo image_map texture?
>
> #declare m_madera_cajon=
> material{
> texture{
> pigment{
> image_map{jpeg "flat_wood_4022164.JPG" interpolate 2}
> }
> normal{
> bump_map{jpeg "flat_wood_4022164.JPG" bump_size 1}
> }
> rotate 90*z
> scale .5
> }
> texture{
> pigment{
> image_map{png "logo" interpolate 2}
> }
> }
> }
>
> --
> koppi
>
I see 2 easy ways :
1) Change rotate 90*z for rotate -90*z
2) Change image_map{png "logo" interpolate 2} to image_map{png "logo"
interpolate 2 scale <-1, 1, -1>}
Post a reply to this message
|
 |