1)平面マップ

 画像を平面へマテリアルマップにより、平面マップとして貼り付けています。

 向かって左側はイメージマップ、右側がマテリアルマップです。

 //**********************************************************************************
  plane { -z, 0
   pigment { image_map { png "spring_mini.png" once }
              translate <-1/2,-1/2,0> scale <300/640,1,1> }
  scale 134 translate <-35,0,-1e-6> }
 //**********************************************************************************
  plane { -z, 0
   texture {
    material_map { png "spring_mini.png" interpolate 2 once
     texture { pigment { color rgb <0,0,1> } }
     texture { pigment { color rgb <1,0,1> } }
    }
   translate <-1/2, -1/2, 0> scale <300/640,1,1> }
  scale 134 translate 35*x }
 //**********************************************************************************