Index

Statistiques/Statistics (MMX-Pentium, 180 MHz, Linux 2.2.19)

YMMV!


cubicle.pov Statistics, Resolution 200 x 150
----------------------------------------------------------------------------
Pixels:           30200   Samples:           87440   Smpls/Pxl: 2.90
Rays:             87440   Saved:                 0   Max Level: 1/5
----------------------------------------------------------------------------
Ray->Shape Intersection          Tests       Succeeded  Percentage
----------------------------------------------------------------------------
Mesh                            299053          107786     36.04
Bounding Box                   9576735         2245177     23.44
Light Buffer                     94021           94021    100.00
Vista Buffer                     87742           79739     90.88
----------------------------------------------------------------------------
Calls to Noise:                  0   Calls to DNoise:             10
----------------------------------------------------------------------------
Shadow Ray Tests:           227142   Succeeded:                40409
----------------------------------------------------------------------------
Smallest Alloc:                 12 bytes @ ../mem.c:778
Largest  Alloc:            1966088 bytes @ ../tesselat.c:82
Total Alloc calls:          252690         Free calls:        252675
Peak memory used:          2476774 bytes
----------------------------------------------------------------------------
Time For Parse:    0 hours  0 minutes   3.0 seconds (3 seconds)
Time For Trace:    0 hours  0 minutes  23.0 seconds (23 seconds)
    Total Time:    0 hours  0 minutes  26.0 seconds (26 seconds)


Scene file

#include "colors.inc"
background { rgb z *.5}
#default { pigment { rgb <1,.8,.6> } finish { specular .5 } }
#declare Obj = sphere {0,1 }

cubicle { original Obj 
          accuracy 30 
        } 

camera { location < 0, 4, -13 > *1.1 look_at < 0, 0, 0 > angle 35 / 3}
light_source { <200, 100, -150 >, 1}
light_source { <-200, 100, -100 >, x * .5}

cubicle

{ }

original solid_finite_bounded_object
objet qui doit être transformé en mesh
accuracy vector
nombre de division du cube d'échantillonnage pour chaque axe. Valeur par défaut : 10.
texture { Tid }
texture à appliquer sur l'ensemble des nouveaux triangles d'une mesh.

Index