Fortraneries/GravityField/vision.pov

79 lines
1.7 KiB
POVRay
Raw Normal View History

2022-12-03 02:25:37 +01:00
/*
* Visualisation en 3d d'une tentative de champ gravitationnel
*
* tTh novembre 2022
*/
#version 3.7;
global_settings {
ambient_light rgb <0.07, 0.05, 0.05>
assumed_gamma 1.0
max_trace_level 6
}
#include "colors.inc"
2022-12-03 20:42:29 +01:00
#declare NormClock = clock / 2000.01;
2022-12-05 13:10:40 +01:00
#debug concat("- - - - - - - ", str(NormClock, 7, 5), "\n")
2022-12-03 20:42:29 +01:00
2022-12-03 02:25:37 +01:00
// ----------------------------------------------------------------------
2022-12-03 20:42:29 +01:00
#declare HFDIR = "WS/nanim/";
2022-12-03 02:25:37 +01:00
#declare HFCK = mod(clock, 2000);
#declare HFNAME = concat(HFDIR, str(HFCK , -5, 0), ".pgm");
2022-12-14 15:32:59 +01:00
#declare CMDIR = "WS/colmap/";
2022-12-16 21:16:02 +01:00
#declare CMNAME = concat(CMDIR, str(HFCK , -5, 0), ".pnm");
2022-12-14 15:32:59 +01:00
#debug concat("- - - - - - - ", HFNAME, " ", CMNAME, "\n")
2022-12-03 02:25:37 +01:00
#declare GravityField = object
{
height_field {
pgm HFNAME
smooth // on
translate <-0.5, 0, -0.5>
}
texture {
2022-12-14 15:32:59 +01:00
pigment {
2022-12-16 21:16:02 +01:00
image_map { ppm CMNAME }
2022-12-14 15:32:59 +01:00
// image_map { png "WS/mire1024.png" }
rotate x*90
translate <-0.5, 0, -0.5>
}
finish { phong 0.45 }
2022-12-03 02:25:37 +01:00
}
}
2023-02-11 17:00:58 +01:00
object { GravityField scale <4.10, 0.60, 4.10> }
2022-12-03 02:25:37 +01:00
// ----------------------------------------------------------------------
2023-02-15 17:41:17 +01:00
#if (0)
2022-12-05 13:10:40 +01:00
merge {
cylinder { <0, -0.5, 0>, <0, 1, 0>, 0.0175 }
sphere { <0, 1, 0>, 0.0175 }
pigment { color Red }
}
2023-02-15 17:41:17 +01:00
#end
2022-12-03 20:42:29 +01:00
2023-02-15 17:41:17 +01:00
light_source { < -2, 9.3, -7> color Gray80 }
2023-02-11 17:00:58 +01:00
light_source { < -6, 9.3, -8> color Orange*0.65 }
light_source { < -15, 2.3, 17> color Gray70 }
2022-12-03 02:25:37 +01:00
// ----------------------------------------------------------------------
2023-02-15 17:41:17 +01:00
#declare Xcam = -5.05;
#declare Ycam = 2.5 - (1.7*NormClock);
#declare Zcam = -8 + (11.66*NormClock);
2022-12-03 02:25:37 +01:00
camera {
2023-02-15 17:41:17 +01:00
// omnimax
location <Xcam, Ycam, Zcam>
2022-12-03 02:25:37 +01:00
look_at <0, 0, 0>
right x*image_width/image_height
2023-02-15 17:41:17 +01:00
angle 34
2022-12-03 02:25:37 +01:00
}
// ----------------------------------------------------------------------