big commit, a lot of small adjustemnst

This commit is contained in:
Tonton Th
2025-11-25 02:36:52 +01:00
parent fa8f9578b5
commit c56db2a87d
15 changed files with 170 additions and 207 deletions

View File

@@ -4,7 +4,10 @@
// ------------------------------------------------------
#declare Trid_cone = object
{
cone { 0, R_basecone, y*0.89, 0.0001 }
merge {
cone { 0, R_basecone, y*0.89, 0.0001 }
sphere { 0, R_basecone }
}
}
#macro Trid_A_cone ()
@@ -12,14 +15,10 @@ difference {
object { Trid_cone }
object { Trid_cone translate -y*0.001 }
#local Foo = rand(Rng1);
#if (Foo < 0.25)
texture { T_Brass_2C }
#elseif (Foo < 0.50)
texture { T_Chrome_2C }
#elseif (Foo < 0.75)
texture { T_Chrome_3A }
#else
texture { GoldDark }
#if (Foo < 0.25) texture { T_Brass_2C }
#elseif (Foo < 0.50) texture { T_Chrome_2C }
#elseif (Foo < 0.75) texture { T_Chrome_3A }
#else texture { GoldDark }
#end // else
#undef Foo
}