Descriptions et exemples pour le POV-Ray raytracer par Friedrich A. Lohmueller
English English English
Italiano  Italiano
Deutsch 

Page d'AccueilHome
- POV-Ray Tutorial

  Systèmes de coordonnées
  et Fonctions en 2D

  > Papier quadrillé
  - Système de coordonnées
      avec les Axes
  - Macro pour un quadrillage
      avec deux niveaux
  - Fonctions 2D
      Examples
  - Fonctions mathématiques
      en POV-Ray
                                           
Papier quadrillé
La Construction d'un plan avec quadrillage
avec la superposition de 3 textures.

Objets:    "plane".
Mèthods: "color_map, layered textures, macro"


Construction en détail :
Deux grilles réalizées par une color_map
(mince sombre opaque + large clair transparent),
l'une tournée avec 90 degrés vers l'autre,
se sont superposer à une base banche.
// ------------------<<< Raster macro
#macro Raster(RScale, RLine)
pigment{
   gradient x scale RScale
   color_map{
     [0.000   color rgb<1,1,1>*0.5]
     [0+RLine color rgb<1,1,1>*0.5]
     [0+RLine color rgbt<1,1,1,1>]
     [1-RLine color rgbt<1,1,1,1>]
     [1-RLine color rgb<1,1,1>*0.5]
     [1.000   color rgb<1,1,1>*0.5]
            }
       } // end of pigment
#end// of "Raster(RScale, RLine)"

// -------------------<<<< Grid macro
#macro Grid(RasterScale,
            RasterHalfLine,
            Background_pigment)
plane{<0,1,0>, 0
       //layered textures!!!!
      texture{ Background_pigment
             } //  base color
      texture{ Raster(RasterScale,
                      RasterHalfLine)
             } // 2nd layer
      texture{ Raster(RasterScale,
                      RasterHalfLine)
               rotate<0,90,0>
             } // 3rd layer
     } // end of plane
#end // end of macro "Grid(...)"
// -----------------------------------
// use it:
object{Grid(0.50,0.035,
   pigment{color rgb<1,1,1>*1.1})}
// ------------------------- end -----



'layered textures':
Sample layered grids 320x240
Il quadrillage du plan
Sample grid 320x240
Il quadrillage du plan
Description de la scène en POV-Ray grid01.pov
top

© Friedrich A. Lohmüller, 2011
www.f-lohmueller.de