Round_Pyramid_N_out
Round_Pyramid_N column
Round_Pyramid wireframe
Round_Pyramid wireframe
Round_Pyramid wireframe
Round_N_Pyramid filled
... truncated
... merge
|
Round_Pyramid_N_out,
Définé par
rayon du cercle circonscrit.
syntaxe générale :
object{ Round_Pyramid_N_out( N,
Point_A, R_out_A,
Point_B, R_out_B,
R_Border,
Fill_On, Merge_On
) //----------------
texture{ ... ... }
} // end of object -------- |
Round_Pyramid_N_in,
Définé par
rayon du cercle inscrit.
general syntax:
object{ Round_Pyramid_N_in( N,
Point_A, R_in_A,
Point_B, R_in_B,
R_Border,
Fill_On, Merge_On
) //-------ö---------
texture{ ... ... }
} // end of object -------- |
N >2 = le nombre de côtés,
Point_A, R_out_A = A, rayon du cercle circonscrit à A,
Point_B, R_out_B = B, rayon du cercle circonscrit à B,
Point_A, R_in_A = A, rayon du cercle inscrit à A,
Point_B, R_in_B = B, rayon du cercle inscrit à B,
R_Border = le rayon des côtés,
Fill_On = 0 = Pyramide en fild de fer, 1 = forme remplie.
Merge_On= 1 = unie les éléments de la pyramide
et pour utiliser la matière transparentel.
Exemple :
#include "shapes3.inc"
object{ Round_Pyramid_N_out(
8 , // number of side faces
<-0.25,0.35,-0.8>, 0.40,// A, R_out_A,
<1,1.1,0>, 0.70,// B, R_out_B,
0.08, // border radius
1, // 1 = filled, 0 = wire
0 // 0 = union, 1 = merge
) //-------------------------------------
texture{ pigment{ rgb<1,1,1> }
finish { phong 1 }
} // end of texture --------------
} // end of object //---------------------- |
Exemple :
#include "shapes_lo.inc"
object{ Round_Pyramid_N_in(
5 , // number of side faces
<0,0.00,0>, 1.00, <0,1.25,0>, 0.00,
0.05, // border radius
0, // 1 = filled, 0 = wire
0 // 0 = union, 1 = merge
) //-------------------------------------
texture{ pigment{ color rgb<1,1,1>}
finish { phong 1}
} // end of texture
} // end of object ------------------------ |
|