PovJouets/contexte.inc

34 lines
806 B
PHP
Raw Normal View History

2021-03-11 23:33:35 +01:00
/*
* contexte.inc
*/
2021-03-15 17:29:35 +01:00
global_settings { assumed_gamma 1.0 }
2021-03-16 00:48:07 +01:00
/*------------------------------------------------------------------*/
/*
* essential system includes
*/
#include "colors.inc"
#include "metals.inc"
#include "textures.inc"
/*------------------------------------------------------------------*/
2021-03-15 17:29:35 +01:00
#declare ANGLE_CAM = 33;
2021-03-16 00:48:07 +01:00
/*------------------------------------------------------------------*/
/*
* outils de mise au point (smart tools)
*/
#declare Repere = object
{
#local DA = 5;
#local DB = DA * 5;
union {
cylinder { <-DA, 0, 0>, <100, 0, 0>, 0.1 pigment { color Red } }
cylinder { <0, -DA, 0>, <0, 100, 0>, 0.1 pigment { color Green } }
cylinder { <0, 0, -DA>, <0, 0, 100>, 0.1 pigment { color Blue } }
}
}
/*------------------------------------------------------------------*/