HexaCone/essai.pov

62 lines
1.2 KiB
POVRay
Raw Permalink Normal View History

2024-12-16 03:53:42 +11:00
/*
* nouveau projet Thu Dec 5 11:37:05 AM UTC 2024
*/
#version 3.7;
global_settings {
assumed_gamma 1.0
2024-12-21 00:24:45 +11:00
ambient_light 0
max_trace_level 10
2024-12-16 03:53:42 +11:00
}
#include "colors.inc"
2024-12-21 00:24:45 +11:00
#include "metals.inc"
2024-12-16 03:53:42 +11:00
#include "textures.inc"
2024-12-21 00:24:45 +11:00
2024-12-23 01:05:36 +11:00
#declare NormClock = clock / 360.0;
2024-12-16 03:53:42 +11:00
#include "contexte.inc"
2024-12-23 01:05:36 +11:00
#include "elements.inc"
// =======================================================
/* ------------------------------------------
* new Sat Dec 21 11:17:36 PM UTC 2024
*/
#declare DXail = 0.001;
#declare DYail = 0.0025;
#declare DZail = 0.028;
#declare Une_Ailettte = object
{
box { <-DXail, -DYail, -DZail> , <DXail, DYail, DZail/5> }
pigment { color Cyan }
}
#declare Le_rotor = object
{
union {
cylinder { <-0.1, 0, 0>, <0.1, 0, 0>, 0.001
pigment { color Magenta } }
#for (foo, 0, 18)
object { Une_Ailettte
rotate (foo*27)*x
translate ((foo*0.01)-0.05)*x }
#end
}
}
2024-12-16 03:53:42 +11:00
2024-12-23 01:05:36 +11:00
// =======================================================
2024-12-21 00:24:45 +11:00
2024-12-23 01:05:36 +11:00
object { Tuyere translate <0, 1, 0> }
object { Le_rotor translate <0, 1, 0> }
2024-12-16 03:53:42 +11:00
2024-12-16 08:24:38 +11:00
light_source { <-6, 7, -4>, rgb <0.81, 0.65, 0.40> }
2024-12-21 00:24:45 +11:00
light_source { <-6, 7, 4>, rgb <0.31, 0.65, 0.80> }
2024-12-16 08:24:38 +11:00
2024-12-16 03:53:42 +11:00
camera {
2024-12-23 01:05:36 +11:00
location <-0.99, 1.01, 0.24>
2024-12-21 00:24:45 +11:00
look_at <0, 1.0, 0>
2024-12-23 01:05:36 +11:00
angle 37
2024-12-16 03:53:42 +11:00
}