POV-Ray Raytracer Beschreibungen und Beispiele von Friedrich A. Lohmüller
   Pflanzen mit POV-Ray
English English English
Italiano Italiano
Français français

Home
- POV-Ray Tutorial

- Pflanzen mit POV-Ray
   - Bäume mit POV-Tree
     - POV-Tree Baum-Beispiele
     - Texturen für POV-Tree
   - Bäume mit Arbaro
     - Arbaro Baum-Beispiele
    > Texturen für Arbaro

   - Andere Planzenbeispiele

  - Fertig-Objekte Pflanzen
  - Insert Menu Zusatz
 
                                       
 Texturen für Arbaro      

In den Dateien von Arbaro für die meshes der Baumobjekte (z.B. hier: sassafras_m.inc)
sind alle meshes ohne jegliche Texturen deklariert!
Hinzufügen von Texturen:
// tree textures:  --------------------------------
#declare Stem_Texture =
texture{ pigment{ color rgb< 0.75, 0.5, 0.30>*0.25}
        normal{bumps 0.75 scale<0.025,0.075,0.025>}
         finish { phong 0.2 }
       } // end of texture
#declare Leaves_Texture_1 =
texture{ pigment{ color rgbf<0.2,0.5,0, 0.1>*0.75}
         normal { bumps 0.15 scale 0.05 }
         finish { phong 1 }
       } // end of texture
#declare Leaves_Texture_2 =
texture{ pigment{ color rgbf<0.2,0.5,0, 0.2>*0.25}
         normal { bumps 0.15 scale 0.05 }
         finish { phong 0.2 }
       } // end of texture
//-------------------------------------------------
#include "sassafras_m.inc"
//-------------------------------------------------
// tree with leaves
union{ object{ sassafras_13_stems
               texture{ Stem_Texture }
             } //---------------------
       object{ sassafras_13_leaves
               double_illuminate
               texture{ Leaves_Texture_1 }
               interior_texture{ Leaves_Texture_2 }
             } //---------------------
       rotate <0,90,0>
       tanslate <0,0,0>
     } // end of union

// tree without leaves
object{ sassafras_13_stems
        texture{ Stem_Texture }
        scale 0.7
        rotate <0,45,0>
        translate <11,0,0>
      } //------------------------  

Baumbeispiel 'sassafras' mit Texturen.
Szenenbeschreibung für POV-Ray:
"sassafras_m000.pov" und "sassafras_m.inc" (25.4 MB)
Mit realistischem Himmel und Boden:
Baumbeispiel 'sassafras' mit Texturen in einer 'realen' Welt.
Szenenbeschreibung für POV-Ray:
"ATree_sassafras_m100.pov" und "sassafras_m.inc" (25.4 MB)
// automn leaves:
#declare Leaves_Texture_1 =
texture{ pigment{ bozo
                  color_map{
                  [0.0 color rgbf<1,0.1,0,0.2>*0.7]
                  [1.0 color rgbf<1,0.7,0, 0.2>]
                           } // color_map
                }  // pigment
         normal { bumps 0.15 scale 0.05 }
         finish { phong 1 reflection 0.00}
       } // end of texture
//-------------------------------------------------
#declare Leaves_Texture_2 =
texture{ pigment{ color rgbf<1,0.5,0.0,0.4>*0.5}
         normal { bumps 0.15 scale 0.05 }
         finish { phong 0.2 }
       } // end of texture
//-------------------------------------------------
Baumbeispiel 'sassafras' mit Herbst-Texturen.
Szenenbeschreibung für POV-Ray:
"ATree_sassafras_m400.pov" und "sassafras_m.inc" (25.4 MB)
top

© Friedrich A. Lohmüller, 2015
homepage:www.f-lohmueller.de