Insert Menu Add-on for POV-Ray - by Friedrich A.Lohmueller
General Statements


Insert Menu Add-on
  Basic Templates
    Ready-made Scenes
    Basic Shapes round
    Basic Shapes angular
    Shapes 2
    Shapes 3
    shapes_lo2
    Blob and Fractal
    3D text shapes
    height_field, HF_macros
    Mesh and Non-CSG shapes
    Isosurfaces basic functions
    Isosurfaces function.inc
    Isosurfaces by patterns
    Isosurfaces helix spirals
    Polynomial, Cubic, Quartic
    Parametric Surfaces
    Meshes by meshmaker.inc
    While Loops, For Loops
    sphere_sweep, Spline curves
    Random
    CSG, Shape modifiers
    Shearing and transform
    Colors in textures
    Textures and Materials
      Skies_and_Clouds
      Stones and Granits
      Woods
      Metals
      Mirrors and Glasses
      Normal Examples
      tiling patterns
      pavement patterns
      fractal patterns
    Lights, skies, fogs, rainbow
    Cameras
    Radiosity and Photons
    Own include files
    Math functions
    Analytical Geometry
    Directives
    Expressions
 > General statements
    Animation
    ___________________
     
                                                     
default finish:
#default{ finish{ ambient 0.1 diffuse 0.9 }}  
default finish
In POV-Ray version 3.7 with radiosity ambient is replaces by emission.
With radiosity on ambient is 0. For 3.7 scenes that work also in 3.6 use i.e.:
#if (version < 3.7) ambient 1 #else emission 1 #end  
ambient <-> emission
default gamma setting: (3.6/3.7)
global_settings{ assumed_gamma 1.0 }
#default{ finish{ ambient 0.1 diffuse 0.9 }}   
default finish and gamma setting versions 3.6.2 / 3.7
max_trace_level:
global_settings { max_trace_level 10 }//(1...256) [default = 5]   
max_trace_level 10
charset:
global_settings{ charset utf8 }  // unicode  
global_settings{ charset ascii } // ascii (only 0 to 127 are valid)
global_settings{ charset sys }   // system specific charset  
charset - specifies the assumed character set of all text strings
Noise generators:
global_settings {  noise_generator 1 }   
noise_generator 1
global_settings {  noise_generator 2 }   
noise_generator 2
global_settings {  noise_generator 1 }   
noise_generator 3
adc_bailout
global_settings{ adc_bailout 0.0039 }    
adc_bailout - sets cutoff point of ray computation (1/255 default)
number_of_waves
global_settings{ number_of_waves 10 }    
number_of_waves - sets how many instances of waves/ripples to use
irid_wavelength
global_settings{ irid_wavelength <0.25, 0.18, 0.14> }  
irid_wavelength - sets the color shifts for iridescence (irid {})
hf_gray_16
global_settings{ hf_gray_16 on } // [on/off]  
hf_gray_16 - sets image output to use grayscale only (TGA, PNG)
max_intersections: // don't use it with POV-Ray version 3.7 !!!!
global_settings { max_intersections 200 } //(1...200) [default = 64]   
max_intersections 200
top

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