Questo oggetto è definito con una macro nel mio
include file "shapes3.inc"
( precedentemente "shapes_lo.inc" ).
Segment_of_CylinderRing
un segmento d'anello cilindric
|
Sintassi generale:
object{ Segment_of_CylinderRing(
R_out,
R_in,
Height_in_Y,
Segment_Angle
) //---------------
texture{ ... ... }
scale <1,1,1>
rotate<0,0,0>
translate<0,0,0>
} // end of object --------- |
R_out = il raggio esteriore del annello cylindrico,
R_in = il raggio interiore del annello cylindrico,
Height_in_Y = l’altezza della sezione del annello,
Segment_Angle = l'angolo della sezione del annello,
orientato in senso di mano sinistra!
Per "Segment_Angle = 0" il resultato è un annello completto o un tubo.
|
'Esempi:
#include "shapes3.inc"
// -------------------------------------------------
object{ Segment_of_CylinderRing( 3.75,2.25,0.2,-300)
texture{ Chrome_Metal
finish { phong 1}
} // end of texture
} // -----------------------------------------
object{ Segment_of_CylinderRing( 1.75,1.5,2.0,-270)
texture{ pigment {color White*1.1}
finish { phong 1 }
} // end of texture
} // -----------------------------------------
object{ Segment_of_CylinderRing( 2.5, 3.0, 1.0, -80)
texture{ pigment{ color rgb< 0.7, 1, 0.0> }
finish { phong 1 reflection 0.2}
} // end of texture
} // -----------------------------------------
object{ Segment_of_CylinderRing( 1.1, 0.8, 1.5, 0)
texture{ pigment{ color rgb< 1,0.7, 0.0> }
finish { phong 1 reflection 0.2}
} // end of texture
} // ----------------------------------------- |
La macro nel dettaglio:
Primo sottraiamo il cilindro con il raggio R_out di un cilindro più picolo con il raggio R_in,
formando un'intersezione del primo cilindro con l'inverso (complemento) del secondo cilindro.
Doppo questo bisogna prendere 2 parallelepipedi girati ("box") per tagliare la sezione desiderata.
Per questo dobbiamo considerare due casi differenti:
For this we have to consider two cases:
1. abs(Segment_Angle) <= 180 gradi (solo un'intersezione di un toro e due scatole) e
2. abs(Segment_Angle) > 180 gradi (un'intersezione di un toro e l'unione di due scatole):
Le immagini seguenti mostrano come lavora questo macro
(le scatolle sono visualizati in testura "glass"):
|
abs(Segment_Angle) <= 180 degrees R_out = 1.25, R_in = 0.75, Angle =-145 |
abs(Segment_Angle) > 180 degrees R_out = 1.25, R_in = 0.75, Angle =-215 |
//--------------------------- Segment_of_CylinderRing()
#macro Segment_of_CylinderRing( R_out, R_in,
Height,
Segment_Angle
) //------------
#local D = 0.0001; // just a little bit
#if (Height = 0 ) #local Height = D; #end
#if (Height < 0 ) #local D = -D; #end
#if (R_out < R_in)
#local X=R_out; #local R_out=R_in; #local R_in=X;
#end
#if (Segment_Angle < 0)
#local Negativ_Flag = 1;
#local Segment_Angle = -Segment_Angle;
#else
#local Negativ_Flag = 0;
#end
#if (Segment_Angle >= 360)
#local Segment_Angle = mod (Segment_Angle, 360);
#end
intersection{
cylinder { <0,0,0>,<0,Height,0>, R_out
} // end of outer cylinder ----------
cylinder { <0,-D,0>,<0,Height+D,0>, R_in
inverse
} // end of inner cylinder ----------
#if (Segment_Angle > 0) // -----------------------
#if (Segment_Angle >= 180)
union{
#end // then use union!
box { <-R_out+D,-D,0>,< R_out+D, Height+D, R_out+D>
}// end of box
box { <-R_out+D,-D,-R_out+D>,< R_out+D, Height+D,0>
rotate<0,-Segment_Angle,0>
}// end of box
#if (Segment_Angle >= 180)
} // end of union
#end // end of union, if union is used!
#if (Negativ_Flag = 0) rotate<0,-Segment_Angle,0>
scale<-1,1,-1>
#end // of "#if (Negativ_Flag = 0)" ------------
#end // of "#if (Segment_Angle > 0)" ------------
} // end of intersection
#end // --------- end of macro Segment_of_CylinderRing() |
|
|