a lot of minor changes

This commit is contained in:
Tonton Th
2025-11-04 13:28:16 +01:00
parent 8532b81c36
commit 75b1b9f741
9 changed files with 26 additions and 14 deletions

View File

@@ -21,7 +21,7 @@ object { Le_Decor }
// =======================================================
#declare Spline_1 =
spline {
natural_spline
cubic_spline
-0.2, <-2, 1.0, -2>, // control point
0.0, < 0, 1.3, -2>, // start point
@@ -39,8 +39,8 @@ object { Le_Decor }
#declare ViewSpline = object
{
union {
#for (CK, 0.00, 1.00, 0.0024)
sphere { <0,0,0>, 0.028
#for (CK, 0.00, 1.00, 0.0017)
sphere { <0,0,0>, 0.022
texture{
pigment {color rgb <0.20, 0.14, 0.14> }
finish {ambient 0.15 diffuse 0.85 phong 0.6 }
@@ -98,7 +98,7 @@ union {
/* P1 and P2 are computed in AllTheSpline object */
#local P1B = (P1 * 10) + <0, 2, 0>;
#local P2B = (P2 * 10) + <0, 2, 0>;
#local P2B = (P2 * 8) + <0, 2, 0>;
#if ( Flag )
#declare Loc_cam = <87-(12*NormClock), 29-NormClock, 4-(9*exp(NormClock))>;
#declare Lat_tmp = Interpolate(P1, P2, 0.50);
@@ -106,7 +106,7 @@ union {
#declare Ang_cam = 105;
#else
#declare Loc_cam = P1B;
#declare Lat_cam = P2B * 0.85;
#declare Lat_cam = P2B; // XXX * 0.85;
#declare Ang_cam = 52;
#end