Descriptions et exemples pour le POV-Ray raytracer par Friedrich A. Lohmüller
Conception de Surface en »texture« avec POV-Ray -
English English English
Italiano Italiano
Deutsch Deutsch

Page d'Accueil
- POV-Ray Tutoriel

  Conception de Surface
  - Coleurs et Textures
    Index

    Syntaxe de texture
    Textures prêtes-à-l'emploi
    Couleurs en do-it-yourself
    Motifs - Patterns
    - types de motifs
     Motifs régulaires
    - checker, hexagon,
      square, triangular
    - brick
    - object pattern (1)
    - object pattern (2)
    - object pattern (3)
   > tiling
    - pavement
     Motifs rayures
    - color_map{...}
     Motifs par pigments
    - pigment_pattern (1)
    - pigment_pattern (2)
    - image_pattern
    Listes de Motifs
    - Motifs régulaires
    - Motifs par hasard
    - Motifs Fractal
    - Autres motifs
    Warps
    uv_mapping
    Mapping
    Superpositions

    Votre textures
 
                                           

Motifs réguliers: tiling - Nouveau avec POV-Ray 3.7


tiling = le pavement du plan x-z avec 24 motifs classique.
  nbsp;        (longueur et largeur: 1 unité)
Exemple:
box{ <0,0,0>,<1,1,1>
     texture {
        pigment{
           tiling 5 // 1~24 Pattern_Number
              color_map{
                [ 0.0 color rgb<1,1,1>]
                [ 1.0 color rgb<0,0,0>]
                } // end color_map
           scale 0.15
         } // end pigment
        finish { phong 1}
      } // end of texture
   } // end of box


tiling patterns: 24 motifs différentes sont au choix.
Utilisé avec le dernier exemple :
     color_map{ [ 0.00 color rgb<0.50, 0.80, 0.00> ]
                [ 0.02 color rgb<1.00, 0.80, 0.00> ]
                [ 0.05 color rgb<0.00, 0.00, 0.00> ]
                [ 0.25 color rgb<0.00, 0.00, 0.00> ]
                [ 0.50 color rgb<1.00, 1.00, 1.00> ]
                [ 0.52 color rgb<0.00, 0.00, 0.00> ]
                [ 0.55 color rgb<1.00, 0.50, 0.00> ]
                [ 0.65 color rgb<1.00, 1.00, 0.00> ]
                [ 0.67 color rgb<1.00, 1.00, 0.00> ]
                [ 0.71 color rgb<0.00, 1.00, 0.00> ]
                [ 0.75 color rgb<0.00, 0.00, 0.00> ]
                [ 1.00 color rgb<0.00, 1.00, 1.00> ]
              } // end color_map 

'tiling' et 'frequency'
Un effet intéressant ensemble avec frequency:
#declare Pigment_1 =
   pigment{
      tiling 6 // 1~24 Pattern_Number
      color_map{
         [0.0 color rgb<0,0,0>]
         [0.4 color rgb<1,0,0>]
         [1.0 color rgb<0,0,0>]
       } // end color_map
      rotate<-90,0,0>
      frequency 5
      scale<0.05,0.25,1>*0.5
    } // end pigment
//------------------------------------
torus{ 1, 0.333
  texture { uv_mapping
     pigment{ uv_mapping Pigment_1 }
     finish { phong 0.1}
  } // end of texture
translate<0.5,0.75,0.5>
} // end of torus --------------------
Sample uv_mapping on a torus
uv_mapping avec 'torus' sans 'frequency'
Sample uv_mapping on a torus
uv_mapping avec 'torus' et 'frequency 5'
top
© Friedrich A. Lohmüller, 2010
www.f-lohmueller.de