\r
<p class="whs2"> </p>\r
\r
-<p class="whs2"><b style="font-weight: bold;">You can define \r
- an Arc by <span style="font-weight: normal;">by three</span><span style="font-weight: bold;"><B> \r
- Points </B></span><span style="font-weight: normal;">that lie on it.</span><span \r
- style="font-weight: bold;"> <B></B></span></b>Point1 is the starting point of \r
- the arc, Point2 is a middle point of the arc and Point3 is the ending \r
- point of the arc.</p>\r
+<p class="whs2"><b><span style="font-weight: normal;">You can \r
+ define an</span> Arc <span style="font-weight: normal;">by</span> <span \r
+ style="font-weight: normal;">three</span><span style="font-weight: bold;"><B> \r
+ Points </B></span><span style="font-weight: normal;">that lie on it, where \r
+ </span></b>Point1 is the starting point and Point3 is the ending point \r
+ of the arc.</p>\r
\r
<p class="whs2"><b style="font-weight: bold;"><span style="font-weight: normal;">The</span> \r
Result <span style="font-weight: normal;">of the operation will be a</span></b><b> \r
p.whs3 { font-family:'Times New Roman' , serif; font-size:12pt; }\r
p.whs4 { font-size:12pt; margin-left:40px; }\r
img_whs5 { border:none; width:312px; height:367px; float:none; border-style:none; }\r
-img_whs6 { border:none; float:none; width:199px; height:184px; border-style:none; }\r
-img_whs7 { border:none; float:none; width:186px; height:183px; border-style:none; }\r
-img_whs8 { border:none; float:none; width:181px; height:181px; border-style:none; }\r
+img_whs6 { border:none; float:none; width:200px; height:180px; border-style:none; }\r
+img_whs7 { border:none; float:none; width:185px; height:180px; border-style:none; }\r
+img_whs8 { border:none; float:none; width:180px; height:180px; border-style:none; }\r
-->\r
</style><script type="text/javascript" language="JavaScript" title="WebHelpInlineScript">\r
<!--\r
\r
<p class="whs2"> </p>\r
\r
-<p class="whs4"><img src="pics/archimedesn1.png" x-maintain-ratio="TRUE" width="199px" height="184px" border="0" class="img_whs6"> <img src="pics/archimedesn2.png" x-maintain-ratio="TRUE" width="186px" height="183px" border="0" class="img_whs7"> <img src="pics/archimedesn3.png" x-maintain-ratio="TRUE" width="181px" height="181px" border="0" class="img_whs8"></p>\r
+<p class="whs4"><img src="pics/archimedesn1.png" x-maintain-ratio="TRUE" width="200px" height="180px" border="0" class="img_whs6"> <img src="pics/archimedesn2.png" x-maintain-ratio="TRUE" width="185px" height="180px" border="0" class="img_whs7"> <img src="pics/archimedesn3.png" x-maintain-ratio="TRUE" 1height=180 1border=0 width="180px" height="180px" border="0" class="img_whs8"></p>\r
\r
<p class="whs4"> </p>\r
\r
\r
<p> </p>\r
\r
-<p># create a vector on two points</p>\r
+<p># create a vector from two points</p>\r
\r
<p class="whs1">vxy = \r
geompy.MakeVector(px, py)</p>\r
\r
<p> </p>\r
\r
-<p># create a line with a point and a vector</p>\r
+<p># create a line from a point and a vector</p>\r
\r
<p class="whs1">line1 = geompy.MakeLine(pz, \r
vxy)</p>\r
\r
<p> </p>\r
\r
-<p>#create a line on two points</p>\r
+<p>#create a line from two points</p>\r
\r
<p class="whs1">line2 = geompy.MakeLineTwoPnt(p0, \r
p100)</p>\r
\r
<p> </p>\r
\r
-<p># create vector on two points</p>\r
+<p># create a vector on two points</p>\r
\r
<p class="whs1">vxy = \r
geompy.MakeVector(px, py)</p>\r
\r
<p> </p>\r
\r
-<p># create circle with point, vector and radius</p>\r
+<p># create a circle from a point, a vector and a radius</p>\r
\r
<p class="whs1">circle1 = geompy.MakeCircle(pz, \r
vxy, 30)</p>\r
\r
<p> </p>\r
\r
-<p>#create circle on three points</p>\r
+<p>#create a circle from three points</p>\r
\r
<p class="whs1">circle2 = geompy.MakeCircleThreePnt(p0, \r
px, py)</p>\r
\r
<p> </p>\r
\r
-<p># add objects in study</p>\r
+<p># add objects in the study</p>\r
\r
<p class="whs1">id_vxy = \r
geompy.addToStudy(vxy, "Vector")</p>\r
\r
<p> </p>\r
\r
-<p># create vector on two points</p>\r
+<p># create a vector from two points</p>\r
\r
<p class="whs1">vector = \r
geompy.MakeVector(p0, p50)</p>\r
\r
<p> </p>\r
\r
-<p># create ellipse with point, vector and radiuses</p>\r
+<p># create an ellipse from a point, a vector and radiuses</p>\r
\r
<p class="whs1">ellipse = geompy.MakeEllipse(p50, \r
vector, 50, 25)</p>\r
\r
<p> </p>\r
\r
-<p># add objects in study</p>\r
+<p># add objects in the study</p>\r
\r
<p class="whs1">id_vector = \r
geompy.addToStudy(vector, "Vector")</p>\r
\r
<p> </p>\r
\r
-<p># display normal vector and ellipse</p>\r
+<p># display the ellipse and its normal vector</p>\r
\r
<p class="whs1">gg.createAndDisplayGO(id_vector)</p>\r
\r
\r
<p> </p>\r
\r
-<p># create polyline on list of points</p>\r
+<p># create a polyline from a list of points</p>\r
\r
<p class="whs1">polyline = geompy.MakePolyline([p0, \r
p1, p2, p3, p4])</p>\r
\r
<p> </p>\r
\r
-<p># create bezier on list of points</p>\r
+<p># create a bezier curve from a list of points</p>\r
\r
<p class="whs1">bezier = geompy.MakeBezier([p0, \r
p1, p2, p3, p4])</p>\r
\r
<p> </p>\r
\r
-<p>#create interpolation curve on list of points</p>\r
+<p>#create a b-spline curve from a list of points</p>\r
\r
<p class="whs1">interpol = geompy.MakeInterpol([p0, \r
p1, p2, p3, p4])</p>\r
\r
<p> </p>\r
\r
-<p># add objects in study</p>\r
+<p># add objects in the study</p>\r
\r
<p class="whs1">id_p0 = \r
geompy.addToStudy(p0, "Point1")</p>\r
\r
<p class="whs1"> </p>\r
\r
-<p># display points and curves</p>\r
+<p># display the points and the curves</p>\r
\r
<p class="whs1">gg.createAndDisplayGO(id_p0)</p>\r
\r
\r
<p> </p>\r
\r
-<p># create vector on two points</p>\r
+<p># create a vector from two points</p>\r
\r
<p class="whs1">vector1 = geompy.MakeVector(p1, \r
p2)</p>\r
\r
<p> </p>\r
\r
-<p># create vector with the given components</p>\r
+<p># create a vector from the given components</p>\r
\r
<p class="whs1">vector2 = geompy.MakeVectorDXDYDZ(30, \r
30, 100)</p>\r
\r
<p> </p>\r
\r
-<p># add objects in study</p>\r
+<p># add objects in the study</p>\r
\r
<p class="whs1">id_p1 = \r
geompy.addToStudy(p1, "Point1")</p>\r
\r
<p> </p>\r
\r
-<p># display points and vectors</p>\r
+<p># display the points and the vectors</p>\r
\r
<p class="whs1">gg.createAndDisplayGO(id_p1)</p>\r
\r
\r
<p> </p>\r
\r
-<p># create vector with the given components</p>\r
+<p># create a vector from the given components</p>\r
\r
<p class="whs1">vector = geompy.MakeVectorDXDYDZ(100., \r
100., 100.)</p>\r
\r
<p> </p>\r
\r
-<p># create vector with two points</p>\r
+<p># create a vector from two points</p>\r
\r
<p class="whs1">vector_arc = geompy.MakeVector(p2, \r
p5)</p>\r
\r
<p> </p>\r
\r
-<p># create arc with three points</p>\r
+<p># create an arc from three points</p>\r
\r
<p class="whs1">arc = geompy.MakeArc(p2, \r
p4, p5)</p>\r
\r
<p> </p>\r
\r
-<p># create wire</p>\r
+<p># create a wire</p>\r
\r
<p class="whs1">wire = geompy.MakeWire([vector_arc, \r
arc])</p>\r
\r
<p> </p>\r
\r
-<p># create face</p>\r
+<p># create a face</p>\r
\r
<p class="whs1">isPlanarWanted = 1</p>\r
\r
\r
<p> </p>\r
\r
-<p># create plane with point, vector and trimsize</p>\r
+<p># create a plane from a point, a vector and a trimsize</p>\r
\r
<p class="whs1">plane1 = geompy.MakePlane(p1, \r
vector, trimsize)</p>\r
\r
<p> </p>\r
\r
-<p># create plane with three points and trimsize</p>\r
+<p># create a plane from three points and a trimsize</p>\r
\r
<p class="whs1">plane2 = geompy.MakePlaneThreePnt(p1, \r
p2, p3, trimsize)</p>\r
\r
<p> </p>\r
\r
-<p># create plane with given face</p>\r
+<p># create a plane from the given face</p>\r
\r
<p class="whs1">plane3 = geompy.MakePlaneFace(face, \r
trimsize)</p>\r
\r
<p> </p>\r
\r
-<p># add objects in study</p>\r
+<p># add objects in the study</p>\r
\r
<p class="whs1">id_face = \r
geompy.addToStudy(face, "Face")</p>\r
\r
<p> </p>\r
\r
-<p># display points and vectors</p>\r
+<p># display the points and the vectors</p>\r
\r
<p class="whs1">gg.createAndDisplayGO(id_face)</p>\r
\r
\r
<p> </p>\r
\r
-<p># create vertex and vector</p>\r
+<p># create a vertex and a vector</p>\r
\r
<p class="whs1">p0 = \r
geompy.MakeVertex( 0., \r
\r
<p> </p>\r
\r
-<p># create vector</p>\r
+<p># create a vector</p>\r
\r
<p class="whs1">vxyz = geompy.MakeVectorDXDYDZ(100., \r
100., 100.)</p>\r
\r
<p> </p>\r
\r
-<p># create box with two points</p>\r
+<p># create a box from two points</p>\r
\r
<p class="whs1">box = geompy.MakeBoxTwoPnt(p0, \r
p200)</p>\r
\r
<p> </p>\r
\r
-<p># create plane</p>\r
+<p># create a plane</p>\r
\r
<p class="whs1">trimsize = \r
500.</p>\r
\r
<p class="whs1"> </p>\r
\r
-<p># add objects in study</p>\r
+<p># add objects in the study</p>\r
\r
<p class="whs1">id_box = geompy.addToStudy(box,"Box")</p>\r
\r
\r
<p> </p>\r
\r
-<p># display partition objects and plane</p>\r
+<p># display the partition objects and the plane</p>\r
\r
<p class="whs1">gg.createAndDisplayGO(id_box)</p>\r
\r
\r
<p> </p>\r
\r
-<p># create vertex and vector</p>\r
+<p># create a vertex and a vector</p>\r
\r
<p class="whs1">p0 = \r
geompy.MakeVertex( 0., \r
\r
<p> </p>\r
\r
-<p># create box with two points</p>\r
+<p># create a box from two points</p>\r
\r
<p class="whs1">box = geompy.MakeBoxTwoPnt(p0, \r
p200)</p>\r
\r
<p> </p>\r
\r
-<p># perform an Archimede operation on the given shape with given parameters</p>\r
+<p># perform an Archimede operation on the selected shape with selected \r
+ parameters</p>\r
\r
<p class="whs1">weight = \r
1000000.</p>\r
\r
<p class="whs1"> </p>\r
\r
-<p># add objects in study</p>\r
+<p># add objects in the study</p>\r
\r
<p class="whs1">id_box = geompy.addToStudy(box,"Box")</p>\r
\r
\r
<p> </p>\r
\r
-<p># display box and result of Archimede operation</p>\r
+<p># display the box and the result of Archimede operation</p>\r
\r
<p class="whs1">gg.createAndDisplayGO(id_box)</p>\r
\r
\r
<p> </p>\r
\r
-<p># add objects in study</p>\r
+<p># add objects in the study</p>\r
\r
<p class="whs1">id_box = geompy.addToStudy(box, \r
"Box")</p>\r
\r
<p> </p>\r
\r
-<p># display results</p>\r
+<p># display the results</p>\r
\r
<p class="whs1">gg.createAndDisplayGO(id_box)</p>\r
\r
\r
<p> </p>\r
\r
-<p># create box and sphere</p>\r
+<p># create a box and a sphere</p>\r
\r
<p class="whs1">box = geompy.MakeBoxDXDYDZ(200, \r
200, 200)</p>\r
\r
<p class="whs1"> </p>\r
\r
-<p># make compound</p>\r
+<p># make a compound</p>\r
\r
<p class="whs1">compound = geompy.MakeCompound([box, \r
sphere])</p>\r
\r
<p> </p>\r
\r
-<p># add objects in study</p>\r
+<p># add objects in the study</p>\r
\r
<p class="whs1">id_compound = geompy.addToStudy(compound, \r
"Compound")</p>\r
\r
<p> </p>\r
\r
-<p># display results</p>\r
+<p># display the results</p>\r
\r
<p class="whs1">gg.createAndDisplayGO(id_compound)</p>\r
\r
\r
<p> </p>\r
\r
-<p># create box and sphere</p>\r
+<p># create a box and a sphere</p>\r
\r
<p class="whs1">box = geompy.MakeBoxDXDYDZ(200, \r
200, 200)</p>\r
\r
<p> </p>\r
\r
-<p># add objects in study</p>\r
+<p># add objects in the study</p>\r
\r
<p class="whs1">geompy.addToStudy(check_box, \r
"Box")</p>\r
\r
<p> </p>\r
\r
-<p># create vertex and vector</p>\r
+<p># create a vertex and a vector</p>\r
\r
<p class="whs1">p1 = geompy.MakeVertex(25, \r
55, 0)</p>\r
\r
<p> </p>\r
\r
-<p># create cylinder</p>\r
+<p># create a cylinder</p>\r
\r
<p class="whs1">height = 35</p>\r
\r
\r
<p> </p>\r
\r
-<p># create sphere</p>\r
+<p># create a sphere</p>\r
\r
<p class="whs1">sphere = geompy.MakeSphereR(40)</p>\r
\r
<p> </p>\r
\r
-<p># make fuse</p>\r
+<p># fuse</p>\r
\r
<p class="whs1">fuse = geompy.MakeFuse(cylinder, \r
sphere)</p>\r
\r
<p> </p>\r
\r
-<p># add objects in study</p>\r
+<p># add objects in the study</p>\r
\r
<p class="whs1">id_cylinder = geompy.addToStudy(cylinder, \r
"Cylinder")</p>\r
\r
<p> </p>\r
\r
-<p># create vertex and vector</p>\r
+<p># create a vertex and a vector</p>\r
\r
<p class="whs1">p1 = geompy.MakeVertex(25, \r
55, 0)</p>\r
\r
<p> </p>\r
\r
-<p># create cylinder</p>\r
+<p># create a cylinder</p>\r
\r
<p class="whs1">height = 35</p>\r
\r
\r
<p> </p>\r
\r
-<p># create sphere</p>\r
+<p># create a sphere</p>\r
\r
<p class="whs1">sphere = geompy.MakeSphereR(40)</p>\r
\r
\r
<p> </p>\r
\r
-<p># add objects in study</p>\r
+<p># add objects in the study</p>\r
\r
<p class="whs1">id_common = geompy.addToStudy(common, \r
"Common")</p>\r
\r
<p> </p>\r
\r
-<p># display results</p>\r
+<p># display the results</p>\r
\r
<p class="whs1">gg.createAndDisplayGO(id_common)</p>\r
\r
\r
<p> </p>\r
\r
-<p># create vertex and vector</p>\r
+<p># create a vertex and a vector</p>\r
\r
<p class="whs1">p1 = geompy.MakeVertex(25, \r
55, 0)</p>\r
\r
<p> </p>\r
\r
-<p># create cylinder</p>\r
+<p># create a cylinder</p>\r
\r
<p class="whs1">height = 35</p>\r
\r
\r
<p> </p>\r
\r
-<p># create sphere</p>\r
+<p># create a sphere</p>\r
\r
<p class="whs1">sphere = geompy.MakeSphereR(40)</p>\r
\r
<p> </p>\r
\r
-<p># make cut</p>\r
+<p>#cut</p>\r
\r
<p class="whs1">cut = geompy.MakeCut(cylinder, \r
sphere)</p>\r
\r
<p> </p>\r
\r
-<p># add objects in study</p>\r
+<p># add objects in the study</p>\r
\r
<p class="whs1">id_cut = geompy.addToStudy(cut, \r
"Cut")</p>\r
\r
<p> </p>\r
\r
-<p># display results</p>\r
+<p># display the results</p>\r
\r
<p class="whs1">gg.createAndDisplayGO(id_cut)</p>\r
\r
\r
<p> </p>\r
\r
-<p># create vertex and vector</p>\r
+<p># create a vertex and a vector</p>\r
\r
<p class="whs1">p1 = geompy.MakeVertex(25, \r
55, 0)</p>\r
\r
<p> </p>\r
\r
-<p># create cylinder</p>\r
+<p># create a cylinder</p>\r
\r
<p class="whs1">height = 35</p>\r
\r
\r
<p> </p>\r
\r
-<p># create sphere</p>\r
+<p># create a sphere</p>\r
\r
<p class="whs1">sphere = geompy.MakeSphereR(40)</p>\r
\r
<p> </p>\r
\r
-<p># make section</p>\r
+<p># make a section</p>\r
\r
<p class="whs1">section = geompy.MakeSection(cylinder, \r
sphere)</p>\r
\r
<p> </p>\r
\r
-<p># add objects in study</p>\r
+<p># add objects in the study</p>\r
\r
<p class="whs1">id_section = geompy.addToStudy(section, \r
"Section")</p>\r
\r
<p> </p>\r
\r
-<p># display results</p>\r
+<p># display the results</p>\r
\r
<p class="whs1">gg.createAndDisplayGO(id_section)</p>\r
\r
<span style="font-weight: normal; font-style: italic;"><I>geompy.MakeBox(x1,y1,z1,x2,y2,z2)</I></span> \r
</p>\r
\r
-<p class="whs8"><b style="font-weight: bold;">Arguments:<span \r
- style="font-weight: normal;"> </b>Name</span> + <span style="font-weight: normal;">X, \r
- Y and Z coordinates of both points.</span></p>\r
+<p class="whs8"><b>Arguments:<span style="font-weight: normal;"> \r
+ </b>Name</span> + <span style="font-weight: normal;">X, Y and Z coordinates \r
+ of both points.</span></p>\r
\r
<p class="whs8"> </p>\r
\r
\r
<p> </p>\r
\r
-<p># create quadrangle face from four edges</p>\r
+<p># create a quadrangle face from four edges</p>\r
\r
<p class="whs1">qface1 = geompy.MakeQuad(edge1, \r
edge2, edge3, edge4)</p>\r
\r
<p> </p>\r
\r
-<p># create quadrangle face on two edges</p>\r
+<p># create a quadrangle face from two edges</p>\r
\r
<p class="whs1">qface2 = geompy.MakeQuad2Edges(edge1, \r
edge3)</p>\r
\r
<p> </p>\r
\r
-<p># create quadrangle with specified corners</p>\r
+<p># create a quadrangle from four points in its corners</p>\r
\r
<p class="whs1">qface3 = geompy.MakeQuad4Vertices(p1, \r
p2, p3, p4)</p>\r
\r
<p> </p>\r
\r
-<p># add objects in study</p>\r
+<p># add objects in the study</p>\r
\r
<p class="whs1">id_p1 = geompy.addToStudy(p1,"Point1")</p>\r
\r
\r
<p> </p>\r
\r
-<p># display vertices, edges and quadrangle faces</p>\r
+<p># display the vertices, the edges and the quadrangle faces</p>\r
\r
<p class="whs1">gg.createAndDisplayGO(id_p1)</p>\r
\r
<p><span style="font-family: 'Lucida Console', monospace;">gg.setDisplayMode(id_qface3,1)</span> \r
</p>\r
\r
-<h3> </h3>\r
+<p> </p>\r
\r
<h3>Hexagonal Solid</h3>\r
\r
\r
<p> </p>\r
\r
-<p># create hexahedral solid between two given faces</p>\r
+<p># create a hexahedral solid between two given faces</p>\r
\r
<p class="whs1">solid1 = geompy.MakeHexa2Faces(qface1, \r
qface2)</p>\r
\r
<p> </p>\r
\r
-<p># create hexahedral solids, bounded by the six given faces</p>\r
+<p># create a hexahedral solids, bounded by six given faces</p>\r
\r
<p class="whs1">solid2 = geompy.MakeHexa(qface3, \r
qface4, qface5, qface6, qface7, qface8)</p>\r
\r
<p> </p>\r
\r
-<p># add objects in study</p>\r
+<p># add objects in the study</p>\r
\r
<p class="whs1">id_solid1 = geompy.addToStudy(solid1,"Solid1")</p>\r
\r
<h1><span style="font-size: 14pt;"><font size=4 style="font-size:14pt;"><img src="files/salome2_sp3_operationgui_functions_salome2_sp3_operationgui_functions_image90.gif" width="20px" height="20px" border="0" class="img_whs1"> </font></span>Chamfer</h1>\r
\r
<p class="whs2"><b style="font-weight: normal;">T</b>o produce \r
- a <span style="font-weight: bold;"><B>Fillet</B></span> in the Main Menu select \r
+ a <span style="font-weight: bold;"><B>Chamfer</B></span> in the Main Menu select \r
<span style="font-weight: bold;"><B>Operations - > Transformation - > \r
- Fillet</B></span> </p>\r
+ Chamfer</B></span> </p>\r
\r
<p> </p>\r
\r
<p class="whs2">To create chamfer on the specified edges of \r
the given shape, you \r
need to define the <span style="font-weight: bold;"><B>Main Object</B></span> \r
- to create a fillet on, select the necessary edges in the object browser \r
- or in the viewer and define the <span style="font-weight: bold;"><B>Dimension</B></span> \r
- of the Chamfer.</p>\r
+ to create a fillet on, select the necessary edges in the viewer and define \r
+ the <span style="font-weight: bold;"><B>Dimension</B></span> of the Chamfer.</p>\r
\r
<p class="whs2"><b style="font-weight: bold;">TUI Command:</b><i> \r
</i><span style="font-style: italic;"><I>geompy.MakeChamferEdge(Shape, D1, \r
<p class="whs2">To create chamfer on the specified faces of \r
the given shape, you \r
need to define the <span style="font-weight: bold;"><B>Main Object</B></span> \r
- to create a fillet on, select the necessary faces in the object browser \r
- or in the viewer and define the <span style="font-weight: bold;"><B>Dimension</B></span> \r
+ to create a fillet on, select the two faces to which belongs the necessary \r
+ common edge in the OCC Viewer and define the <span style="font-weight: bold;"><B>Dimension</B></span> \r
of the Chamfer.</p>\r
\r
<p class="whs2"><b style="font-weight: bold;">TUI Command:</b><i> \r
- </i><span style="font-style: italic;"><I>geompy.MakeChamferFace(Shape, D1, \r
+ </i><span style="font-style: italic;"><I>geompy.MakeChamferFaces(Shape, D1, \r
D2, ListOfFaceID)</I></span>, where Shape is a shape to create chamfer on, \r
D1 is a chamfer size along a face from ListOfFaceID, \r
D2 is a \r
{\r
if (window.addTocInfo)\r
{\r
- addTocInfo("GEOM module\nTUI Scripts\nChanging Displaying Parameters");\r
+ addTocInfo("GEOM module\nTUI Scripts\nChanging Display Parameters");\r
addButton("show",BTN_TEXT,"Show","","","","",0,0,"","","");\r
\r
}\r
document.location.reload();\r
//-->\r
</script>\r
-<h1>Changing Displaying Parameters</h1>\r
+<h1>Changing Display Parameters</h1>\r
\r
-<h3>Changing Color</h3>\r
+<h3><a name=bookmark>Changing Display Mode</a></h3>\r
\r
-<p class="whs1">import salome</p>\r
+<p class="whs1"><span style="font-family: 'Lucida Console', monospace;">import \r
+ salome</span></p>\r
\r
<p class="whs1">import geompy</p>\r
\r
\r
<p class="whs1">gg.createAndDisplayGO(fuse_id)</p>\r
\r
-<p class="whs1">gg.setDisplayMode(fuse_id,1)</p>\r
-\r
-<p class="whs1">gg.setColor(fuse_id,218,165,31) \r
+<p class="whs1">gg.setDisplayMode(fuse_id,1) \r
</p>\r
\r
<p class="whs1"> </p>\r
\r
-<h3>Changing Display Mode</h3>\r
+<h3><a name=bookmark1>Changing Color</a></h3>\r
\r
-<p class="whs1"><span style="font-family: 'Lucida Console', monospace;">import \r
- salome</span></p>\r
+<p class="whs1">import salome</p>\r
\r
<p class="whs1">import geompy</p>\r
\r
\r
<p class="whs1">gg.createAndDisplayGO(fuse_id)</p>\r
\r
-<p class="whs1">gg.setDisplayMode(fuse_id,1) \r
+<p class="whs1">gg.setDisplayMode(fuse_id,1)</p>\r
+\r
+<p class="whs1">gg.setColor(fuse_id,218,165,31) \r
</p>\r
\r
<p class="whs1"> </p>\r
\r
-<h3>Changing Transparency</h3>\r
+<p class="whs1"> </p>\r
+\r
+<h3><a name=bookmark2>Changing Transparency</a></h3>\r
\r
<p class="whs1">import salome</p>\r
\r
p.whs15 { margin-left:40px; font-size:12pt; }\r
img_whs16 { border:none; width:397px; height:428px; float:none; border-style:none; }\r
img_whs17 { border:none; width:401px; height:429px; float:none; border-style:none; }\r
-img_whs18 { border:none; width:255px; height:150px; float:none; border-style:none; }\r
-img_whs19 { border:none; width:377px; height:426px; float:none; border-style:none; }\r
-->\r
</style><script type="text/javascript" language="JavaScript" title="WebHelpInlineScript">\r
<!--\r
{\r
if (window.addTocInfo)\r
{\r
- addTocInfo("GEOM module\nManaging geometrical objects\nChanging displaying parameters");\r
-addButton("show",BTN_TEXT,"Show","","","","",0,0,"","","");\r
+ addButton("show",BTN_TEXT,"Show","","","","",0,0,"","","");\r
\r
}\r
if (window.writeBtnStyle)\r
\r
<p class="whs3"> </p>\r
\r
+<p class="whs3">This \r
+ option is relevant for viewing 3D objects. Wireframe mode means that </p>\r
+\r
+<p class="whs3"> </p>\r
+\r
<p class="whs3"><b style="font-weight: bold;">Description:</b> \r
Set the display mode of the selected shape.</p>\r
\r
\r
<p class="whs11"> </p>\r
\r
-<p class="whs5"><b style="font-weight: bold;"><a \r
- NAME=Isos><span style="font-size: 14pt;"><font size=4 style="font-size:14pt;">Isos</font></span></a></b></p>\r
-\r
-<p class="whs5"> </p>\r
-\r
-<p class="whs11"><b style="font-weight: bold;">Description:</b> \r
- Changes the number of isolines displayed within a shape.</p>\r
-\r
-<p class="whs11"> </p>\r
-\r
-<p class="whs11"><b style="font-weight: bold;">Arguments:</b> \r
- 2 values (number of isolines).</p>\r
-\r
-<p class="whs11"> </p>\r
-\r
-<p class="whs11"><b style="font-weight: bold;">Dialog Box:</b></p>\r
-\r
-<p class="whs11"> </p>\r
-\r
-<p class="whs7"><img src="pics/neo-isos.png" x-maintain-ratio="TRUE" width="255px" height="150px" border="0" class="img_whs18"></p>\r
-\r
-<p class="whs7"> </p>\r
-\r
-<p class="whs11"><b style="font-weight: bold;">Example:</b></p>\r
-\r
-<p class="whs11"> </p>\r
-\r
-<p class="whs7"><img src="pics/colorsn.png" x-maintain-ratio="TRUE" width="397px" height="428px" border="0" class="img_whs16"> <img src="pics/isos_u12_v12sn.png" x-maintain-ratio="TRUE" width="377px" height="426px" border="0" class="img_whs19"></p>\r
-\r
-<p class="whs3"> </p>\r
-\r
-<p class="whs11">Our TUI Scripts provide you with useful examples \r
- of <a href="changing_display_parameters.htm">Changing Displaying Parameters</a>. \r
- </p>\r
-\r
<p> </p>\r
\r
<script type="text/javascript" language="javascript1.2">\r
--- /dev/null
+<!doctype HTML public "-//W3C//DTD HTML 4.0 Frameset//EN">\r
+\r
+<html>\r
+\r
+<head>\r
+<title>Color</title>\r
+<meta http-equiv="content-type" content="text/html; charset=windows-1252">\r
+<meta name="generator" content="RoboHelp by eHelp Corporation www.ehelp.com">\r
+<link rel="stylesheet" href="default_ns.css"><script type="text/javascript" language="JavaScript" title="WebHelpSplitCss">\r
+<!--\r
+if (navigator.appName !="Netscape")\r
+{ document.write("<link rel='stylesheet' href='default.css'>");}\r
+//-->\r
+</script>\r
+<style type="text/css">\r
+<!--\r
+p.whs1 { font-size:12pt; }\r
+img_whs2 { border:none; width:492px; height:392px; float:none; border-style:none; }\r
+-->\r
+</style><script type="text/javascript" language="JavaScript" title="WebHelpInlineScript">\r
+<!--\r
+function reDo() {\r
+ if (innerWidth != origWidth || innerHeight != origHeight)\r
+ location.reload();\r
+}\r
+if ((parseInt(navigator.appVersion) == 4) && (navigator.appName == "Netscape")) {\r
+ origWidth = innerWidth;\r
+ origHeight = innerHeight;\r
+ onresize = reDo;\r
+}\r
+onerror = null; \r
+//-->\r
+</script>\r
+<style type="text/css">\r
+<!--\r
+div.WebHelpPopupMenu { position:absolute; left:0px; top:0px; z-index:4; visibility:hidden; }\r
+-->\r
+</style><script type="text/javascript" language="javascript1.2" src="whmsg.js"></script>\r
+<script type="text/javascript" language="javascript" src="whver.js"></script>\r
+<script type="text/javascript" language="javascript1.2" src="whproxy.js"></script>\r
+<script type="text/javascript" language="javascript1.2" src="whutils.js"></script>\r
+<script type="text/javascript" language="javascript1.2" src="whtopic.js"></script>\r
+</head>\r
+<body><script type="text/javascript" language="javascript1.2">\r
+<!--\r
+if (window.gbWhTopic)\r
+{\r
+ if (window.addTocInfo)\r
+ {\r
+ addTocInfo("GEOM module\nManaging geometrical objects\nChanging Display Parameters\nColor");\r
+addButton("show",BTN_TEXT,"Show","","","","",0,0,"","","");\r
+\r
+ }\r
+ if (window.writeBtnStyle)\r
+ writeBtnStyle();\r
+\r
+ if (window.writeIntopicBar)\r
+ writeIntopicBar(1);\r
+\r
+ if (window.setRelStartPage)\r
+ {\r
+ setRelStartPage("geom.htm");\r
+\r
+ autoSync(1);\r
+ sendSyncInfo();\r
+ sendAveInfoOut();\r
+ }\r
+}\r
+else\r
+ if (window.gbIE4)\r
+ document.location.reload();\r
+//-->\r
+</script>\r
+<h1>Color</h1>\r
+\r
+<p>You can change the filling color of your object in the standard <span \r
+ style="font-weight: bold;"><B>Select Color</B></span> menu accessible by right-clicking \r
+ on an object and selecting <span style="font-weight: bold;"><B>Color</B></span> \r
+ in the pop-up menu box. </p>\r
+\r
+<p> </p>\r
+\r
+<p class="whs1"><span style="font-size: 12pt;"><font size=3 style="font-size:12pt;"><b style="font-weight: bold;">TUI \r
+ Command:</b><i> gg.setColor(ID, Short, Short, Short)</i></font></span></p>\r
+\r
+<p> </p>\r
+\r
+<p><img src="selectcolor.png" x-maintain-ratio="TRUE" width="492px" height="392px" border="0" class="img_whs2"></p>\r
+\r
+<p> </p>\r
+\r
+<p class="whs1">Our TUI Scripts provide you with useful examples \r
+ of <a href="changing_display_parameters.htm#bookmark1">Changing Display \r
+ Parameters</a>. </p>\r
+\r
+<p> </p>\r
+\r
+<script type="text/javascript" language="javascript1.2">\r
+<!--\r
+if (window.writeIntopicBar)\r
+ writeIntopicBar(0);\r
+//-->\r
+</script>\r
+</body>\r
+</html>\r
\r
<p> </p>\r
\r
-<p># create vertex and vector</p>\r
+<p># create a vertex and a vector</p>\r
\r
<p class="whs1">p1 = geompy.MakeVertex( \r
0., \r
\r
<p> </p>\r
\r
-<p># create vector with the given components</p>\r
+<p># create a vector from the given components</p>\r
\r
<p class="whs1">vector = geompy.MakeVectorDXDYDZ(50., \r
50., 50.)</p>\r
\r
<p> </p>\r
\r
-<p>#create vectors with two points</p>\r
+<p>#create vectors from two points</p>\r
\r
<p class="whs1">vector1_arc1 = geompy.MakeVector(p1, \r
p2)</p>\r
\r
<p> </p>\r
\r
-<p># create arcs with three points</p>\r
+<p># create arcs from three points</p>\r
\r
<p class="whs1">arc1 = geompy.MakeArc(p2, \r
p3, p4)</p>\r
\r
<p> </p>\r
\r
-<p># add objects in study</p>\r
+<p># add objects in the study</p>\r
\r
<p class="whs1">id_face1 = \r
geompy.addToStudy(face1,"Face1")</p>\r
\r
<p> </p>\r
\r
-<p># create vertex and vector</p>\r
+<p># create a vertex and a vector</p>\r
\r
<p class="whs1">p1 = geompy.MakeVertex( \r
10., 10., \r
\r
<p> </p>\r
\r
-<p>#create vectors with two points</p>\r
+<p>#create vectors from two points</p>\r
\r
<p class="whs1">vector1 = geompy.MakeVector(p1, \r
p2)</p>\r
\r
<p> </p>\r
\r
-<p># create vector with the given components</p>\r
+<p># create a vector from the given components</p>\r
\r
<p class="whs1">vector3 = geompy.MakeVectorDXDYDZ(-20., \r
-20., 100.)</p>\r
\r
<p> </p>\r
\r
-<p># create wire</p>\r
+<p># create a wire</p>\r
\r
<p class="whs1">wire = geompy.MakeWire([vector1, \r
vector2])</p>\r
\r
<p> </p>\r
\r
-<p># create revolution</p>\r
+<p># create a revolution</p>\r
\r
<p class="whs1">revolution = geompy.MakeRevolution(wire, \r
vector3, 2.3)</p>\r
\r
<p> </p>\r
\r
-<p># add objects in study</p>\r
+<p># add objects in the study</p>\r
\r
<p class="whs1">id_vector3 = \r
geompy.addToStudy(vector3,"Axis")</p>\r
\r
<p> </p>\r
\r
-<p># display vector, wire and revolution</p>\r
+<p># display the vector, the wire and the revolution</p>\r
\r
<p class="whs1">gg.createAndDisplayGO(id_vector3)</p>\r
\r
\r
<p> </p>\r
\r
-<p># create vertex and vector</p>\r
+<p># create a vertex and a vector</p>\r
\r
<p class="whs1">p1 = geompy.MakeVertex( \r
-30., -30., \r
\r
<p> </p>\r
\r
-<p># create arc with three points</p>\r
+<p># create an arc from three points</p>\r
\r
<p class="whs1">arc = geompy.MakeArc(p1, \r
p2, p3)</p>\r
\r
<p> </p>\r
\r
-<p># create filling</p>\r
+<p># create a filling</p>\r
\r
<p class="whs1">filling = geompy.MakeFilling(compound, \r
mindeg, maxdeg, tol3d, tol2d, nbiter)</p>\r
\r
<p> </p>\r
\r
-<p># add objects in study</p>\r
+<p># add objects in the study</p>\r
\r
<p class="whs1">id_compound = geompy.addToStudy(compound,"Compound")</p>\r
\r
\r
<p> </p>\r
\r
-<p># display compound and filling</p>\r
+<p># display the compound and the filling</p>\r
\r
<p class="whs1">gg.createAndDisplayGO(id_compound)</p>\r
\r
\r
<p> </p>\r
\r
-<p># create vector on two points</p>\r
+<p># create a vector from two points</p>\r
\r
<p class="whs1">vxy = geompy.MakeVector(px, \r
py)</p>\r
\r
<p> </p>\r
\r
-<p># create arc with three points</p>\r
+<p># create an arc from three points</p>\r
\r
<p class="whs1">arc = geompy.MakeArc(py, \r
pz, px)</p>\r
\r
<p> </p>\r
\r
-<p># create wire</p>\r
+<p># create a wire</p>\r
\r
<p class="whs1">wire = geompy.MakeWire([vxy, \r
arc])</p>\r
\r
<p> </p>\r
\r
-<p># create edge</p>\r
+<p># create an edge</p>\r
\r
<p class="whs1">edge = geompy.MakeEdge(p0, \r
pxyz)</p>\r
\r
<p> </p>\r
\r
-<p># create pipe</p>\r
+<p># create a pipe</p>\r
\r
<p class="whs1">pipe = geompy.MakePipe(wire, \r
edge)</p>\r
\r
<p> </p>\r
\r
-<p># add objects in study</p>\r
+<p># add objects in the study</p>\r
\r
<p class="whs1">id_wire = geompy.addToStudy(wire,"Wire")</p>\r
\r
\r
<p> </p>\r
\r
-<p># display wire, edge (path) and pipe</p>\r
+<p># display the wire, the edge (path) and the pipe</p>\r
\r
<p class="whs1">gg.createAndDisplayGO(id_wire)</p>\r
\r
\r
<p> </p>\r
\r
-<p>There are two algorithms for creation of a <span style="font-weight: bold;"><B>Torus</B></span>. \r
+<p>There are two algorithms for creation of a <span style="font-weight: bold;"><B>Cone</B></span>. \r
</p>\r
\r
<p class="whs2"><b style="font-weight: bold;"><span style="font-weight: normal;">The</span> \r
<p> </p>\r
\r
<p>Secondly, you can define a <span style="font-weight: bold;"><B>Cone</B></span> \r
- with the centre at the origin of coordinates by its <span style="font-weight: bold;"><B>Height</B></span> \r
+ with the center at the origin of coordinates by its <span style="font-weight: bold;"><B>Height</B></span> \r
and <span style="font-weight: bold;"><B>Radiuses</B></span>. The <span style="font-weight: bold;"><B>Axis</B></span> \r
of the <span style="font-weight: bold;"><B>Cone</B></span> will be collinear \r
to the OZ axis of the coordinate system. </p>\r
a list of </font></span><span style="font-size: 12pt; font-weight: bold;"><font size=3 style="font-size:12pt;"><B>Points</B></font></span><span \r
style="font-size: 12pt;"><font size=3 style="font-size:12pt;"> through which the curve passes. The three </font></span><span \r
style="font-size: 12pt; font-weight: bold;"><font size=3 style="font-size:12pt;"><B>Curve Construction</B></font></span><span \r
- style="font-size: 12pt;"><font size=3 style="font-size:12pt;"> menu choices correspond to the three possible \r
- types of curves: Polyline, Besier or B-spline (Interpolated) curve. </font></span></p>\r
+ style="font-size: 12pt;"><font size=3 style="font-size:12pt;"> menu choices correspond to three possible types \r
+ of curves: Polyline, Besier or B-spline (Interpolated). </font></span></p>\r
\r
<p class="whs2"><span style="font-size: 12pt;"><font size=3 style="font-size:12pt;"><b style="font-weight: bold;"><span \r
style="font-weight: normal;">The</span> Result <span style="font-weight: normal;">of \r
<p class="whs2"> </p>\r
\r
<p class="whs2"><b style="font-weight: normal;">This operation</b> \r
- returns blocks of the given compound. The user may define the type blocks \r
- to be extracted by setting the minimum and maximum number of faces in \r
- the target block. By checking the corresponding box the user may also \r
+ returns blocks of the given compound. The user may define the type of \r
+ blocks to be extracted by setting the minimum and maximum number of faces \r
+ in the target block. By checking the corresponding box the user may also \r
interactively choose the blocks from a compound .</p>\r
\r
<p class="whs2"> </p>\r
maximal number of faces of the resulting blocks.</p>\r
\r
<p class="whs2"><b style="font-weight: bold;">Arguments: <span \r
- style="font-weight: normal;">1 compound + 1 integer (min. and max. number \r
+ style="font-weight: normal;">1 compound + 2 integers (min. and max. number \r
of faces in the block to be extracted).</span></b></p>\r
\r
<p class="whs2"> </p>\r
p.whs5 { font-size:12pt; margin-left:40px; }\r
p.whs6 { font-size:12pt; font-style:italic; }\r
p.whs7 { font-size:12pt; margin-left:0px; }\r
-img_whs8 { border:none; float:none; width:300px; height:178px; border-style:none; }\r
-img_whs9 { border:none; width:350px; height:179px; float:none; border-style:none; }\r
+img_whs8 { border:none; float:none; width:300px; height:175px; border-style:none; }\r
+img_whs9 { border:none; width:350px; height:175px; float:none; border-style:none; }\r
-->\r
</style><script type="text/javascript" language="JavaScript">\r
<!--\r
Command :</b><i> </i></B></span><span style="font-style: italic;"><I>geompy.MakePrismVecH(Base, \r
Vector, Height)</I></span></p>\r
\r
-<p class="whs2"><span style="font-size: 12pt;"><font size=3 style="font-size:12pt;"><span style="font-style: italic;"><I><b \r
- style="font-weight: bold;">A</I></span>rguments:</b> Name + 1 shape (vertex, \r
- edge, wire, face or shell) serving as base object + 1 vector (for direction) \r
- + 1 value (dimension).</font></span></p>\r
+<p class="whs2"><span style="font-size: 12pt;"><font size=3 style="font-size:12pt;"><b style="font-weight: bold;">Arguments:</b> \r
+ Name + 1 shape (vertex, edge, wire, face or shell) serving as base object \r
+ + 1 vector (for direction of the extrusion) + 1 value (dimension).</font></span></p>\r
\r
<p> </p>\r
\r
\r
<p class="whs6">Base Shape Prisms</p>\r
\r
-<p class="whs7"><img src="pics/prisms_basessn.png" x-maintain-ratio="TRUE" width="300px" height="178px" border="0" class="img_whs8"> <img src="pics/prismssn.png" x-maintain-ratio="TRUE" width="350px" height="179px" border="0" class="img_whs9"> </p>\r
+<p class="whs7"><img src="pics/prisms_basessn.png" x-maintain-ratio="TRUE" width="300px" height="175px" border="0" class="img_whs8"> <img src="pics/prismssn.png" x-maintain-ratio="TRUE" width="350px" height="175px" border="0" class="img_whs9"> </p>\r
\r
<p class="whs2"> </p>\r
\r
p.whs3 { font-size:12pt; margin-left:40px; }\r
img_whs4 { border:none; width:312px; height:315px; float:none; border-style:none; }\r
p.whs5 { font-size:12pt; font-style:italic; }\r
-img_whs6 { border:none; width:180px; height:182px; float:none; border-style:none; }\r
-img_whs7 { border:none; width:179px; height:182px; float:none; border-style:none; }\r
-img_whs8 { border:none; float:none; width:181px; height:182px; border-style:none; }\r
+img_whs6 { border:none; width:180px; height:180px; float:none; border-style:none; }\r
+img_whs7 { border:none; float:none; width:180px; height:180px; border-style:none; }\r
-->\r
</style><script type="text/javascript" language="JavaScript" title="WebHelpInlineScript">\r
<!--\r
\r
<p class="whs2"> </p>\r
\r
-<p class="whs2"><span style="font-weight: bold;"><B>TUI commands</B></span> \r
- give you some advanced possibilities.</p>\r
+<p class="whs2">There are some advanced possibilities accessible \r
+ only via<span style="font-weight: bold;"><B> TUI commands</B></span>.</p>\r
\r
<p class="whs2"> </p>\r
\r
\r
<p class="whs2"> </p>\r
\r
-<p class="whs3"><img src="pics/facesn1.png" x-maintain-ratio="TRUE" width="180px" height="182px" border="0" class="img_whs6"> <img src="pics/facesn2.png" x-maintain-ratio="TRUE" width="179px" height="182px" border="0" class="img_whs7"> <img src="pics/facesn3.png" x-maintain-ratio="TRUE" width="181px" height="182px" border="0" class="img_whs8"></p>\r
+<p class="whs3"><img src="pics/facesn1.png" x-maintain-ratio="TRUE" width="180px" height="180px" border="0" class="img_whs6"> <img src="pics/facesn2.png" x-maintain-ratio="TRUE" width="180px" height="180px" border="0" class="img_whs6"> <img src="pics/facesn3.png" x-maintain-ratio="TRUE" width="180px" height="180px" border="0" class="img_whs7"></p>\r
\r
<p class="whs3"> </p>\r
\r
</script>\r
<style type="text/css">\r
<!--\r
-img_whs1 { border-style:none; border:none; width:30px; height:30px; float:none; }\r
+img_whs1 { border:none; width:30px; height:30px; float:none; border-style:none; }\r
ul.whs2 { list-style:disc; }\r
table.whs3 { x-cell-content-align:top; width:100%; border-spacing:0px; }\r
col.whs4 { width:50%; }\r
td.whs6 { width:50%; padding-right:10px; padding-left:10px; border-right-style:none; border-left-style:none; border-top-style:none; border-bottom-style:none; }\r
ul.whs7 { list-style:circle; }\r
td.whs8 { width:50%; padding-right:10px; padding-left:10px; border-top-style:none; border-bottom-style:none; border-right-style:none; }\r
-img_whs9 { border-style:none; border:none; width:400px; height:292px; }\r
+img_whs9 { border:none; width:400px; height:292px; border-style:none; }\r
-->\r
</style><script type="text/javascript" language="JavaScript" title="WebHelpInlineScript">\r
<!--\r
\r
<li class=kadov-p><p>Generation of complex shapes</p></li>\r
\r
+ <li class=kadov-p><p>Working with groups</p></li>\r
+ \r
<li class=kadov-p><p>Geometrical repairing of objects</p></li>\r
\r
<li class=kadov-p><p>Geometrical boolean operations</p></li>\r
\r
<li class=kadov-p><p>Geometrical transformations</p></li>\r
\r
+ <li class=kadov-p><p>Building by blocks</p></li>\r
+ \r
<li class=kadov-p><p>Generation of complex objects</p></li>\r
</ul>\r
<p> </td>\r
<style type="text/css">\r
<!--\r
p.whs1 { font-family:'Times New Roman' , serif; font-size:12pt; font-weight:normal; }\r
-img_whs2 { border-style:none; border:none; float:none; width:30px; height:30px; }\r
+img_whs2 { border:none; float:none; width:30px; height:30px; border-style:none; }\r
p.whs3 { font-family:'Times New Roman' , serif; font-size:12pt; }\r
p.whs4 { margin-left:40px; }\r
p.whs5 { font-family:'Times New Roman' , serif; font-size:14pt; }\r
-img_whs6 { border-style:none; width:20px; height:20px; }\r
+img_whs6 { width:20px; height:20px; border-style:none; }\r
-->\r
</style><script type="text/javascript" language="JavaScript" title="WebHelpInlineScript">\r
<!--\r
{\r
if (window.addTocInfo)\r
{\r
- addTocInfo("GEOM module\nManaging geometrical objects\nDisplaying\\hiding objects");\r
+ addTocInfo("GEOM module\nManaging geometrical objects\nDisplaying/hiding objects");\r
addButton("show",BTN_TEXT,"Show","","","","",0,0,"","","");\r
\r
}\r
document.location.reload();\r
//-->\r
</script>\r
-<h1>Displaying\hiding objects</h1>\r
+<h1>Displaying/hiding objects</h1>\r
\r
-<p class="whs1"><b style="font-weight: normal;"><img src="../i_blue.jpg" x-maintain-ratio="TRUE" x-save-file="TRUE" x-save-method="compute-relative" width="30px" height="30px" border="0" class="img_whs2"> </b>Visualization is available in both, OCC and VTK viewers. \r
- These viewers work independently, i.e. visibility of objects and their \r
- graphic attributes may differ in OCC and VTK viewer. It<b style="font-weight: normal;"><span \r
- style="font-weight: normal;"> is reasonable to use the OCC viewer for \r
- GEOM module.</span></b></p>\r
+<p class="whs1"><b style="font-weight: normal;"><img src="../i_blue.jpg" x-maintain-ratio="TRUE" x-save-file="TRUE" x-save-method="compute-relative" width="30px" height="30px" border="0" class="img_whs2"> </b>Visualization is available in both viewers, OCC and VTK \r
+ . These viewers work independently, i.e. visibility of objects and their \r
+ graphic attributes may differ in OCC and VTK viewer. It<b><span style="font-weight: normal;"> \r
+ is reasonable to use the OCC viewer for GEOM module.</span></b></p>\r
\r
<p class="whs1"> </p>\r
\r
\r
<p class="whs3"> </p>\r
\r
-<p class="whs3"><b>TUI \r
+<p class="whs3"><b style="font-weight: bold;">TUI \r
Command:</b><i> sg.EraseAll()</i></p>\r
\r
<p class="whs3"> </p>\r
\r
<p class="whs3"> </p>\r
\r
-<p class="whs3"><b>TUI \r
+<p class="whs3"><b style="font-weight: bold;">TUI \r
Command:</b><i> </i></p>\r
\r
<p class="whs3"> </p>\r
p.whs1 { font-size:12pt; }\r
img_whs2 { border:none; float:none; width:30px; height:30px; border-style:none; }\r
p.whs3 { margin-left:40px; }\r
-img_whs4 { border:none; border-style:none; width:557px; height:274px; float:none; }\r
-img_whs5 { border:none; border-style:none; width:529px; height:272px; float:none; }\r
-p.whs6 { font-size:12pt; font-family:'Times New Roman' , serif; }\r
+img_whs4 { border:none; width:557px; height:274px; float:none; border-style:none; }\r
+img_whs5 { border:none; width:529px; height:272px; float:none; border-style:none; }\r
-->\r
</style><script type="text/javascript" language="JavaScript" title="WebHelpInlineScript">\r
<!--\r
{\r
if (window.addTocInfo)\r
{\r
- addTocInfo("GEOM module\nImporting\\exporting geometrical objects");\r
+ addTocInfo("GEOM module\nImporting/exporting geometrical objects");\r
addButton("show",BTN_TEXT,"Show","","","","",0,0,"","","");\r
\r
}\r
document.location.reload();\r
//-->\r
</script>\r
-<h1>Importing\exporting geometrical objects</h1>\r
+<h1>Importing/exporting geometrical objects</h1>\r
\r
<p class="whs1"><b style="font-weight: bold;"><img src="../i_blue.jpg" x-maintain-ratio="TRUE" x-save-file="TRUE" x-save-method="compute-relative" width="30px" height="30px" border="0" class="img_whs2"> <span style="font-weight: normal;">In GEOM you can import \r
- and export geometrical objects from\into BREP, IGES, STEP </span></b><b><span \r
- style="font-weight: normal;">files. </span></b></p>\r
+ and export geometrical objects from/into BREP, IGES, STEP </span></b><b><span \r
+ style="font-weight: normal;">files. The mechanisms of import and export \r
+ are implemented via plug-ins, which gives you the opportunity to expand \r
+ the range of available formats by adding more plug-ins (for example, CATIA \r
+ 5). </span></b></p>\r
\r
\r
\r
<p class=TODO> </p>\r
\r
<p class="whs3">From the <span style="font-weight: bold;"><B>File \r
- </B></span>menu choose <span style="font-weight: bold;"><B>Import </B></span>and \r
- select the required format of the file for importation. Then you will \r
- see a standard dialog box allowing to search for and choose *.brep, *.iges \r
- or *.step file:</p>\r
+ </B></span>menu choose <span style="font-weight: bold;"><B>Import. </B></span>In \r
+ the opening<span style="font-weight: bold;"> <B></B></span>dialog box <span style="font-weight: bold;"><B>Import</B></span> \r
+ select the required format of the file for importation and search for \r
+ a *.brep, *.iges or *.step file. \r
+ </p>\r
\r
<p class="whs3"> </p>\r
\r
<p class="whs3"> </p>\r
\r
<p class="whs3">Select the required file and click <span \r
- style="font-weight: bold;"><B>OK</B></span>. You file will be imported into GEOM \r
- and its contents (geometrical objects) will be displayed in the <span \r
+ style="font-weight: bold;"><B>Open</B></span>. Your file will be imported into \r
+ GEOM and its contents (geometrical object) will be displayed in the <span \r
style="font-weight: bold;"><B>Object Browser</B></span>. </p>\r
\r
<p class="whs3"> </p>\r
\r
<p class="whs3">Select the object you wish to export, then \r
from the <span style="font-weight: bold;"><B>File </B></span>menu choose <span \r
- style="font-weight: bold;"><B>Export </B></span>and select the required format \r
- of the file for exportation. You will see a standard dialog box allowing \r
- to enter the name and select the location for the file which will be exported:</p>\r
+ style="font-weight: bold;"><B>Export. </B></span>In the opening dialog box<span \r
+ style="font-weight: bold;"><B> Export </B></span>define the required format the \r
+ name and the location of the file for exportation.<span style="font-weight: bold;"> \r
+ <B></B></span></p>\r
\r
<p class="whs3"> </p>\r
\r
\r
<p class="whs3"> </p>\r
\r
-<p class="whs3">Click <span style="font-weight: bold;"><B>OK</B></span> \r
+<p class="whs3">Click <span style="font-weight: bold;"><B>Save</B></span> \r
to confirm your exportation. </p>\r
\r
-<p class="whs3"> </p>\r
-\r
-<p class="whs6"> </p>\r
-\r
-<li class=kadov-p><p class="whs6"> </p></li>\r
-\r
-<p class="whs6"> </p>\r
-\r
<script type="text/javascript" language="javascript1.2">\r
<!--\r
if (window.writeIntopicBar)\r
p.whs7 { font-family:'Times New Roman' , serif; font-size:14pt; }\r
img_whs8 { width:20px; height:20px; border-style:none; }\r
p.whs9 { font-family:'Times New Roman' , serif; font-size:12pt; }\r
-img_whs10 { border:none; border-style:none; width:360px; height:307px; float:none; }\r
+img_whs10 { border:none; width:360px; height:307px; float:none; border-style:none; }\r
p.whs11 { font-size:12pt; margin-left:40px; }\r
img_whs12 { border:none; width:312px; height:367px; float:none; border-style:none; }\r
p.whs13 { font-size:12pt; margin-left:400px; }\r
p.whs15 { font-size:12pt; font-weight:bold; }\r
img_whs16 { border:none; width:360px; height:328px; float:none; border-style:none; }\r
p.whs17 { font-size:12pt; font-weight:normal; }\r
-img_whs18 { border:none; border-style:none; width:360px; height:290px; float:none; }\r
-img_whs19 { border:none; border-style:none; width:360px; height:328px; float:none; }\r
-img_whs20 { border:none; width:360px; height:405px; float:none; border-style:none; }\r
-img_whs21 { border:none; width:360px; height:309px; float:none; border-style:none; }\r
-p.whs22 { font-size:12pt; margin-left:40px; text-indent:-40px; }\r
-img_whs23 { border:none; width:25px; height:23px; border-style:none; }\r
-ul.whs24 { list-style:disc; }\r
-img_whs25 { border:none; width:329px; height:436px; float:none; border-style:none; }\r
+img_whs18 { border:none; width:360px; height:290px; float:none; border-style:none; }\r
+img_whs19 { border:none; width:360px; height:405px; float:none; border-style:none; }\r
+img_whs20 { border:none; width:360px; height:309px; float:none; border-style:none; }\r
+p.whs21 { font-size:12pt; margin-left:40px; text-indent:-40px; }\r
+img_whs22 { border:none; width:25px; height:23px; border-style:none; }\r
+ul.whs23 { list-style:disc; }\r
+img_whs24 { border:none; width:329px; height:436px; float:none; border-style:none; }\r
-->\r
</style><script type="text/javascript" language="JavaScript">\r
<!--\r
if ((navigator.appName == "Netscape") && (parseInt(navigator.appVersion) == 4))\r
{\r
var strNSS = "<style type='text/css'>";\r
- strNSS += "p.whs22 {text-indent:1pt; }";\r
+ strNSS += "p.whs21 {text-indent:1pt; }";\r
strNSS +="</style>";\r
document.write(strNSS);\r
}\r
<p class="whs1"> </p>\r
\r
<p class="whs1"><b style="font-weight: bold;">Result:</b> Display \r
- the matrix and moments of inretia in the form of Python Tuple (I11, I12, \r
+ the matrix and moments of inertia in the form of Python Tuple (I11, I12, \r
I13, </p>\r
\r
<p class="whs13"> I21, \r
\r
<p class="whs1"> </p>\r
\r
-<p class="whs11"><img src="../pics/new-tolerance.png" x-maintain-ratio="TRUE" width="360px" height="328px" border="0" class="img_whs19"></p>\r
+<p class="whs11"><img src="../pics/new-tolerance.png" x-maintain-ratio="TRUE" width="360px" height="328px" border="0" class="img_whs16"></p>\r
\r
<p class="whs1"> </p>\r
\r
\r
<p class="whs1"> </p>\r
\r
-<p class="whs11"><img src="../pics/measures8.png" x-maintain-ratio="TRUE" width="360px" height="405px" border="0" class="img_whs20"></p>\r
+<p class="whs11"><img src="../pics/measures8.png" x-maintain-ratio="TRUE" width="360px" height="405px" border="0" class="img_whs19"></p>\r
\r
<p class="whs11"> </p>\r
\r
\r
<p class="whs1"> </p>\r
\r
-<p class="whs11"><img src="../pics/measures9.png" x-maintain-ratio="TRUE" width="360px" height="309px" border="0" class="img_whs21"></p>\r
+<p class="whs11"><img src="../pics/measures9.png" x-maintain-ratio="TRUE" width="360px" height="309px" border="0" class="img_whs20"></p>\r
\r
<p class="whs11"> </p>\r
\r
-<p class="whs22"> </p>\r
+<p class="whs21"> </p>\r
\r
-<p class="whs22"> </p>\r
+<p class="whs21"> </p>\r
\r
-<p class="whs22"><a name=Check_comp_blocks><img src="../image27.gif" width="25px" height="23px" border="0" class="img_whs23"> <span style="font-size: 14pt; font-weight: bold;"><font size=4 style="font-size:14pt;"><B>Check compound \r
+<p class="whs21"><a name=Check_comp_blocks><img src="../image27.gif" width="25px" height="23px" border="0" class="img_whs22"> <span style="font-size: 14pt; font-weight: bold;"><font size=4 style="font-size:14pt;"><B>Check compound \r
of blocks</B></font></span></a></p>\r
\r
-<p class="whs22"> </p>\r
+<p class="whs21"> </p>\r
\r
<p class="whs1"><b style="font-weight: bold;">Description:</b> \r
Checks whether a shape is a compound of glued blocks. To be considered \r
as a compound of blocks, the given shape must satisfy the following conditions:</p>\r
\r
-<ul type="disc" class="whs24">\r
+<ul type="disc" class="whs23">\r
\r
<li class=kadov-p><p class="whs1"> Each \r
element of the compound should be a Block (6 faces and 12 edges);</p></li>\r
\r
<p class="whs1">Informs of the following possible errors:</p>\r
\r
-<ul type="disc" class="whs24">\r
+<ul type="disc" class="whs23">\r
\r
<li class=kadov-p><p class="whs1">not a block,</p></li>\r
\r
\r
<p class="whs1"> </p>\r
\r
-<p class="whs1"><b style="font-weight: bold;">TUI Command:</b><i> \r
- </i><span style="font-style: italic;"><I>geompy.CheckCompoundOfBlocks(Compound)</I></span>, \r
- where the Compound is a shape, investigated in order to see, if it is \r
- a valid compound of blocks. Validity flag is returned, encountered errors \r
- are printed in the python console.</p>\r
+<p class="whs1"><b>TUI Command:</b><i> </i><span style="font-style: italic;"><I>geompy.CheckCompoundOfBlocks(Compound). \r
+ </I></span>Checks if the<span style="font-style: italic;"> <I></I></span>shape is \r
+ a valid compound of blocks. If it is true, then the validity flag is returned, \r
+ and encountered errors are printed in the python console.</p>\r
\r
<p class="whs1"> </p>\r
\r
\r
<p class="whs11"> </p>\r
\r
-<p class="whs11"><img src="../pics/measures10.png" x-maintain-ratio="TRUE" width="329px" height="436px" border="0" class="img_whs25"></p>\r
+<p class="whs11"><img src="../pics/measures10.png" x-maintain-ratio="TRUE" width="329px" height="436px" border="0" class="img_whs24"></p>\r
\r
<p class="whs11"> </p>\r
\r
p.whs6 { font-size:12pt; font-style:italic; }\r
img_whs7 { border:none; width:226px; height:250px; float:none; border-style:none; }\r
img_whs8 { border:none; float:none; width:208px; height:250px; border-style:none; }\r
-img_whs9 { border:none; width:220px; height:251px; float:none; border-style:none; }\r
+img_whs9 { border:none; width:220px; height:250px; float:none; border-style:none; }\r
p.whs10 { list-style:disc; margin-left:0in; margin-right:0in; margin-top:0px; margin-bottom:0px; }\r
-->\r
</style><script type="text/javascript" language="JavaScript">\r
the specified edges or faces of the given shape, you \r
need to define the <span style="font-weight: bold;"><B>Main Object</B></span> \r
to create a fillet on, select the necessary edges or faces in the object \r
- browser or in the viewer and define the <span \r
+ browser or in the OCC Viewer and define the <span \r
style="font-weight: bold;"><B>Radius</B></span> \r
of the Fillet. </p>\r
\r
\r
<p class="whs2"> </p>\r
\r
-<p class="whs2"><img src="pics/fillet_all.png" x-maintain-ratio="TRUE" width="226px" height="250px" border="0" class="img_whs7"> <img src="pics/fillet_edge.png" x-maintain-ratio="TRUE" width="208px" height="250px" border="0" class="img_whs8"><span style="font-size: 12pt; margin-left: 40px;"> <font size=3 style="font-size:12pt;"> <img src="pics/fillet_prism.png" x-maintain-ratio="TRUE" width="220px" height="251px" border="0" class="img_whs9"></font></span></p>\r
+<p class="whs2"><img src="pics/fillet_all.png" x-maintain-ratio="TRUE" width="226px" height="250px" border="0" class="img_whs7"> <img src="pics/fillet_edge.png" x-maintain-ratio="TRUE" width="208px" height="250px" border="0" class="img_whs8"><span style="font-size: 12pt; margin-left: 40px;"> <font size=3 style="font-size:12pt;"> <img src="pics/fillet_prism.png" x-maintain-ratio="TRUE" width="220px" height="250px" border="0" class="img_whs9"></font></span></p>\r
\r
<p class="whs10"> </p>\r
\r
p.whs3 { font-size:12pt; margin-left:0px; }\r
img_whs4 { border:none; width:312px; height:367px; float:none; border-style:none; }\r
p.whs5 { font-size:12pt; margin-left:40px; }\r
-img_whs6 { border:none; float:none; width:263px; height:235px; border-style:none; }\r
-img_whs7 { border:none; float:none; width:267px; height:233px; border-style:none; }\r
+img_whs6 { border:none; float:none; width:260px; height:230px; border-style:none; }\r
-->\r
</style><script type="text/javascript" language="JavaScript">\r
<!--\r
\r
<p class="whs2"> </p>\r
\r
-<p class="whs5"><img src="pics/filling_compoundsn.png" x-maintain-ratio="TRUE" width="263px" height="235px" border="0" class="img_whs6"> <img src="pics/fillingsn.png" x-maintain-ratio="TRUE" width="267px" height="233px" border="0" class="img_whs7"> </p>\r
+<p class="whs5"><img src="pics/filling_compoundsn.png" x-maintain-ratio="TRUE" width="260px" height="230px" border="0" class="img_whs6"> <img src="pics/fillingsn.png" x-maintain-ratio="TRUE" width="260px" height="230px" border="0" class="img_whs6"> </p>\r
\r
<p class="whs5"> </p>\r
\r
p.whs4 { font-size:12pt; margin-right:0in; margin-top:0px; margin-bottom:0px; margin-left:40px; }\r
img_whs5 { border:none; width:312px; height:324px; float:none; border-style:none; }\r
p.whs6 { list-style:disc; margin-right:0in; margin-top:0px; margin-bottom:0px; margin-left:40px; }\r
-img_whs7 { border:none; float:none; width:250px; height:262px; border-style:none; }\r
-img_whs8 { border:none; float:none; width:250px; height:263px; border-style:none; }\r
+img_whs7 { border:none; float:none; width:252px; height:265px; border-style:none; }\r
-->\r
</style><script type="text/javascript" language="JavaScript">\r
<!--\r
\r
<p class="whs6"> </p>\r
\r
-<p class="whs6"><span style="font-size: 12pt;"><font size=3 style="font-size:12pt;"><img src="pics/fusesn1.png" x-maintain-ratio="TRUE" width="250px" height="262px" border="0" class="img_whs7"> <img src="pics/fusesn2.png" x-maintain-ratio="TRUE" width="250px" height="263px" border="0" class="img_whs8"></font></span></p>\r
+<p class="whs6"><span style="font-size: 12pt;"><font size=3 style="font-size:12pt;"><img src="pics/fusesn1.png" x-maintain-ratio="TRUE" width="252px" height="265px" border="0" class="img_whs7"> <img src="pics/fusesn2.png" x-maintain-ratio="TRUE" width="252px" height="265px" border="0" class="img_whs7"></font></span></p>\r
\r
<p class="whs2"> </p>\r
\r
check_free_faces.htm\r
circle.htm\r
close_contour.htm\r
+color.htm\r
common.htm\r
complex_objects.htm\r
compound.htm\r
geometrical_objects.htm\r
glue_faces.htm\r
groups.htm\r
+isos.htm\r
line.htm\r
local_coordinate_system.htm\r
measurement_tools.htm\r
suppress_internal_wires.htm\r
transformation_operations.htm\r
translation.htm\r
+transparency.htm\r
turus.htm\r
vector.htm\r
wire.htm\r
+wireframe_and_shading.htm\r
working_plane.htm\r
working_with_groups.htm\r
ehelp.xml\r
files\salome2_sp3_operationgui_functions_salome2_sp3_operationgui_functions_image88.gif\r
files\salome2_sp3_measuregui_functions_salome2_sp3_measuregui_functions_image77.gif\r
files\salome2_sp3_basicgui_functions_salome2_sp3_basicgui_functions_image32.gif\r
+image28.gif\r
+selectcolor.png\r
pics\glue_faces1.png\r
pics\supp_int_wires1.png\r
pics\fusesn1.png\r
files\salome2_sp3_measuregui_functions_salome2_sp3_measuregui_functions_image78.gif\r
image3.jpg\r
files\salome2_sp3_basicgui_functions_salome2_sp3_basicgui_functions_image33.gif\r
+pics\neo-isos.png\r
pics\glue_faces2.png\r
pics\supp_int_wires2.png\r
pics\sectionsn.png\r
pics\neo-materials.png\r
pics\neo-obj3.png\r
pics\neo-localcs2.png\r
-pics\neo-isos.png\r
pics\measures1.png\r
pics\repair3.png\r
pics\transformation9.png\r
image150.jpg\r
image82.jpg\r
image19.gif\r
-image5.jpg\r
pics\rotationsn2.png\r
pics\disp_mode2sn.png\r
pics\neo-detect2.png\r
image94.jpg\r
image83.jpg\r
files\salome2_sp3_generationgui_functions_salome2_sp3_generationgui_functions_image56.gif\r
+pics\isos_u12_v12sn.png\r
pics\free_boudaries1.png\r
pics\multi_rotation1d1.png\r
pics\multi_translation2dsn.png\r
pics\offsetsn.png\r
-pics\isos_u12_v12sn.png\r
pics\compoundsn.png\r
pics\prisms_basessn.png\r
pics\cylinders.png\r
image130.jpg\r
image95.jpg\r
image84.jpg\r
-image4.gif\r
files\salome2_sp3_generationgui_functions_salome2_sp3_generationgui_functions_image57.gif\r
pics\free_boudaries2.png\r
pics\multi_rotation2d1.png\r
files\salome2_sp3_operationgui_functions_salome2_sp3_operationgui_functions_image90.gif\r
files\salome2_sp3_basicgui_functions_salome2_sp3_basicgui_functions_image29.gif\r
i_blue.jpg\r
+image30.gif\r
pics\free_faces1.png\r
pics\fillet_all.png\r
pics\translationsn2.png\r
files\salome2_sp3_primitivegui_functions_salome2_sp3_primitivegui_functions_image100.gif\r
files\salome2_sp3_primitivegui_functions_salome2_sp3_primitivegui_functions_image99.gif\r
salome2_sp3_buildgui_functions_salome2_sp3_buildgui_functions_image13.gif\r
+image31.gif\r
+pics\commonsn.png\r
pics\free_faces2.png\r
pics\mirror_planesn1.png\r
pics\block_explodesn.png\r
whgdata\whlstt14.htm\r
whgdata\whlstt15.htm\r
whgdata\whlstt16.htm\r
+whgdata\whlstt17.htm\r
whgdata\whlsti0.htm\r
whgdata\whlstfl0.htm\r
whgdata\whlstfl1.htm\r
whgdata\whlstf12.htm\r
whgdata\whlstf13.htm\r
whgdata\whlstf14.htm\r
+whgdata\whlstf15.htm\r
whgdata\whlstg0.htm\r
geom.htm\r
geom_csh.htm\r
\r
<p> </p>\r
\r
-<p># create edge</p>\r
+<p># create an edge</p>\r
\r
<p class="whs1">edge = geompy.MakeEdge(p0, \r
pxyz)</p>\r
\r
<p> </p>\r
\r
-<p># add object in study</p>\r
+<p># add object in the study</p>\r
\r
<p class="whs1">id_edge = geompy.addToStudy(edge,"Edge")</p>\r
\r
<p> </p>\r
\r
-<p># display edge</p>\r
+<p># display an edge</p>\r
\r
<p class="whs1">gg.createAndDisplayGO(id_edge) \r
</p>\r
\r
<p class="whs2"> </p>\r
\r
-<p class="whs2"># create vector on two \r
- points</p>\r
+<p class="whs2"># create a vector from \r
+ two points</p>\r
\r
<p class="whs1">vxy = geompy.MakeVector(px, \r
py)</p>\r
\r
<p class="whs1"> </p>\r
\r
-<p class="whs2"># create arc with three \r
- points</p>\r
+<p class="whs2"># create an arc from \r
+ three points</p>\r
\r
<p class="whs1">arc = geompy.MakeArc(py, \r
pz, px)</p>\r
\r
<p class="whs2"> </p>\r
\r
-<p class="whs2"># create wire</p>\r
+<p class="whs2"># create a wire</p>\r
\r
<p class="whs1">wire = geompy.MakeWire([vxy, \r
arc])</p>\r
\r
<p class="whs2"> </p>\r
\r
-<p class="whs2"># add object in study</p>\r
+<p class="whs2"># add an object in the \r
+ study</p>\r
\r
<p class="whs1">id_wire = geompy.addToStudy(wire,"Wire")</p>\r
\r
<p class="whs2"> </p>\r
\r
-<p class="whs2"># display wire</p>\r
+<p class="whs2"># display the wire</p>\r
\r
<p class="whs1">gg.createAndDisplayGO(id_wire) \r
</p>\r
\r
<p class="whs1"> </p>\r
\r
-<p class="whs2"># create vector on two \r
- points</p>\r
+<p class="whs2"># create a vector from \r
+ two points</p>\r
\r
<p class="whs1">vxy = geompy.MakeVector(px, \r
py)</p>\r
\r
<p class="whs1"> </p>\r
\r
-<p class="whs2"># create arc with three \r
- points</p>\r
+<p class="whs2"># create an arc from \r
+ three points</p>\r
\r
<p class="whs1">arc = geompy.MakeArc(py, \r
pz, px)</p>\r
\r
<p class="whs1"> </p>\r
\r
-<p class="whs2"># create wire</p>\r
+<p class="whs2"># create a wire</p>\r
\r
<p class="whs1">wire = geompy.MakeWire([vxy, \r
arc])</p>\r
\r
<p class="whs1"> </p>\r
\r
-<p class="whs2"># create face from wire</p>\r
+<p class="whs2"># create a face from \r
+ the wire</p>\r
\r
<p class="whs1">face1 = geompy.MakeFace(wire, \r
isPlanarFace)</p>\r
\r
<p class="whs1"> </p>\r
\r
-<p class="whs2"># add objects in study</p>\r
+<p class="whs2"># add objects in the \r
+ study</p>\r
\r
<p class="whs1">id_face1 = geompy.addToStudy(face1,"Face1")</p>\r
\r
\r
<p class="whs1"> </p>\r
\r
-<p class="whs2"># display faces</p>\r
+<p class="whs2"># display the faces</p>\r
\r
<p class="whs1">gg.createAndDisplayGO(id_face1)</p>\r
\r
\r
<p class="whs1"> </p>\r
\r
-<p class="whs2"># create face from two \r
- wires</p>\r
+<p class="whs2"># create a face from \r
+ two wires</p>\r
\r
<p class="whs1">face = geompy.MakeFaces([sketcher1, \r
sketcher2],isPlanarFace)</p>\r
\r
<p class="whs1"> </p>\r
\r
-<p class="whs2"># create prism</p>\r
+<p class="whs2"># create a prism</p>\r
\r
<p class="whs1">prism = geompy.MakePrism(face, \r
p0, pxyz)</p>\r
\r
<p class="whs1"> </p>\r
\r
-<p class="whs2"># explode prism on faces</p>\r
+<p class="whs2"># explode the prism into \r
+ faces</p>\r
\r
<p class="whs1">prism_faces = geompy.SubShapeAllSorted(prism, \r
geompy.ShapeType["FACE"])</p>\r
\r
<p class="whs1"> </p>\r
\r
-<p class="whs2"># create shell from the \r
- set of faces</p>\r
+<p class="whs2"># create a shell from \r
+ a set of faces</p>\r
\r
<p class="whs1">shell = geompy.MakeShell([prism_faces[0], \r
prism_faces[2], prism_faces[3],</p>\r
\r
<p class="whs1"> </p>\r
\r
-<p class="whs2"># add objects in study</p>\r
+<p class="whs2"># add objects in the \r
+ study</p>\r
\r
<p class="whs1">id_shell = geompy.addToStudy(shell,"Shell")</p>\r
\r
<p class="whs1"> </p>\r
\r
-<p class="whs2"># display shell</p>\r
+<p class="whs2"># display the shell</p>\r
\r
<p class="whs1">gg.createAndDisplayGO(id_shell)</p>\r
\r
\r
<p class="whs1"> </p>\r
\r
-<p class="whs2"># create prism</p>\r
+<p class="whs2"># create a prism</p>\r
\r
<p class="whs1">prism = geompy.MakePrism(face, \r
p0, pz)</p>\r
\r
<p class="whs1"> </p>\r
\r
-<p class="whs2"># explode prism on faces</p>\r
+<p class="whs2"># explode the prism into \r
+ faces</p>\r
\r
<p class="whs1">prism_faces = geompy.SubShapeAllSorted(prism, \r
geompy.ShapeType["FACE"])</p>\r
\r
<p class="whs1"> </p>\r
\r
-<p class="whs2"># create shell from the \r
- set of faces</p>\r
+<p class="whs2"># create a shell from \r
+ a set of faces</p>\r
\r
<p class="whs1">shell = geompy.MakeShell([prism_faces[0], \r
prism_faces[1],</p>\r
\r
<p class="whs1"> </p>\r
\r
-<p class="whs2"># create solid, bounded \r
+<p class="whs2"># create a solid, bounded \r
by the given shells</p>\r
\r
<p class="whs1">solid = geompy.MakeSolid([shell])</p>\r
\r
<p class="whs1"> </p>\r
\r
-<p class="whs2"># add objects in study</p>\r
+<p class="whs2"># add objects in the \r
+ study</p>\r
\r
<p class="whs1">id_solid = geompy.addToStudy(solid,"Solid")</p>\r
\r
<p class="whs1"> </p>\r
\r
-<p class="whs2"># display solid</p>\r
+<p class="whs2"># display the solid</p>\r
\r
<p class="whs1">gg.createAndDisplayGO(id_solid)</p>\r
\r
\r
<p class="whs1"> </p>\r
\r
-<p class="whs2"># create prism</p>\r
+<p class="whs2"># create a prism</p>\r
\r
<p class="whs1">prism = geompy.MakePrism(face, \r
p0, pz)</p>\r
\r
<p class="whs1"> </p>\r
\r
-<p class="whs2"># explode prism on faces</p>\r
+<p class="whs2"># explode the prism into \r
+ faces</p>\r
\r
<p class="whs1">prism_faces = geompy.SubShapeAllSorted(prism, \r
geompy.ShapeType["FACE"])</p>\r
\r
<p class="whs1"> </p>\r
\r
-<p class="whs2"># create shell from the \r
- set of faces</p>\r
+<p class="whs2"># create a shell from \r
+ a set of faces</p>\r
\r
<p class="whs1">shell = geompy.MakeShell([prism_faces[0], \r
prism_faces[1],</p>\r
\r
<p class="whs1"> </p>\r
\r
-<p class="whs2"># create solid, bounded \r
+<p class="whs2"># create a solid, bounded \r
by the given shells</p>\r
\r
<p class="whs1">solid = geompy.MakeSolid([shell])</p>\r
\r
<p class="whs1"> </p>\r
\r
-<p class="whs2"># add objects in study</p>\r
+<p class="whs2"># add objects in the \r
+ study</p>\r
\r
<p class="whs1">id_solid = geompy.addToStudy(solid,"Solid")</p>\r
\r
<p class="whs1"> </p>\r
\r
-<p class="whs2"># display solid</p>\r
+<p class="whs2"># display the solid</p>\r
\r
<p class="whs1">gg.createAndDisplayGO(id_solid)</p>\r
\r
\r
<p class="whs4"><b style="font-weight: bold;">TUI Command \r
: </b><span style="font-style: italic;"><I>geompy.MakeGlueFaces(theShape, \r
- theTolerance)</I></span>, where theShape is a compound of shapesto be glued, \r
+ theTolerance)</I></span>, where theShape is a compound of shapes to be glued, \r
theTolerance is a maximum distance between two faces, which can be considered \r
as coincident.</p>\r
\r
\r
<p> </p>\r
\r
-<p># create a box on two points</p>\r
+<p># create a box from two points</p>\r
\r
<p class="whs1">Box = geompy.MakeBoxTwoPnt(p0, \r
p200)</p>\r
\r
<p> </p>\r
\r
-<p># create group on box's faces</p>\r
+<p># create a group from the faces of the box</p>\r
\r
<p class="whs1">group = geompy.CreateGroup(Box, \r
geompy.ShapeType["FACE"])</p>\r
\r
<p> </p>\r
\r
-<p># add to the group all the given shapes from the list</p>\r
+<p># add all selected shapes from the list to the group </p>\r
\r
-<p># (no errors, if some shapes are already included)</p>\r
+<p># (the program doesn't raise error, if some shapes are already included)</p>\r
\r
<p class="whs1">geompy.UnionList(group, \r
[SubFaceList[0], SubFaceList[2], SubFaceList[5]])</p>\r
\r
<p> </p>\r
\r
-<p># remove object from the group</p>\r
+<p># remove an object from the group</p>\r
\r
<p class="whs1">geompy.RemoveObject(group, \r
FaceID)</p>\r
\r
<p> </p>\r
\r
-<p># remove from the group all the given shapes</p>\r
+<p># remove all selected shapes from the group </p>\r
\r
-<p># (no errors, if some shapes are not included)</p>\r
+<p># (the program doesn't raise error, if some shapes are not included)</p>\r
\r
<p class="whs1">geompy.DifferenceList(group, \r
[SubFaceList[2], SubFaceList[3], SubFaceList[4]])</p>\r
\r
<p> </p>\r
\r
-<p># display group's contents</p>\r
+<p># display the contents of the group</p>\r
\r
<p class="whs1">gg.createAndDisplayGO(id_group1)</p>\r
\r
<p><span style="font-family: 'Lucida Console', monospace;">salome.sg.updateObjBrowser(1)</span> \r
</p>\r
\r
-<h3> </h3>\r
-\r
-<h3> </h3>\r
-\r
-<h3>Adding an object in a group.</h3>\r
+<h3>Adding an object to the group.</h3>\r
\r
<p class="whs1">import geompy</p>\r
\r
\r
<p> </p>\r
\r
-<p># create a box on two points</p>\r
+<p># create a box from two points</p>\r
\r
<p class="whs1">Box = geompy.MakeBoxTwoPnt(p0, \r
p200)</p>\r
\r
<p> </p>\r
\r
-<p># create group on box's faces</p>\r
+<p># create a group from the faces of the box</p>\r
\r
<p class="whs1">group = geompy.CreateGroup(Box, \r
geompy.ShapeType["FACE"])</p>\r
\r
<p> </p>\r
\r
-<p># display group's contents</p>\r
+<p># display the contents of the group</p>\r
\r
<p class="whs1">gg.createAndDisplayGO(id_group1)</p>\r
\r
\r
<p> </p>\r
\r
-<h3>Removing an object from a group</h3>\r
+<h3>Removing an object from the group</h3>\r
\r
<p class="whs1">import geompy</p>\r
\r
\r
<p> </p>\r
\r
-<p># create a box on two points</p>\r
+<p># create a box from two points</p>\r
\r
<p class="whs1">Box = geompy.MakeBoxTwoPnt(p0, \r
p200)</p>\r
\r
<p> </p>\r
\r
-<p># create group on box's faces</p>\r
+<p># create a group from the faces of the box</p>\r
\r
<p class="whs1">group = geompy.CreateGroup(Box, \r
geompy.ShapeType["FACE"])</p>\r
\r
<p> </p>\r
\r
-<p># add to the group all the given shapes from the list</p>\r
+<p># add all selected shapes from the list to the group </p>\r
\r
-<p># (no errors, if some shapes are already included)</p>\r
+<p># (the program doesn't raise errors, if some shapes are already included)</p>\r
\r
<p class="whs1">geompy.UnionList(group, \r
[SubFaceList[0], SubFaceList[2], SubFaceList[5]])</p>\r
\r
<p> </p>\r
\r
-<p># remove object from the group</p>\r
+<p># remove an object from the group</p>\r
\r
<p class="whs1">geompy.RemoveObject(group, \r
FaceID)</p>\r
\r
<p> </p>\r
\r
-<p># display group's contents</p>\r
+<p># display the contents of the group</p>\r
\r
<p class="whs1">gg.createAndDisplayGO(id_group1)</p>\r
\r
--- /dev/null
+<!doctype HTML public "-//W3C//DTD HTML 4.0 Frameset//EN">\r
+\r
+<html>\r
+\r
+<head>\r
+<title>Isos</title>\r
+<meta http-equiv="content-type" content="text/html; charset=windows-1252">\r
+<meta name="generator" content="RoboHelp by eHelp Corporation www.ehelp.com">\r
+<link rel="stylesheet" href="default_ns.css"><script type="text/javascript" language="JavaScript" title="WebHelpSplitCss">\r
+<!--\r
+if (navigator.appName !="Netscape")\r
+{ document.write("<link rel='stylesheet' href='default.css'>");}\r
+//-->\r
+</script>\r
+<style type="text/css">\r
+<!--\r
+p.whs1 { font-size:12pt; }\r
+p.whs2 { font-size:12pt; margin-left:40px; }\r
+img_whs3 { border:none; width:255px; height:150px; float:none; border-style:none; }\r
+img_whs4 { border:none; width:400px; height:420px; float:none; border-style:none; }\r
+p.whs5 { font-family:'Times New Roman' , serif; font-size:12pt; }\r
+-->\r
+</style><script type="text/javascript" language="JavaScript" title="WebHelpInlineScript">\r
+<!--\r
+function reDo() {\r
+ if (innerWidth != origWidth || innerHeight != origHeight)\r
+ location.reload();\r
+}\r
+if ((parseInt(navigator.appVersion) == 4) && (navigator.appName == "Netscape")) {\r
+ origWidth = innerWidth;\r
+ origHeight = innerHeight;\r
+ onresize = reDo;\r
+}\r
+onerror = null; \r
+//-->\r
+</script>\r
+<style type="text/css">\r
+<!--\r
+div.WebHelpPopupMenu { position:absolute; left:0px; top:0px; z-index:4; visibility:hidden; }\r
+-->\r
+</style><script type="text/javascript" language="javascript1.2" src="whmsg.js"></script>\r
+<script type="text/javascript" language="javascript" src="whver.js"></script>\r
+<script type="text/javascript" language="javascript1.2" src="whproxy.js"></script>\r
+<script type="text/javascript" language="javascript1.2" src="whutils.js"></script>\r
+<script type="text/javascript" language="javascript1.2" src="whtopic.js"></script>\r
+</head>\r
+<body><script type="text/javascript" language="javascript1.2">\r
+<!--\r
+if (window.gbWhTopic)\r
+{\r
+ if (window.addTocInfo)\r
+ {\r
+ addTocInfo("GEOM module\nManaging geometrical objects\nChanging Display Parameters\nIsolines");\r
+addButton("show",BTN_TEXT,"Show","","","","",0,0,"","","");\r
+\r
+ }\r
+ if (window.writeBtnStyle)\r
+ writeBtnStyle();\r
+\r
+ if (window.writeIntopicBar)\r
+ writeIntopicBar(1);\r
+\r
+ if (window.setRelStartPage)\r
+ {\r
+ setRelStartPage("geom.htm");\r
+\r
+ autoSync(1);\r
+ sendSyncInfo();\r
+ sendAveInfoOut();\r
+ }\r
+}\r
+else\r
+ if (window.gbIE4)\r
+ document.location.reload();\r
+//-->\r
+</script>\r
+<h1>Isolines</h1>\r
+\r
+<p class="whs1">In this menu you can change the number of isolines \r
+ displayed within a shape.</p>\r
+\r
+<p class="whs1"><b style="font-weight: bold;">Arguments:</b> \r
+ 2 values (number of isolines).</p>\r
+\r
+<p class="whs1"> </p>\r
+\r
+<p class="whs2"><img src="pics/neo-isos.png" x-maintain-ratio="TRUE" width="255px" height="150px" border="0" class="img_whs3"></p>\r
+\r
+<p class="whs2"> </p>\r
+\r
+<p class="whs1"><b style="font-weight: bold;">Example:</b></p>\r
+\r
+<p class="whs1"> </p>\r
+\r
+<p class="whs2"><img src="pics/colorsn.png" x-maintain-ratio="TRUE" width="400px" height="420px" border="0" class="img_whs4"> <img src="pics/isos_u12_v12sn.png" x-maintain-ratio="TRUE" width="400px" height="420px" border="0" class="img_whs4"></p>\r
+\r
+<p class="whs5"> </p>\r
+\r
+<p> </p>\r
+\r
+<script type="text/javascript" language="javascript1.2">\r
+<!--\r
+if (window.writeIntopicBar)\r
+ writeIntopicBar(0);\r
+//-->\r
+</script>\r
+</body>\r
+</html>\r
<p class="whs2"> </p>\r
\r
<p class="whs2"><b style="font-weight: bold;">TUI Command:</b> \r
- <span style="font-style: italic;"><I>geompy.MakeLine(Point1, Point2)</I></span> \r
+ <span style="font-style: italic;"><I>geompy.MakeLineTwoPnt(Point1, Point2)</I></span> \r
</p>\r
\r
<p class="whs2"><b style="font-weight: bold;">Arguments:</b> \r
\r
<p class="whs2"> </p>\r
\r
-<p class="whs9">NB! <span style="font-weight: normal;">The \r
+<p class="whs9">NB! <span style="font-weight: normal;">There \r
is another way to create a line, which is currently accessible only via</span> \r
TUI <span style="font-weight: normal;">commands.</span></p>\r
\r
<!--\r
img_whs1 { border:none; width:16px; height:16px; border-style:none; }\r
p.whs2 { font-size:12pt; }\r
-table.whs3 { x-cell-content-align:top; width:63.512%; border-spacing:0px; }\r
-col.whs4 { width:49.962%; }\r
-col.whs5 { width:45.348%; }\r
-col.whs6 { width:4.69%; }\r
-tr.whs7 { x-cell-content-align:top; }\r
-td.whs8 { width:49.962%; padding-right:10px; padding-left:10px; border-right-style:none; border-left-style:none; border-top-style:none; border-bottom-style:none; }\r
-p.whs9 { font-weight:bold; font-size:14pt; }\r
-img_whs10 { border:none; width:312px; height:391px; float:none; border-style:none; }\r
-td.whs11 { width:45.348%; padding-right:10px; padding-left:10px; border-right-style:none; border-top-style:none; border-bottom-style:none; }\r
-img_whs12 { border:none; width:312px; height:289px; float:none; border-style:none; }\r
-td.whs13 { width:4.69%; padding-right:10px; padding-left:10px; border-top-style:none; border-bottom-style:none; border-right-style:none; }\r
-img_whs14 { border:none; width:312px; height:359px; float:none; border-style:none; }\r
-p.whs15 { margin-left:40px; font-weight:bold; text-indent:-40px; font-size:14pt; }\r
-p.whs16 { font-weight:bold; text-indent:-40px; font-size:14pt; margin-left:40px; }\r
-p.whs17 { font-weight:bold; margin-left:80px; text-indent:-80px; font-size:12pt; }\r
-p.whs18 { font-weight:bold; text-indent:-80px; font-size:12pt; margin-left:120px; }\r
-img_whs19 { border:none; width:200px; height:219px; border-style:none; }\r
+p.whs3 { font-weight:bold; font-size:14pt; }\r
+img_whs4 { border:none; width:312px; height:391px; float:none; border-style:none; }\r
+p.whs5 { font-size:12pt; font-weight:normal; }\r
+img_whs6 { border:none; width:312px; height:289px; float:none; border-style:none; }\r
+p.whs7 { font-size:12pt; font-weight:bold; }\r
+img_whs8 { border:none; width:312px; height:359px; float:none; border-style:none; }\r
+p.whs9 { font-weight:bold; text-indent:-40px; font-size:14pt; margin-left:40px; }\r
+p.whs10 { font-weight:bold; margin-left:80px; text-indent:-80px; font-size:12pt; }\r
+p.whs11 { font-weight:bold; text-indent:-80px; font-size:12pt; margin-left:120px; }\r
+img_whs12 { border:none; width:200px; height:219px; border-style:none; }\r
-->\r
</style><script type="text/javascript" language="JavaScript">\r
<!--\r
if ((navigator.appName == "Netscape") && (parseInt(navigator.appVersion) == 4))\r
{\r
var strNSS = "<style type='text/css'>";\r
- strNSS += "p.whs15 {text-indent:1pt; }";\r
- strNSS += "p.whs16 {text-indent:1pt; }";\r
- strNSS += "p.whs17 {text-indent:1pt; }";\r
- strNSS += "p.whs18 {text-indent:1pt; }";\r
+ strNSS += "p.whs9 {text-indent:1pt; }";\r
+ strNSS += "p.whs10 {text-indent:1pt; }";\r
+ strNSS += "p.whs11 {text-indent:1pt; }";\r
strNSS +="</style>";\r
document.write(strNSS);\r
}\r
style="font-weight: bold;"><B>New Entity - > Basic - > Local Coordinate \r
System</B></span></p>\r
\r
-<p class="whs2"> </p>\r
-\r
-<p class="whs2">You can enter the values of X, Y, and Z coordinates \r
- of origin in the corresponding fields of the dialog box, or select a point \r
- in the object browser or 3D viewer, in this case the coordinates of origin \r
- are automatically filled in with the coordinates of the selected point. \r
- </p>\r
-\r
-<p class="whs2">The user then specifies components of X and \r
- Y axes direction.</p>\r
-\r
-<p class="whs2">Preview of the new LCS (small trihedron located \r
- and oriented according to parameters of LCS) is displayed in the 3D viewer \r
- and updated as soon as the user modifies some parameter. </p>\r
-\r
-<p class="whs2">Then the user presses «OK» or «Apply» button \r
- to create an LCS at the location with the specified coordinates. The new \r
- object is shown in the Object Browser and in 3D viewer.</p>\r
+<p class="whs2">There are three algorithms to choose from.</p>\r
\r
<p class="whs2"> </p>\r
\r
+<p class="whs2">Firstly, you can by yourselves the values of \r
+ X, Y, and Z coordinates of origin and the directions of X and Y axes<span>.</span></p>\r
+\r
<p class="whs2"><span style="font-weight: bold;"><B>TUI command:</B></span> \r
<span style="font-style: italic;"><I>geompy.MakeMarker(OX, OY, OZ, XDX, XDY, \r
XDZ, YDX, YDY, YDZ)</I></span>, where OX, OY, OZ are coordinates of the origin \r
of LCS, XDX, XDY, XDZ is a vector of OX direction \r
of the LCS and YDX, YDY, YDZ is a a vector of OY direction of the LCS.</p>\r
\r
-<p class="whs2"> </p>\r
+<p class="whs2"><b style="font-weight: bold;">Arguments:</b> \r
+ Name + Coordinates of origin, X axis direction, Y axis direction.</p>\r
\r
<p class="whs2"> </p>\r
\r
-<p class="whs2"><b style="font-weight: bold;">Arguments:</b> \r
- </p>\r
-\r
-<ul>\r
- \r
- <li class=kadov-p><p class="whs2"><b style="font-weight: bold;">1st \r
- Constructor :</b> Name + Coordinates of origin, X axis direction, Y axis \r
- direction</p></li>\r
- \r
- <li class=kadov-p><p class="whs2"><b style="font-weight: bold;">2nd \r
- Constructor :</b> Name + reference object.</p></li>\r
- \r
- <li class=kadov-p><p class="whs2"><b style="font-weight: bold;">3rd \r
- Constructor :</b> Name + 1 point of origin + X axis direction, Y axis \r
- direction.</p></li>\r
-</ul>\r
+<p class="whs3"><img src="pics/neo-localcs1.png" x-maintain-ratio="TRUE" width="312px" height="391px" border="0" class="img_whs4"></p>\r
\r
-<p class="whs2"> </p>\r
+<p class="whs3"> </p>\r
+\r
+<p class="whs5">Secondly, you can simply \r
+ select a point in the object browser or 3D viewer, in this case the coordinates \r
+ of origin are automatically filled in with the coordinates of the selected \r
+ point and X and Y axes direction will be parallel to the X and Y direction \r
+ of the Global CS. </p>\r
+\r
+<p class="whs5"><b style="font-weight: bold;">Arguments: \r
+ </b>Name + reference object.</p>\r
\r
-<p class="whs2">.</p>\r
+<p class="whs5"> </p>\r
+\r
+<p class="whs3"><img src="pics/neo-localcs2.png" x-maintain-ratio="TRUE" width="312px" height="289px" border="0" class="img_whs6"></p>\r
\r
<p class="whs2"> </p>\r
\r
-<p class="whs2"><b style="font-weight: bold;">Dialog Box:</b></p>\r
+<p class="whs2">The last algorithm also presumes that you select \r
+ a point in the object browser or 3D viewer, but in this case you define \r
+ X and Y axes direction yourselves. </p>\r
+\r
+<p class="whs7"><b>Arguments:</b> <span \r
+ style="font-weight: normal;">Name + 1 point of origin + X axis direction, \r
+ Y axis direction.</span></p>\r
\r
<p class="whs2"> </p>\r
\r
-<table x-use-null-cells cellspacing="0" width="63.512%" class="whs3">\r
-<col class="whs4">\r
-<col class="whs5">\r
-<col class="whs6">\r
+<p class="whs3"><img src="pics/neo-localcs3.png" x-maintain-ratio="TRUE" width="312px" height="359px" border="0" class="img_whs8"></p>\r
\r
-<tr valign="top" class="whs7">\r
-<td width="49.962%" class="whs8">\r
-<p class="whs9"><img src="pics/neo-localcs1.png" x-maintain-ratio="TRUE" width="312px" height="391px" border="0" class="img_whs10"></td>\r
-<td width="45.348%" class="whs11">\r
-<p class="whs9"><img src="pics/neo-localcs2.png" x-maintain-ratio="TRUE" width="312px" height="289px" border="0" class="img_whs12"></td>\r
-<td width="4.69%" class="whs13">\r
-<p class="whs9"><img src="pics/neo-localcs3.png" x-maintain-ratio="TRUE" width="312px" height="359px" border="0" class="img_whs14"></td></tr>\r
-</table>\r
+<p class="whs2"> </p>\r
\r
-<p class="whs15"> </p>\r
+<p class="whs2">Press «OK» or «Apply» button to create an LCS \r
+ at the location with the specified coordinates. The new object is shown \r
+ in the Object Browser and in 3D viewer.</p>\r
\r
-<p class="whs16"><span style="font-weight: bold;\r
- margin-left: 80px;\r
- text-indent: -80px;\r
- font-size: 12pt;"><font size=3 style="font-size:12pt;"><B>Example:</B></font></span></p>\r
+<p class="whs9"> </p>\r
\r
-<p class="whs17"> </p>\r
+<p class="whs10">Example:</p>\r
\r
-<p class="whs18"><img src="image145.jpg" width="200px" height="219px" border="0" class="img_whs19"></p>\r
+<p class="whs11"><img src="image145.jpg" width="200px" height="219px" border="0" class="img_whs12"></p>\r
\r
-<p class="whs18"> </p>\r
+<p class="whs11"> </p>\r
\r
<p> </p>\r
\r
\r
<p> </p>\r
\r
-<p># get point's coordinates and check its values</p>\r
+<p># get the coordinates of the point and check its values</p>\r
\r
<p class="whs1">coords = geompy.PointCoordinates(point)</p>\r
\r
\r
<p class="whs1"> </p>\r
\r
-<p class="whs1">Point Coordinates</p>\r
-\r
-<p class="whs1"> </p>\r
-\r
-<p class="whs1"> </p>\r
-\r
-<p class="whs1"><span style="font-family: 'Lucida Console', monospace;">import \r
- geompy</span></p>\r
-\r
-<p class="whs1"># create a point</p>\r
-\r
-<p class="whs1">point = geompy.MakeVertex(15, \r
- 23, 80)</p>\r
-\r
-<p class="whs1"># get point's coordinates \r
- and check its values</p>\r
-\r
-<p class="whs1">coords = geompy.PointCoordinates(point)</p>\r
-\r
-<p class="whs1">if coords[0] != 15 \r
- or coords[1] != 23 or coords[2] != 80 :</p>\r
-\r
-<p class="whs1"> print \r
- "Coordinates of point must be (15, 23, 80), but returned (", \r
- coords[0], ", ", coords[1], ", ", coords[2], ")"</p>\r
-\r
-<p class="whs1">else :</p>\r
-\r
-<p class="whs1"> print \r
- "All values are OK." </p>\r
-\r
-<p class="whs1"> </p>\r
-\r
<h3>Tolerance</h3>\r
\r
<p class="whs1"><span style="font-family: 'Lucida Console', monospace;">import \r
\r
<p class="whs1"> </p>\r
\r
-<p class="whs2"># make compound</p>\r
+<p class="whs2"># make a compound</p>\r
\r
<p class="whs1">compound = geompy.MakeCompound([box1, \r
box2])</p>\r
\r
<p class="whs1"> </p>\r
\r
-<p class="whs2"># glue compound's faces</p>\r
+<p class="whs2"># glue the faces of the \r
+ compound</p>\r
\r
<p class="whs1">tolerance = 1e-5</p>\r
\r
<!--\r
p.whs1 { font-size:12pt; }\r
img_whs2 { border:none; width:312px; height:350px; float:none; border-style:none; }\r
-img_whs3 { border:none; float:none; width:250px; height:350px; border-style:none; }\r
-img_whs4 { border:none; float:none; width:248px; height:349px; border-style:none; }\r
-img_whs5 { border:none; width:227px; height:176px; float:none; border-style:none; }\r
-img_whs6 { border:none; float:none; width:199px; height:177px; border-style:none; }\r
-img_whs7 { border:none; width:174px; height:233px; float:none; border-style:none; }\r
-img_whs8 { border:none; float:none; width:174px; height:233px; border-style:none; }\r
-p.whs9 { font-size:12pt; margin-left:40px; }\r
-p.whs10 { list-style:disc; margin-left:0in; margin-right:0in; margin-top:0px; margin-bottom:0px; }\r
+img_whs3 { border:none; width:174px; height:233px; float:none; border-style:none; }\r
+img_whs4 { border:none; float:none; width:174px; height:233px; border-style:none; }\r
+p.whs5 { font-size:12pt; margin-left:40px; }\r
+img_whs6 { border:none; width:227px; height:176px; float:none; border-style:none; }\r
+img_whs7 { border:none; float:none; width:199px; height:177px; border-style:none; }\r
+img_whs8 { border:none; width:312px; height:350px; float:none; border-style:none; }\r
+img_whs9 { border:none; float:none; width:250px; height:350px; border-style:none; }\r
+img_whs10 { border:none; float:none; width:248px; height:349px; border-style:none; }\r
+p.whs11 { list-style:disc; margin-left:0in; margin-right:0in; margin-top:0px; margin-bottom:0px; }\r
-->\r
</style><script type="text/javascript" language="JavaScript">\r
<!--\r
if ((navigator.appName == "Netscape") && (parseInt(navigator.appVersion) == 4))\r
{\r
var strNSS = "<style type='text/css'>";\r
- strNSS += "p.whs10 {margin-left:1pt;margin-right:1pt;margin-top:1pt;margin-bottom:1pt; }";\r
+ strNSS += "p.whs11 {margin-left:1pt;margin-right:1pt;margin-top:1pt;margin-bottom:1pt; }";\r
strNSS +="</style>";\r
document.write(strNSS);\r
}\r
\r
<p class="whs1"> </p>\r
\r
-<p class="whs1">Firstly an <span style="font-weight: bold;"><B>Object</B></span> \r
- can be mirrored through a <span style="font-weight: bold;"><B>Plane</B></span> \r
- of symmetry </p>\r
+<p class="whs1"><span style="font-size: 12pt;"><font size=3 style="font-size:12pt;">Firstly an Object \r
+ can be mirrored through a Point of symmetry</font></span></p>\r
\r
-<p class="whs1"><b style="font-weight: bold;">TUI Command:</b><i> \r
- </i><span style="font-style: italic;"><I>geompy.MakeMirrorByPlane(Shape, \r
- Plane)</I></span>, </p>\r
+<p class="whs1"><b style="font-weight: bold;">TUI Command: \r
+ </b><span style="font-style: italic;"><I>geompy.MakeMirrorByPoint(Object, \r
+ Point)</I></span> </p>\r
\r
-<p class="whs1"><b style="font-weight: bold;">Arguments:</b> \r
- <b><span style="font-weight: normal;">Name + </span></b>1 shape + 1 plane</p>\r
+<p class="whs1"><b style="font-weight: bold;">Arguments: <span \r
+ style="font-weight: normal;">Name + </span></b>1 shape + 1 vertex.</p>\r
+\r
+<p class="whs1"> </p>\r
+\r
+<p class="whs1"><img src="pics/transformation7.png" x-maintain-ratio="TRUE" width="312px" height="350px" border="0" class="img_whs2"> </p>\r
\r
<p class="whs1"> </p>\r
\r
-<p class="whs1"><img src="pics/transformation9.png" x-maintain-ratio="TRUE" width="312px" height="350px" border="0" class="img_whs2"> <img src="pics/mirror_planesn1.png" x-maintain-ratio="TRUE" width="250px" height="350px" border="0" class="img_whs3"> <img src="pics/mirror_planesn2.png" x-maintain-ratio="TRUE" width="248px" height="349px" border="0" class="img_whs4"></p>\r
+<p class="whs1"><img src="pics/mirror_pointsn1.png" x-maintain-ratio="TRUE" width="174px" height="233px" border="0" class="img_whs3"> <img src="pics/mirror_pointsn2.png" x-maintain-ratio="TRUE" width="174px" height="233px" border="0" class="img_whs4"></p>\r
+\r
+<p class="whs5"> </p>\r
\r
<p class="whs1"> </p>\r
\r
\r
<p class="whs1"> </p>\r
\r
-<p class="whs1"><img src="pics/transformation8.png" x-maintain-ratio="TRUE" width="312px" height="350px" border="0" class="img_whs2"> <img src="pics/mirror_axissn1.png" x-maintain-ratio="TRUE" width="227px" height="176px" border="0" class="img_whs5"> <img src="pics/mirror_axissn2.png" x-maintain-ratio="TRUE" width="199px" height="177px" border="0" class="img_whs6"></p>\r
+<p class="whs1"><img src="pics/transformation8.png" x-maintain-ratio="TRUE" width="312px" height="350px" border="0" class="img_whs2"> </p>\r
+\r
+<p class="whs1"> </p>\r
+\r
+<p class="whs1"><img src="pics/mirror_axissn1.png" x-maintain-ratio="TRUE" width="227px" height="176px" border="0" class="img_whs6"> <img src="pics/mirror_axissn2.png" x-maintain-ratio="TRUE" width="199px" height="177px" border="0" class="img_whs7"></p>\r
\r
<p class="whs1"> </p>\r
\r
<p class="whs1">Finally an <span style="font-weight: bold;"><B>Object</B></span> \r
- can be mirrored through a <span style="font-weight: bold;"><B>Point</B></span> \r
- of symmetry</p>\r
+ can be mirrored through a <span style="font-weight: bold;"><B>Plane</B></span> \r
+ of symmetry </p>\r
\r
-<p class="whs1"><b style="font-weight: bold;">TUI Command: \r
- </b><span style="font-style: italic;"><I>geompy.MakeMirrorByPoint(Object, \r
- Point)</I></span> </p>\r
+<p class="whs1"><b style="font-weight: bold;">TUI Command:</b><i> \r
+ </i><span style="font-style: italic;"><I>geompy.MakeMirrorByPlane(Shape, \r
+ Plane)</I></span>, </p>\r
\r
-<p class="whs1"><b style="font-weight: bold;">Arguments: <span \r
- style="font-weight: normal;">Name + </span></b>1 shape + 1 vertex.</p>\r
+<p class="whs1"><b style="font-weight: bold;">Arguments:</b> \r
+ <b><span style="font-weight: normal;">Name + </span></b>1 shape + 1 plane</p>\r
+\r
+<p class="whs1"> </p>\r
+\r
+<p class="whs1"><img src="pics/transformation9.png" x-maintain-ratio="TRUE" width="312px" height="350px" border="0" class="img_whs8"> </p>\r
\r
<p class="whs1"> </p>\r
\r
-<p class="whs1"><img src="pics/transformation7.png" x-maintain-ratio="TRUE" width="312px" height="350px" border="0" class="img_whs2"> <img src="pics/mirror_pointsn1.png" x-maintain-ratio="TRUE" width="174px" height="233px" border="0" class="img_whs7"> <img src="pics/mirror_pointsn2.png" x-maintain-ratio="TRUE" width="174px" height="233px" border="0" class="img_whs8"></p>\r
+<p class="whs1"><img src="pics/mirror_planesn1.png" x-maintain-ratio="TRUE" width="250px" height="350px" border="0" class="img_whs9"> <img src="pics/mirror_planesn2.png" x-maintain-ratio="TRUE" width="248px" height="349px" border="0" class="img_whs10"></p>\r
\r
-<p class="whs9"> </p>\r
+<p class="whs5"> </p>\r
\r
-<p class="whs10"> <span \r
+<p class="whs11"> <span \r
style="font-size: 12pt;"><font size=3 style="font-size:12pt;">Our </font></span><span \r
style="font-weight: bold;"><B>TUI Scripts</B></span><span style="font-size: 12pt;"><font size=3 style="font-size:12pt;"> \r
provide you with useful examples of the use of <a href="transformation_operations.htm#bookmark5">Transformation \r
<!--\r
img_whs1 { border:none; width:25px; height:22px; border-style:none; }\r
p.whs2 { font-size:12pt; }\r
-p.whs3 { font-size:12pt; margin-left:40px; }\r
-img_whs4 { border:none; width:312px; height:350px; float:none; border-style:none; }\r
+img_whs3 { border:none; width:312px; height:350px; float:none; border-style:none; }\r
+img_whs4 { border:none; width:431px; height:233px; border-style:none; }\r
img_whs5 { border:none; width:312px; height:385px; float:none; border-style:none; }\r
-p.whs6 { font-size:12pt; margin-left:40px; text-indent:-40px; }\r
-p.whs7 { font-size:12pt; text-indent:-40px; margin-left:80px; }\r
-img_whs8 { border:none; width:200px; height:209px; border-style:none; }\r
-p.whs9 { list-style:disc; margin-left:0in; margin-right:0in; margin-top:0px; margin-bottom:0px; }\r
+img_whs6 { border:none; width:326px; height:377px; border-style:none; }\r
+p.whs7 { list-style:disc; margin-left:0in; margin-right:0in; margin-top:0px; margin-bottom:0px; }\r
-->\r
</style><script type="text/javascript" language="JavaScript">\r
<!--\r
if ((navigator.appName == "Netscape") && (parseInt(navigator.appVersion) == 4))\r
{\r
var strNSS = "<style type='text/css'>";\r
- strNSS += "p.whs6 {text-indent:1pt; }";\r
- strNSS += "p.whs7 {text-indent:1pt; }";\r
- strNSS += "p.whs9 {margin-left:1pt;margin-right:1pt;margin-top:1pt;margin-bottom:1pt; }";\r
+ strNSS += "p.whs7 {margin-left:1pt;margin-right:1pt;margin-top:1pt;margin-bottom:1pt; }";\r
strNSS +="</style>";\r
document.write(strNSS);\r
}\r
<p class="whs2"><b style="font-weight: normal;">T</b>o<span \r
style="font-weight: bold;"><B> Modify the Location</B></span> in the Main Menu \r
select <span style="font-weight: bold;"><B>Operations - > Transformation \r
- - > Modify the Location</B></span></p>\r
+ - > Modify the Location.</B></span></p>\r
\r
<p class="whs2"> </p>\r
\r
<p class="whs2">This operation modifies the <span style="font-weight: bold;"><B>Location</B></span> \r
- of an <span style="font-weight: bold;"><B>Object.</B></span> </p>\r
+ of an <span style="font-weight: bold;"><B>Object </B></span></p>\r
\r
-<p class="whs2">The <b>Result <span style="font-weight: bold;"><B>will \r
- be a</B></span> </b> GEOM_Object.</p>\r
+<p class="whs2">The first algorithm places the object so that \r
+ its center coincides with the center of an End Local Coordinate System.</p>\r
+\r
+<p class="whs2"><span style="font-weight: bold;"><B>Create a copy \r
+ </B></span>checkbox allows to keep the initial object, otherwise it will be \r
+ removed.</p>\r
+\r
+<p class="whs2"><span style="font-size: 12pt;"><font size=3 style="font-size:12pt;"><span><b style="font-weight: bold;">A</span>rguments:</b> \r
+ Name + 1 GEOM_Object + End Coordinate System.</font></span></p>\r
+\r
+<p> </p>\r
+\r
+<p class="whs2"><img src="pics/transformation5.png" x-maintain-ratio="TRUE" width="312px" height="350px" border="0" class="img_whs3"> </p>\r
\r
<p class="whs2"> </p>\r
\r
-<p class="whs2"><b style="font-weight: bold;">TUI Command:</b><i> \r
- geompy.MakePosition(theObject, theStartLCS, theEndLCS), </i>where theObject \r
- is a shape, location of which is modified, theStartLCS is a location to \r
- move the shape from, theEndLCS is a location to move the shape to.</p>\r
+<p class="whs2">In the picture the initial cube with the global \r
+ coordinate system is to \r
+ the right and the modified cube with the Local Coordinate System in the \r
+ center of it is to the left . </p>\r
\r
-<p class="whs2"><b style="font-weight: bold;">Arguments:</b> \r
- Name + 1 GEOM_Object + [Starting Coordinate System] + End Coordinate System.</p>\r
+<p class="whs2"> </p>\r
+\r
+<p class="whs2"><img src="image30.gif" width="431px" height="233px" border="0" class="img_whs4"></p>\r
+\r
+<p class="whs2"> </p>\r
+\r
+<p class="whs2">The second algorithm modifies \r
+ the location of an object using Start and End LSC, however, it does not \r
+ place the object in the center of any of the two systems. </p>\r
\r
<p class="whs2"><span style="font-weight: bold;"><B>Create a copy \r
</B></span>checkbox allows to keep the initial object, otherwise it will be \r
removed.</p>\r
\r
+<p class="whs2"><span style="font-size: 12pt;"><font size=3 style="font-size:12pt;"><b style="font-weight: bold;">Arguments:</b> \r
+ Name + 1 GEOM_Object + Start Coordinate System + End Coordinate System.</font></span></p>\r
+\r
+<p class="whs2"> </p>\r
+\r
+<p class="whs2"><img src="pics/transformation6.png" x-maintain-ratio="TRUE" width="312px" height="385px" border="0" class="img_whs5"></p>\r
+\r
<p class="whs2"> </p>\r
\r
-<p class="whs3"><img src="pics/transformation5.png" x-maintain-ratio="TRUE" width="312px" height="350px" border="0" class="img_whs4"> <img src="pics/transformation6.png" x-maintain-ratio="TRUE" width="312px" height="385px" border="0" class="img_whs5"></p>\r
+<p class="whs2">In this picture the initial cube with the global \r
+ coordinate system is above, the modified cube is below and the End Local \r
+ Coordinate System is the big one. </p>\r
\r
-<p class="whs6"> </p>\r
+<p class="whs2"> </p>\r
\r
-<p class="whs6"><b style="font-weight: bold;">Example:</b></p>\r
+<p class="whs2"><img src="image31.gif" width="326px" height="377px" border="0" class="img_whs6"></p>\r
\r
-<p class="whs6"> </p>\r
+<p class="whs2"> </p>\r
\r
-<p class="whs7"><img src="image197.jpg" width="200px" height="209px" border="0" class="img_whs8"></p>\r
+<p class="whs2">The <span style="font-weight: bold;"><B>R</B></span><b><span \r
+ style="font-weight: bold;"><B>esult</B></span><span style="font-weight: normal;"> \r
+ of this operation will be a</span> </b> GEOM_Object.</p>\r
\r
-<p class="whs6"> </p>\r
+<p class="whs2"> </p>\r
+\r
+<p class="whs2"><b style="font-weight: bold;">TUI Command:</b><i> \r
+ geompy.MakePosition(theObject, theStartLCS, theEndLCS), </i>where theObject \r
+ is a shape, location of which is modified, theStartLCS is a location to \r
+ move the shape from, theEndLCS is a location to move the shape to.</p>\r
+\r
+<p class="whs2"> </p>\r
\r
-<p class="whs9"> <span \r
- style="font-size: 12pt;"><font size=3 style="font-size:12pt;">Our </font></span><span \r
+<p class="whs7"><span style="font-size: 12pt;"><font size=3 style="font-size:12pt;">Our </font></span><span \r
style="font-weight: bold;"><B>TUI Scripts</B></span><span style="font-size: 12pt;"><font size=3 style="font-size:12pt;"> \r
provide you with useful examples of the use of <a href="transformation_operations.htm#bookmark2">Transformation \r
Operations</a>. </font></span></p>\r
p.whs3 { font-size:12pt; font-weight:bold; }\r
p.whs4 { font-size:12pt; font-weight:normal; }\r
img_whs5 { border:none; width:312px; height:346px; float:none; border-style:none; }\r
-img_whs6 { border:none; float:none; width:315px; height:259px; border-style:none; }\r
-img_whs7 { border:none; float:none; width:301px; height:258px; border-style:none; }\r
+img_whs6 { border:none; float:none; width:315px; height:260px; border-style:none; }\r
+img_whs7 { border:none; float:none; width:301px; height:260px; border-style:none; }\r
img_whs8 { border:none; width:312px; height:450px; float:none; border-style:none; }\r
-img_whs9 { border:none; float:none; width:341px; height:446px; border-style:none; }\r
-img_whs10 { border:none; float:none; width:369px; height:447px; border-style:none; }\r
+img_whs9 { border:none; float:none; width:310px; height:405px; border-style:none; }\r
+img_whs10 { border:none; float:none; width:337px; height:405px; border-style:none; }\r
p.whs11 { font-size:12pt; margin-left:40px; }\r
-->\r
</style><script type="text/javascript" language="JavaScript" title="WebHelpInlineScript">\r
will be 2*PI/NbTimes</p>\r
\r
<p class="whs3"><b style="font-weight: bold;">TUI \r
- Command: </b><span style="font-style: italic; font-weight: normal;"><I>geompy.MakeMultiRotation1D(Shape, \r
+ Command: </b><span style="font-style: italic; font-weight: normal;"><I>geompy.MakeMultiRotate1D(Shape, \r
Axis, NbTimes)</I></span></p>\r
\r
<p class="whs3"><b style="font-weight: bold;">Arguments: \r
\r
<p class="whs3"> </p>\r
\r
-<p class="whs4">There is a <span style="font-weight: bold;"><B>TUI \r
- Command</B></span> <span style="font-style: italic;"><I>geompy.MakeMultiRotation1D(Shape, \r
- Dir, Point, NbTimes)</I></span><span style="font-size: 12pt; font-weight: normal;"><font size=3 style="font-size:12pt;"> \r
- which works in the same way, but the Axis is defined by \r
- direction and point. </font></span></p>\r
+<p class="whs4">There is a <span style="font-weight: bold;"><B>TUI</B></span>-only<span \r
+ style="font-weight: bold;"> <B></B></span>command <span style="font-style: italic;"><I>geompy.MakeMultiRotation1D(Shape, \r
+ Dir, Point, NbTimes)</I></span> which works in the same way, but the Axis \r
+ is defined by \r
+ direction and point. </p>\r
\r
<p class="whs3"> </p>\r
\r
-<p class="whs2"><img src="pics/neo-mrot1.png" x-maintain-ratio="TRUE" width="312px" height="346px" border="0" class="img_whs5"> <img src="pics/multi_rotation1d1.png" x-maintain-ratio="TRUE" width="315px" height="259px" border="0" class="img_whs6"> <img src="pics/multi_rotation1d2.png" x-maintain-ratio="TRUE" width="301px" height="258px" border="0" class="img_whs7"></p>\r
+<p class="whs2"><img src="pics/neo-mrot1.png" x-maintain-ratio="TRUE" width="312px" height="346px" border="0" class="img_whs5"> </p>\r
+\r
+<p class="whs2"><img src="pics/multi_rotation1d1.png" x-maintain-ratio="TRUE" width="315px" height="260px" border="0" class="img_whs6"> <img src="pics/multi_rotation1d2.png" x-maintain-ratio="TRUE" width="301px" height="260px" border="0" class="img_whs7"></p>\r
\r
<p class="whs2"> </p>\r
\r
</B></span>checkbox allows to set the direction of rotation.</p>\r
\r
<p class="whs2"><b style="font-weight: bold;">T<span style="font-weight: bold;"><B>UI \r
- Command: </B></span><span style="font-weight: normal;">g</span></b><span style="font-style: italic;"><I>eompy.MakeMultiRotation2D(Shape, \r
+ Command: </B></span><span style="font-weight: normal;">g</span></b><span style="font-style: italic;"><I>eompy.MakeMultiRotate2D(Shape, \r
Axis, Angle, NbTimes1, Step, NbTimes2)</I></span></p>\r
\r
<p class="whs2"><span style="font-style: italic;"><I><b style="font-weight: bold;">A</I></span><span \r
\r
<p class="whs2"> </p>\r
\r
-<p class="whs2">There is a <span style="font-weight: bold;"><B>TUI \r
- Command</B></span> <span style="font-style: italic;"><I>geompy.MakeMultiRotation2D(Shape, \r
- Dir, Point, Angle, nbtimes1, Step, nbtimes2</I></span><span style="font-style: italic;"><I>)</I></span> \r
- which works in the same way, but the Axis is defined by \r
+<p class="whs2">There is a <span style="font-weight: bold;"><B>TUI</B></span>-only \r
+ command <span style="font-style: italic;"><I>geompy.MakeMultiRotation2D(Shape, \r
+ Dir, Point, Angle, nbtimes1, Step, nbtimes2)</I></span> which works in the \r
+ same way, but the Axis is defined by \r
direction and point. </p>\r
\r
<p class="whs2"> </p>\r
\r
<p class="whs2"> </p>\r
\r
-<p class="whs2"> <img src="pics/multi_rotation2d1.png" x-maintain-ratio="TRUE" width="341px" height="446px" border="0" class="img_whs9"> <img src="pics/multi_rotation2d2.png" x-maintain-ratio="TRUE" width="369px" height="447px" border="0" class="img_whs10"></p>\r
+<p class="whs2"> <img src="pics/multi_rotation2d1.png" x-maintain-ratio="TRUE" width="310px" height="405px" border="0" class="img_whs9"> <img src="pics/multi_rotation2d2.png" x-maintain-ratio="TRUE" width="337px" height="405px" border="0" class="img_whs10"></p>\r
\r
<p class="whs11"> </p>\r
\r
p.whs3 { font-size:12pt; font-weight:bold; }\r
img_whs4 { border:none; width:312px; height:381px; float:none; border-style:none; }\r
img_whs5 { border:none; width:301px; height:306px; float:none; border-style:none; }\r
-ol.whs6 { list-style:disc; }\r
-ul.whs7 { list-style:circle; }\r
-p.whs8 { font-size:12pt; font-weight:normal; }\r
-img_whs9 { border:none; width:312px; height:494px; float:none; border-style:none; }\r
-img_whs10 { border:none; width:277px; height:304px; float:none; border-style:none; }\r
-p.whs11 { font-weight:bold; }\r
-p.whs12 { font-size:12pt; text-indent:-40px; font-weight:bold; margin-left:80px; }\r
+img_whs6 { border:none; width:312px; height:494px; float:none; border-style:none; }\r
+img_whs7 { border:none; width:277px; height:304px; float:none; border-style:none; }\r
+p.whs8 { font-weight:bold; }\r
+p.whs9 { font-size:12pt; text-indent:-40px; font-weight:bold; margin-left:80px; }\r
-->\r
</style><script type="text/javascript" language="JavaScript">\r
<!--\r
if ((navigator.appName == "Netscape") && (parseInt(navigator.appVersion) == 4))\r
{\r
var strNSS = "<style type='text/css'>";\r
- strNSS += "p.whs12 {text-indent:1pt; }";\r
+ strNSS += "p.whs9 {text-indent:1pt; }";\r
strNSS +="</style>";\r
document.write(strNSS);\r
}\r
<p class="whs2"><b style="font-weight: normal;">T</b>o produce \r
a <span style="font-weight: bold;"><B>Multi Translation</B></span> operation \r
in the Main Menu select <span style="font-weight: bold;"><B>Operations - \r
- > Blocks - > Multi Translation</B></span></p>\r
+ > Blocks - > Multi Transformation</B></span></p>\r
\r
<p class="whs2"> </p>\r
\r
Command:</b><i> </i></B></span><span style="font-size: 12pt; font-style: italic;"><font size=3 style="font-size:12pt;"><I>geompy. \r
MakeMultiTransformation2D(Block, DirFaceID1U, DirFaceID2U, NbTimesU, DirFaceID1V, \r
DirFaceID2V, NbTimesV)</I></font></span><span style="font-size: 12pt;"><font size=3 style="font-size:12pt;">, where Block \r
- is a block to be transformed, DirFaceID1U and DirFace1V are ID\92s of the \r
+ is a block to be transformed, DirFaceID1U and DirFace1V are IDs of the \r
faces, which define directions of the first transformation, DirFaceID1V \r
and DirFaceID2V are ID\92s of the faces which define directions of the second \r
transformation, NbTimesU and NbTimesV are numbers of transformations.</font></span></p>\r
\r
<p class="whs2"><b style="font-weight: bold;">Arguments: </b><span \r
style="font-size: 12pt; font-weight: normal;"><font size=3 style="font-size:12pt;">Name \r
- + 1 hexahedral solid + </font></span></p>\r
-\r
-<ol type="disc" class="whs6">\r
- \r
- <ul type="circle" class="whs7">\r
- \r
- <li class=kadov-p><p class="whs8">2 \r
- faces and 1 integer, or</p></li>\r
- \r
- <li class=kadov-p><p class="whs8">3 \r
- or 4 faces and 2 integers </p></li>\r
- </ul>\r
-</ol>\r
+ + 1 hexahedral solid + 2, 3 or 4 faces + 2 integers (number of blocks).</font></span></p>\r
\r
<p class="whs2"> </p>\r
\r
-<p class="whs2"><img src="pics/mtransf2.png" x-maintain-ratio="TRUE" width="312px" height="494px" border="0" class="img_whs9"> <img src="pics/multi_transformationsn2d.png" x-maintain-ratio="TRUE" width="277px" height="304px" border="0" class="img_whs10"></p>\r
+<p class="whs2"><img src="pics/mtransf2.png" x-maintain-ratio="TRUE" width="312px" height="494px" border="0" class="img_whs6"> <img src="pics/multi_transformationsn2d.png" x-maintain-ratio="TRUE" width="277px" height="304px" border="0" class="img_whs7"></p>\r
\r
<p class="whs2"> </p>\r
\r
-<p class="whs11"> <span \r
+<p class="whs8"> <span \r
style="font-size: 12pt; font-weight: normal;"><font size=3 style="font-size:12pt;">Our</font></span><span \r
style="font-size: 12pt;"><font size=3 style="font-size:12pt;"> TUI Scripts</font></span><span style="font-size: 12pt; font-weight: normal;"><font size=3 style="font-size:12pt;"> \r
provide you with useful examples of the use of</font></span><span style="font-size: 12pt;"> \r
<font size=3 style="font-size:12pt;"><a href="blocks_operations.htm#bookmark4">Blocks Operations</a>. </font></span></p>\r
\r
-<p class="whs11"> </p>\r
+<p class="whs8"> </p>\r
\r
<p> </p>\r
\r
-<p class="whs12"> </p>\r
+<p class="whs9"> </p>\r
\r
<script type="text/javascript" language="javascript1.2">\r
<!--\r
</b><span style="font-style: italic;"><I>geompy.MakeMultiTranslation1D(Shape, \r
Dir, Step, NbTimes)</I></span></p>\r
\r
-<p class="whs2"><b style="font-weight: bold;">A<span style="font-weight: bold;"><B>rguments: \r
+<p class="whs2"><b>A<span style="font-weight: bold;"><B>rguments: \r
</B></span></b>Name + 1 shape + 1 vector (for direction) + 1 step value + \r
1 value (repetition).</p>\r
\r
-<p class="whs2"> <img src="pics/mtrans1.png" x-maintain-ratio="TRUE" width="312px" height="398px" border="0" class="img_whs3"> <img src="pics/multi_translation_initialsn.png" x-maintain-ratio="TRUE" height="203px" width="282px" border="0" class="img_whs4"> <img src="pics/multi_translation1dsn.png" x-maintain-ratio="TRUE" width="291px" height="202px" border="0" class="img_whs5"></p>\r
+<p class="whs2"> </p>\r
+\r
+<p class="whs2"> <img src="pics/mtrans1.png" x-maintain-ratio="TRUE" width="312px" height="398px" border="0" class="img_whs3"> </p>\r
+\r
+<p class="whs2"><img src="pics/multi_translation_initialsn.png" x-maintain-ratio="TRUE" height="203px" width="282px" border="0" class="img_whs4"> <img src="pics/multi_translation1dsn.png" x-maintain-ratio="TRUE" width="291px" height="202px" border="0" class="img_whs5"></p>\r
\r
<p class="whs2"> </p>\r
\r
and a <span style="font-weight: bold;"><B>Number of Times</B></span> the shape \r
must be moved along each axis.</p>\r
\r
-<p class="whs2"><b style="font-weight: bold;">TUI Command: \r
- <span style="font-style: italic; font-weight: normal;"><I>g</I></span></b><span \r
- style="font-style: italic;"><I>eompy.MakeMultiTranslation2D(Shape, Dir1, \r
- Step1, NbTimes1, Dir2, Step2, NbTimes2)</I></span>, where Shape is a shape \r
- to be translated, Dir1 is the first direction of translation, Step1 of \r
- the first translation, NbTimes1 is a number of translations to be done \r
- along, Dir2 is the second direction of translation, Step2 of the second \r
- translation, NbTimes2 is a number of translations to be done along Dir2.</p>\r
+<p class="whs2"> </p>\r
\r
-<p class="whs2"><b style="font-weight: bold;">A<span style="font-weight: bold;"><B>rguments: \r
+<p class="whs2"><b>TUI Command: <span style="font-style: italic; font-weight: normal;"><I>g</I></span></b><span \r
+ style="font-style: italic;"><I>eompy.MakeMultiTranslation2D(Shape, Dir1, \r
+ Step1, NbTimes1, Dir2, Step2, NbTimes2)</I></span>, where <span style="font-style: italic;"><I>Shape</I></span> \r
+ is a shape to be translated, <span style="font-style: italic;"><I>Dir1</I></span> \r
+ is the first direction of translation, <span style="font-style: italic;"><I>Step1</I></span> \r
+ of the first translation, <span style="font-style: italic;"><I>NbTimes1</I></span> \r
+ is a number of translations to be done along <span style="font-style: italic;"><I>Dir1</I></span>, \r
+ <span style="font-style: italic;"><I>Dir2</I></span> is the second direction \r
+ of translation, <span style="font-style: italic;"><I>Step2</I></span> of the \r
+ second translation, <span style="font-style: italic;"><I>NbTimes2</I></span> \r
+ is a number of translations to be done along <span style="font-style: italic;"><I>Dir2</I></span>.</p>\r
+\r
+<p class="whs2"><b>A<span style="font-weight: bold;"><B>rguments: \r
</B></span></b>Name + 1 shape + 2 vectors defining the direction + 2 step \r
values + 2 values (repetitions).</p>\r
\r
-<p class="whs2"><img src="pics/mtrans2.png" x-maintain-ratio="TRUE" width="312px" height="509px" border="0" class="img_whs6"> <img src="pics/multi_translation_initialsn.png" x-maintain-ratio="TRUE" width="292px" height="209px" border="0" class="img_whs7"> <img src="pics/multi_translation2dsn.png" x-maintain-ratio="TRUE" width="288px" height="209px" border="0" class="img_whs8"></p>\r
+<p class="whs2"> </p>\r
+\r
+<p class="whs2"><img src="pics/mtrans2.png" x-maintain-ratio="TRUE" width="312px" height="509px" border="0" class="img_whs6"> </p>\r
+\r
+<p class="whs2"><img src="pics/multi_translation_initialsn.png" x-maintain-ratio="TRUE" width="292px" height="209px" border="0" class="img_whs7"> <img src="pics/multi_translation2dsn.png" x-maintain-ratio="TRUE" width="288px" height="209px" border="0" class="img_whs8"></p>\r
\r
<p class="whs9"> </p>\r
\r
\r
<p class="whs5"> </p>\r
\r
-<p class="whs5"><b style="font-weight: bold;">Result :</b> \r
- GEOM_Object (face).</p>\r
+<p class="whs5"><b style="font-weight: bold;"><span style="font-size: 12pt; font-weight: normal;"><font size=3 style="font-size:12pt;">T</b><b>he</font></span><span \r
+ style="font-size: 12pt;"><font size=3 style="font-size:12pt;"> Result </font></span><span style="font-size: 12pt; font-weight: normal;"><font size=3 style="font-size:12pt;">of \r
+ the operation will be a</font></span></b><span style="font-size: 12pt;"><font size=3 style="font-size:12pt;"><b> GEOM_Object</b></font></span><span \r
+ style="font-size: 12pt;"><font size=3 style="font-size:12pt;"> (face).</font></span></p>\r
\r
<p class="whs5"> </p>\r
\r
\r
<ul type="disc" class="whs3">\r
\r
- <li class=kadov-p><p class="whs6"><b style="font-weight: normal;">geompy.MakeQuadFaceVertices(V1, \r
+ <li class=kadov-p><p class="whs6"><b style="font-weight: normal;">geompy.MakeQuad4Vertices(V1, \r
V2, V3, V4), <span style="font-style: normal;">where V1, V2, V3, V4 are \r
four vertices from which a face is constructed. Edges are created automatically.</span></b></p></li>\r
\r
- <li class=kadov-p><p class="whs5"><span style="font-style: italic;"><I>geompy.MakeQuadFaceEdges(E1, \r
+ <li class=kadov-p><p class="whs5"><span style="font-style: italic;"><I>geompy.MakeQuad2Edges(E1, \r
E2)</I></span>, where E1, E2 are edges from which the face is constructed, \r
two other edges are created automatically.</p></li>\r
\r
<li class=kadov-p><p class="whs5"><b style="font-weight: normal;"><span \r
- style="font-style: italic;"><I>g</b>eompy.MakeQuadFace(E1, E2, E3, E4)</I></span>, \r
+ style="font-style: italic;"><I>g</b>eompy.MakeQuad(E1, E2, E3, E4)</I></span>, \r
where E1, E2, E3, E4 are four edges from which the face is constructed.</p></li>\r
</ul>\r
\r
\r
<p class="whs5"> </p>\r
\r
-<p class="whs5"><b style="font-weight: bold;">Result :</b> \r
- GEOM_Object.</p>\r
+<p class="whs5"><b><span style="font-weight: normal;">The</span> \r
+ Result<span style="font-weight: normal;"> of the operation will be a</span></b><b> \r
+ GEOM_Object</b> (solid).</p>\r
\r
-<p class="whs5"> </p>\r
+<p> </p>\r
\r
<p class="whs5"><b style="font-weight: bold;">TUI Command:</b></p>\r
\r
<ul type="disc" class="whs3">\r
\r
- <li class=kadov-p><p class="whs5"><span style="font-style: italic;"><I>geompy.MakeHexaSolid(F1, \r
+ <li class=kadov-p><p class="whs5"><span style="font-style: italic;"><I>geompy.MakeHexa2Faces(F1, \r
+ F2)</I></span><span style="font-style: italic;"><I>, where F1 and F2 are faces \r
+ from which the hexahedron is constructed, other four faces are created \r
+ automatically.</I></span></p></li>\r
+ \r
+ <li class=kadov-p><p class="whs5"><span style="font-style: italic;"><I>geompy.MakeHexa(F1, \r
F2, F3, F4, F5, F6)</I></span>, where F1 \96 F6 are six faces from which the \r
hexahedron is constructed.</p></li>\r
- \r
- <li class=kadov-p><p class="whs5"><span style="font-style: italic;"><I>geompy.MakeHexaSolidTwoFaces(F1, \r
- F2)</I></span>, where F1 and F2 are faces from which the hexahedron is constructed, \r
- other four faces are created automatically.</p></li>\r
</ul>\r
\r
<p class="whs5"> </p>\r
img_whs1 { width:20px; height:20px; border-style:none; }\r
p.whs2 { font-size:12pt; }\r
p.whs3 { font-size:12pt; font-weight:normal; }\r
-p.whs4 { font-size:12pt; font-weight:bold; }\r
-img_whs5 { border:none; width:312px; height:483px; float:none; border-style:none; }\r
-img_whs6 { border:none; width:448px; height:302px; float:none; border-style:none; }\r
-p.whs7 { font-size:12pt; margin-left:40px; }\r
-img_whs8 { border:none; float:none; width:297px; height:245px; border-style:none; }\r
-img_whs9 { border:none; float:none; width:273px; height:244px; border-style:none; }\r
+p.whs4 { font-weight:bold; font-size:14pt; }\r
+p.whs5 { font-size:12pt; font-weight:bold; }\r
+img_whs6 { border:none; width:312px; height:483px; float:none; border-style:none; }\r
+img_whs7 { border:none; width:448px; height:302px; float:none; border-style:none; }\r
+p.whs8 { font-size:12pt; margin-left:40px; }\r
+img_whs9 { border:none; float:none; width:297px; height:245px; border-style:none; }\r
+img_whs10 { border:none; float:none; width:273px; height:245px; border-style:none; }\r
-->\r
</style><script type="text/javascript" language="JavaScript" title="WebHelpInlineScript">\r
<!--\r
<p class="whs4"><b><span style="font-weight: bold;"><B>Intersection \r
of two shapes.</B></span></b></p>\r
\r
-<p class="whs4"> </p>\r
+<p class="whs5"> </p>\r
\r
<p class="whs2"><b style="font-weight: bold;">TUI Command:</b><i> \r
</i><span style="font-style: italic;"><I>geompy.MakePartition(ListOfShapes, \r
RemoveWebs is True.</p>\r
\r
<p class="whs2"><span style="font-size: 12pt;"><font size=3 style="font-size:12pt;"><b style="font-weight: bold;">Arguments:</b> \r
- </font></span><span style="font-size: 12pt;"><font size=3 style="font-size:12pt;">Name + 2 shapes (first shape will \r
- be intersected by the second shape) + reconstruction limit.</font></span></p>\r
+ </font></span><span style="font-size: 12pt;"><font size=3 style="font-size:12pt;">Name + 2 shapes (the first shape \r
+ will be intersected by the second shape) + reconstruction limit.</font></span></p>\r
\r
<p class="whs2"> </p>\r
\r
-<p class="whs2"><img src="pics/partition1.png" x-maintain-ratio="TRUE" width="312px" height="483px" border="0" class="img_whs5"></p>\r
+<p class="whs2"><img src="pics/partition1.png" x-maintain-ratio="TRUE" width="312px" height="483px" border="0" class="img_whs6"></p>\r
\r
<p class="whs2"> </p>\r
\r
-<p class="whs2"><img src="pics/neo-materials.png" x-maintain-ratio="TRUE" width="448px" height="302px" border="0" class="img_whs6"></p>\r
+<p class="whs2"><img src="pics/neo-materials.png" x-maintain-ratio="TRUE" width="448px" height="302px" border="0" class="img_whs7"></p>\r
\r
<p class="whs2"> </p>\r
\r
<p class="whs2"> </p>\r
\r
-<p class="whs2">Intersection of a <span style="font-weight: bold;"><B>Shape</B></span> \r
- and a <span style="font-weight: bold;"><B>Plane.</B></span></p>\r
+<p class="whs4">Intersection of a Shape \r
+ and a Plane.</p>\r
+\r
+<p class="whs2"> </p>\r
\r
<p class="whs2"><span style="font-weight: bold;"><B>TUI Command</B></span> \r
<span style="font-style: italic;"><I>geompy.MakeHalfPartition(Shape, \r
\r
<p class="whs2"> </p>\r
\r
-<p class="whs2"><img src="pics/partition2.png" x-maintain-ratio="TRUE" width="312px" height="483px" border="0" class="img_whs5"></p>\r
+<p class="whs2"><img src="pics/partition2.png" x-maintain-ratio="TRUE" width="312px" height="483px" border="0" class="img_whs6"></p>\r
\r
-<p class="whs7"> </p>\r
+<p class="whs8"> </p>\r
\r
-<p class="whs7"> </p>\r
+<p class="whs8"> </p>\r
\r
<p class="whs2"><b style="font-weight: bold;">Example:</b></p>\r
\r
<p class="whs2"> </p>\r
\r
-<p class="whs7"><img src="pics/partitionsn1.png" x-maintain-ratio="TRUE" width="297px" height="245px" border="0" class="img_whs8"> <img src="pics/partitionsn2.png" x-maintain-ratio="TRUE" width="273px" height="244px" border="0" class="img_whs9"></p>\r
+<p class="whs8"><img src="pics/partitionsn1.png" x-maintain-ratio="TRUE" width="297px" height="245px" border="0" class="img_whs9"> <img src="pics/partitionsn2.png" x-maintain-ratio="TRUE" width="273px" height="245px" border="0" class="img_whs10"></p>\r
\r
-<p class="whs7"> </p>\r
+<p class="whs8"> </p>\r
\r
<p class="whs2">Our TUI Scripts provide you with useful examples \r
of the use of <a href="basic_operations.htm#bookmark">Basic Operations</a>. \r
p.whs2 { font-size:12pt; }\r
img_whs3 { border:none; width:312px; height:324px; float:none; border-style:none; }\r
p.whs4 { font-size:12pt; margin-left:40px; }\r
-img_whs5 { border:none; width:258px; height:201px; float:none; border-style:none; }\r
-img_whs6 { border:none; float:none; width:266px; height:201px; border-style:none; }\r
+img_whs5 { border:none; width:260px; height:200px; float:none; border-style:none; }\r
+img_whs6 { border:none; float:none; width:260px; height:200px; border-style:none; }\r
-->\r
</style><script type="text/javascript" language="JavaScript" title="WebHelpInlineScript">\r
<!--\r
\r
<p class="whs2"> </p>\r
\r
-<p class="whs4"><img src="pics/pipe_wire_edgesn.png" x-maintain-ratio="TRUE" width="258px" height="201px" border="0" class="img_whs5"> <img src="pics/pipesn.png" x-maintain-ratio="TRUE" width="266px" height="201px" border="0" class="img_whs6"></p>\r
+<p class="whs4"><img src="pics/pipe_wire_edgesn.png" x-maintain-ratio="TRUE" width="260px" height="200px" border="0" class="img_whs5"> <img src="pics/pipesn.png" x-maintain-ratio="TRUE" width="260px" height="200px" border="0" class="img_whs6"></p>\r
\r
<p class="whs4"> </p>\r
\r
Point2, Point3, TrimSize)</I></span> </p>\r
\r
<p class="whs4"><b style="font-weight: bold;">Arguments: \r
- </b><span style="font-weight: normal;">Name + 1 vertex + 3 points (for \r
- the direction) + 1 value (to define the size of the plane).</span></p>\r
+ </b><span style="font-weight: normal;">Name + 3 points + 1 value (to define \r
+ the size of the plane).</span></p>\r
\r
<p class="whs4"> </p>\r
\r
<p class="whs2"><span style="font-weight: bold;"><B><b style="font-weight: bold;">TUI \r
Command:</b> </B></span>geompy.MakePlaneFace(Face, TrimSize) </p>\r
\r
-<p class="whs2"><span><font size=3 style="font-size:12pt;"><b style="font-weight: bold;">Arguments: \r
- </b></font></span>Name + 1 selection + 1 value (to define the size of the plane).</p>\r
+<p class="whs2"><b style="font-weight: bold;">Arguments: </b>Name \r
+ + 1 face + 1 value (to define the size of the plane).</p>\r
+\r
+<p class="whs2"> </p>\r
\r
<span style="font-size: 12pt;"><font size=3 style="font-size:12pt;"><img src="pics/plane3.png" x-maintain-ratio="TRUE" width="312px" height="385px" border="0" class="img_whs5"></font></span> \r
\r
img_whs1 { width:20px; height:20px; border-style:none; }\r
p.whs2 { font-size:12pt; }\r
img_whs3 { border:none; width:312px; height:332px; float:none; border-style:none; }\r
-p.whs4 { font-size:12pt; margin-left:120px; }\r
-img_whs5 { border:none; width:312px; height:473px; float:none; border-style:none; }\r
+img_whs4 { border:none; width:312px; height:473px; float:none; border-style:none; }\r
+p.whs5 { font-size:12pt; margin-left:120px; }\r
p.whs6 { font-size:12pt; margin-left:0px; }\r
p.whs7 { font-size:12pt; font-style:italic; margin-left:0px; }\r
img_whs8 { border:none; width:312px; height:421px; float:none; border-style:none; }\r
<p class="whs2"> </p>\r
\r
<p class="whs2"><b style="font-weight: bold;"><span style="font-weight: normal;">Firstly, \r
- we can define a point by </span><span style="font-weight: normal;">and \r
- setting its X, Y and Z </span><span style="font-weight: bold;"><B>C</B></span></b><b><span \r
+ we can define a point by setting its X, Y and Z </span><span style="font-weight: bold;"><B>C</B></span></b><b><span \r
style="font-weight: bold;"><B>oordinates</B></span><span style="font-weight: normal;">.</span> \r
</b></p>\r
\r
the coordinates of the old one. </p>\r
\r
<p class="whs2"><b style="font-weight: bold;">TUI Command :</b> \r
- <span style="font-style: italic;"><I>g</I></span><span \r
- style="margin-left: 120px;">eompy.MakeVertexWithRef(Reference, X, Y, Z)</span></p>\r
+ <span style="font-style: italic;"><I>geompy.MakeVertexWithRef(Reference, \r
+ X, Y, Z).</I></span></p>\r
\r
-<p class="whs2"><span style="margin-left: 120px;"><b style="font-weight: bold;">A</span>rguments: \r
- </b>Name + 1 reference point + 3 coordinates defining the position of \r
- this point regarding the reference one</p>\r
+<p class="whs2"><b style="font-weight: bold;">Arguments: </b>Name \r
+ + 1 reference point + 3 coordinates defining the position of this point \r
+ regarding the reference one.</p>\r
\r
-<p class="whs4"> </p>\r
+<p class="whs2"> </p>\r
\r
-<p class="whs2"><span style="font-size: 12pt; margin-left: 120px;"><font size=3 style="font-size:12pt;"><img src="pics/neo-point2.png" x-maintain-ratio="TRUE" width="312px" height="473px" border="0" class="img_whs5"></font></span></p>\r
+<p class="whs2"><span style="font-style: italic;"><I><img src="pics/neo-point2.png" x-maintain-ratio="TRUE" width="312px" height="473px" border="0" class="img_whs4"></I></span></p>\r
\r
-<p class="whs4"> </p>\r
+<p class="whs5"> </p>\r
\r
<p class="whs6">Finally, we can define a \r
point by an <span style="font-weight: bold;"><B>Edge</B></span> and a <span style="font-weight: bold;"><B>Parameter</B></span> \r
indicating \r
its position on the Edge. For example, 0.5 means that the point is located \r
- in the middle of the edge. </p>\r
+ in the middle of the edge.<span style="font-style: italic;"> <I></I></span></p>\r
\r
-<p class="whs7"><b style="font-weight: bold; font-style: normal;">TUI \r
+<p class="whs7"><span style="font-style: italic;"><I><b style="font-weight: bold; font-style: normal;">TUI \r
Command :</b> geompy.MakeVertexOnCurve(Edge, \r
- Parameter) </p>\r
+ Parameter).</I></span></p>\r
\r
-<p class="whs2"><b style="font-weight: bold;">Arguments:<span> \r
- N</b>ame + 1 edge + \r
- 1 Parameter defining the position of the point on the given edge.</span></p>\r
+<p class="whs2"><b style="font-weight: bold;">Arguments: N</b>ame \r
+ + 1 edge + \r
+ 1 Parameter defining the position of the point on the given edge.</p>\r
\r
<p class="whs2"> </p>\r
\r
-<p class="whs2"><b style="font-weight: bold;"><img src="pics/point3.png" x-maintain-ratio="TRUE" width="312px" height="421px" border="0" class="img_whs8"></b></p>\r
+<p class="whs2"><span style="font-style: italic;"><I><b style="font-weight: bold;"><img src="pics/point3.png" x-maintain-ratio="TRUE" width="312px" height="421px" border="0" class="img_whs8"></b></I></span></p>\r
\r
<p class="whs2"> </p>\r
\r
-<p class="whs9"><span style="font-size: 12pt; color: #000000;"><font size=3 color=black style="font-size:12.000000pt;"><b \r
- style="font-weight: bold;"><b style="font-weight: bold;">E</b>xample:</b></font></span></p>\r
+<p class="whs9"><span style="font-style: italic;"><I><span \r
+ style="font-size: 12pt; color: #000000;"><font size=3 color=black style="font-size:12.000000pt;"><b style="font-weight: bold;"><b \r
+ style="font-weight: bold;">E</b>xample:</b></font></span></I></span></p>\r
\r
<p class="whs10"> </p>\r
\r
-<p class="whs2"><b style="font-weight: bold;"><img src="pics/points.png" x-maintain-ratio="TRUE" width="354px" height="326px" border="0" class="img_whs11"></b></p>\r
+<p class="whs2"><span style="font-style: italic;"><I><b style="font-weight: bold;"><img src="pics/points.png" x-maintain-ratio="TRUE" width="354px" height="326px" border="0" class="img_whs11"></b></I></span></p>\r
\r
<p class="whs12"> </p>\r
\r
<p class="whs2">Our <span style="font-weight: bold;"><B>TUI Scripts</B></span> \r
- provide you with useful examples of creation of <a href="basic_geometrical_objects.htm#bookmark">Basic \r
+ provide you with useful examples of creation of <a href="basic_geometrical_objects.htm#bookmark" style="font-style: normal;">Basic \r
Geometric Objects</a>. </p>\r
\r
<script type="text/javascript" language="javascript1.2">\r
\r
<p> </p>\r
\r
-<p># add objects in study</p>\r
+<p># add objects in the study</p>\r
\r
<p class="whs1">id_box1 = geompy.addToStudy(box1,"Box1")</p>\r
\r
\r
<p> </p>\r
\r
-<p># display boxes</p>\r
+<p># display the boxes</p>\r
\r
<p class="whs1">gg.createAndDisplayGO(id_box1)</p>\r
\r
\r
<p> </p>\r
\r
-<p># create vertex and vector</p>\r
+<p># create a vertex and a vector</p>\r
\r
<p class="whs1">p1 = geompy.MakeVertex(35, \r
35, 0)</p>\r
\r
<p class="whs1"> </p>\r
\r
-<p># add objects in study</p>\r
+<p># add objects in the study</p>\r
\r
<p class="whs1">id_cone1 = geompy.addToStudy(cone1,"Cone1")</p>\r
\r
\r
<p> </p>\r
\r
-<p># create vertex</p>\r
+<p># create a vertex</p>\r
\r
<p class="whs1">p = geompy.MakeVertex(55, \r
45, 25)</p>\r
\r
<p> </p>\r
\r
-<p># add objects in study</p>\r
+<p># add objects in the study</p>\r
\r
<p class="whs1">id_sphere1 = geompy.addToStudy(sphere1,"Sphere1")</p>\r
\r
\r
<p> </p>\r
\r
-<p># create vertex and vector</p>\r
+<p># create a vertex and a vector</p>\r
\r
<p class="whs1">p1 = geompy.MakeVertex(35, \r
40, 45)</p>\r
\r
<p> </p>\r
\r
-<p># add objects in study</p>\r
+<p># add objects in the study</p>\r
\r
<p class="whs1">id_torus1 = geompy.addToStudy(torus1,"Torus1")</p>\r
\r
\r
<p> </p>\r
\r
-<p># create vertex and vector</p>\r
+<p># create a vertex and a vector</p>\r
\r
<p class="whs1">p1 = geompy.MakeVertex(35, \r
35, 0)</p>\r
\r
<p> </p>\r
\r
-<p># add objects in study</p>\r
+<p># add objects in the study</p>\r
\r
<p class="whs1">id_cone1 = geompy.addToStudy(cone1,"Cone1")</p>\r
\r
\r
<p> </p>\r
\r
-<p># create vertices, edge, arc, wire, face and prism</p>\r
+<p># create vertices, an edge, an arc, a wire, a face and a prism</p>\r
\r
<p class="whs1">p1 = geompy.MakeVertex(0,0,0)</p>\r
\r
\r
<p> </p>\r
\r
-<p># check shape at the beginning</p>\r
+<p># check the shape at the beginning</p>\r
\r
<p class="whs1">print "Before \r
ProcessShape:"</p>\r
\r
<p class="whs1"> </p>\r
\r
-<p># process Shape</p>\r
+<p># process the Shape</p>\r
\r
<p class="whs1">Operators = ["FixShape"]</p>\r
\r
\r
<p> </p>\r
\r
-<p># check shape at the end</p>\r
+<p># check the shape at the end</p>\r
\r
<p class="whs1">print "After \r
ProcessShape:"</p>\r
\r
<p> </p>\r
\r
-<p># add in study and display</p>\r
+<p># add in the study and display</p>\r
\r
<p class="whs1">Id_Shape = geompy.addToStudy(theShape, \r
"Invalid Shape")</p>\r
\r
<p> </p>\r
\r
-<p># create box</p>\r
+<p># create a box</p>\r
\r
<p class="whs1">box = geompy.MakeBoxDXDYDZ(200, \r
200, 200)</p>\r
\r
<p> </p>\r
\r
-<p># IDList for suppress faces</p>\r
+<p># The list of IDs (IDList) for suppress faces</p>\r
\r
<p class="whs1">sup_faces = []</p>\r
\r
\r
<p> </p>\r
\r
-<p># get sub-shape indexes</p>\r
+<p># get indices of the sub-shape </p>\r
\r
<p class="whs1">f1_id = geompy.GetSubShapeID(box, \r
sup_faces[3])</p>\r
\r
<p> </p>\r
\r
-<p># add objects in study</p>\r
+<p># add objects in the study</p>\r
\r
<p class="whs1">id_box = geompy.addToStudy(box, \r
"Box")</p>\r
\r
<p> </p>\r
\r
-<p># display results</p>\r
+<p># display the results</p>\r
\r
<p class="whs1">gg.createAndDisplayGO(id_box)</p>\r
\r
\r
<p> </p>\r
\r
-<p># create arc</p>\r
+<p># create an arc</p>\r
\r
<p class="whs1">arc = geompy.MakeArc(py1, \r
pz, px)</p>\r
\r
<p> </p>\r
\r
-<p># create wire</p>\r
+<p># create a wire</p>\r
\r
<p class="whs1">wire = geompy.MakeWire([vxy, \r
arc])</p>\r
\r
<p> </p>\r
\r
-<p># add objects in study</p>\r
+<p># add objects in the study</p>\r
\r
<p class="whs1">id_wire = geompy.addToStudy(wire, \r
"Wire")</p>\r
\r
<p> </p>\r
\r
-<p># display results</p>\r
+<p># display the results</p>\r
\r
<p class="whs1">gg.createAndDisplayGO(id_wire)</p>\r
\r
\r
<p> </p>\r
\r
-<p># create vertex and vector</p>\r
+<p># create a vertex and a vector</p>\r
\r
<p class="whs1">p1 = geompy.MakeVertex(55, \r
65, 50)</p>\r
\r
<p> </p>\r
\r
-<p># create cylinder</p>\r
+<p># create a cylinder</p>\r
\r
<p class="whs1">height = 100</p>\r
\r
\r
<p> </p>\r
\r
-<p># create box</p>\r
+<p># create a box</p>\r
\r
<p class="whs1">box = geompy.MakeBoxDXDYDZ(100, \r
100, 100)</p>\r
\r
<p> </p>\r
\r
-<p># make cut</p>\r
+<p># make a cut</p>\r
\r
<p class="whs1">cut = geompy.MakeCut(box, \r
cylinder)</p>\r
\r
<p> </p>\r
\r
-<p># add objects in study</p>\r
+<p># add objects in the study</p>\r
\r
<p class="whs1">id_cut = geompy.addToStudy(cut, \r
"Cut")</p>\r
\r
<p> </p>\r
\r
-<p># display results</p>\r
+<p># display the results</p>\r
\r
<p class="whs1">gg.createAndDisplayGO(id_cut)</p>\r
\r
\r
<p> </p>\r
\r
-<p># create vertex and vector</p>\r
+<p># create a vertex and a vector</p>\r
\r
<p class="whs1">p1 = geompy.MakeVertex(35, \r
35, 0)</p>\r
\r
<p> </p>\r
\r
-<p># create cylinder</p>\r
+<p># create a cylinder</p>\r
\r
<p class="whs1">height = 20</p>\r
\r
\r
<p> </p>\r
\r
-<p># create cone</p>\r
+<p># create a cone</p>\r
\r
<p class="whs1">cone = geompy.MakeCone(p1, \r
v, 70, 0, 80)</p>\r
\r
<p> </p>\r
\r
-<p># make cut</p>\r
+<p># make a cut</p>\r
\r
<p class="whs1">cut = geompy.MakeCut(cone, \r
cylinder)</p>\r
\r
<p> </p>\r
\r
-<p># add objects in study</p>\r
+<p># add objects in the study</p>\r
\r
<p class="whs1">id_cut = geompy.addToStudy(cut, \r
"Cut")</p>\r
\r
<p> </p>\r
\r
-<p># display results</p>\r
+<p># display the results</p>\r
\r
<p class="whs1">gg.createAndDisplayGO(id_cut)</p>\r
\r
\r
<p> </p>\r
\r
-<p># add objects in study</p>\r
+<p># add objects in the study</p>\r
\r
<p class="whs1">id_face = geompy.addToStudy(face, \r
"Face")</p>\r
\r
<p> </p>\r
\r
-<p># display results</p>\r
+<p># display the results</p>\r
\r
<p class="whs1">gg.createAndDisplayGO(id_face)</p>\r
\r
\r
<h3><a name=bookmark6>Glue Faces</a></h3>\r
\r
-<p class="whs1">import geompy</p>\r
+<p class="whs1"><span style="font-family: 'Lucida Console', monospace;">import \r
+ geompy</span></p>\r
\r
<p class="whs1">import salome</p>\r
\r
-<p class="whs1">import math</p>\r
+<p class="whs1"> </p>\r
\r
<p class="whs1">gg = salome.ImportComponentGUI("GEOM")</p>\r
\r
<p class="whs1"> </p>\r
\r
-<p class="whs2"># create base points</p>\r
-\r
-<p class="whs1">px = geompy.MakeVertex(100., \r
- 0., 0.)</p>\r
-\r
-<p class="whs1">py = geompy.MakeVertex(0., \r
- 100., 0.)</p>\r
-\r
-<p class="whs1">pz = geompy.MakeVertex(0., \r
- 0., 100.)</p>\r
-\r
-<p class="whs1"> </p>\r
+<p class="whs2"># create boxes</p>\r
\r
-<p class="whs2"># create base geometry \r
- 2D & 3D</p>\r
+<p class="whs1">box1 = geompy.MakeBox(0,0,0,100,50,100)</p>\r
\r
-<p class="whs1">vector = geompy.MakeVector(px, \r
- py)</p>\r
+<p class="whs1">box2 = </p>\r
\r
-<p class="whs1">arc = geompy.MakeArc(py, \r
- pz, px)</p>\r
+<p class="whs1">geompy.MakeBox(100,0,0,250,50,100)</p>\r
\r
<p class="whs1"> </p>\r
\r
-<p class="whs2"># create base objects</p>\r
-\r
-<p class="whs1">angle = 45. * math.pi \r
- / 180</p>\r
-\r
-<p class="whs1">WantPlanarFace = 1 \r
- #True</p>\r
-\r
-<p class="whs1">wire = geompy.MakeWire([vector, \r
- arc])</p>\r
-\r
-<p class="whs1">face = geompy.MakeFace(wire, \r
- WantPlanarFace)</p>\r
+<p class="whs2"># make compound</p>\r
\r
-<p class="whs1">face_rot = geompy.MakeRotation(face, \r
- vector, angle)</p>\r
+<p class="whs1">compound = geompy.MakeCompound([box1, \r
+ box2])</p>\r
\r
<p class="whs1"> </p>\r
\r
-<p class="whs2"># make sewing</p>\r
+<p class="whs2"># glue compound's faces</p>\r
\r
-<p class="whs1">precision = 0.00001</p>\r
+<p class="whs1">tolerance = 1e-5</p>\r
\r
-<p class="whs1">sewing = geompy.MakeSewing([face, \r
- face_rot], precision)</p>\r
+<p class="whs1">glue = geompy.MakeGlueFaces(compound, \r
+ tolerance)</p>\r
\r
<p class="whs1"> </p>\r
\r
<p class="whs2"># add objects in study</p>\r
\r
-<p class="whs1">id_face = geompy.addToStudy(face, \r
- "Face")</p>\r
+<p class="whs1">id_box1 = geompy.addToStudy(box1, \r
+ "Box1")</p>\r
\r
-<p class="whs1">id_face_rot = geompy.addToStudy(face_rot, \r
- "Face rotation")</p>\r
+<p class="whs1">id_box2 = geompy.addToStudy(box2, \r
+ "Box2")</p>\r
\r
-<p class="whs1">id_sewing = geompy.addToStudy(sewing, \r
- "Sewing")</p>\r
+<p class="whs1">id_compound = geompy.addToStudy(compound, \r
+ "Compound")</p>\r
+\r
+<p class="whs1">id_glue = geompy.addToStudy(glue, \r
+ "Glue faces")</p>\r
\r
<p class="whs1"> </p>\r
\r
<p class="whs2"># display results</p>\r
\r
-<p class="whs1">gg.createAndDisplayGO(id_face)</p>\r
+<p class="whs1">gg.createAndDisplayGO(id_box1)</p>\r
\r
-<p class="whs1">gg.setDisplayMode(id_face,1)</p>\r
+<p class="whs1">gg.setDisplayMode(id_box1,1)</p>\r
\r
-<p class="whs1">gg.createAndDisplayGO(id_face_rot)</p>\r
+<p class="whs1">gg.createAndDisplayGO(id_box2)</p>\r
\r
-<p class="whs1">gg.setDisplayMode(id_face_rot,1)</p>\r
+<p class="whs1">gg.setDisplayMode(id_box2,1)</p>\r
\r
-<p class="whs1">gg.createAndDisplayGO(id_sewing)</p>\r
+<p class="whs1">gg.createAndDisplayGO(id_compound)</p>\r
\r
-<p class="whs1">gg.setDisplayMode(id_sewing,1) \r
+<p class="whs1">gg.setDisplayMode(id_compound,1)</p>\r
+\r
+<p class="whs1">gg.createAndDisplayGO(id_glue)</p>\r
+\r
+<p class="whs1">gg.setDisplayMode(id_glue,1) \r
</p>\r
\r
<p class="whs1"> </p>\r
\r
<p class="whs1"> </p>\r
\r
-<p class="whs2"># make edge</p>\r
+<p class="whs2"># make an edge</p>\r
\r
<p class="whs1">edge = geompy.MakeEdge(p1, \r
p2) #geompy.GetSubShape(box, edge_ind)</p>\r
\r
<p class="whs1"> </p>\r
\r
-<p class="whs2"># divide edge</p>\r
+<p class="whs2"># divide an edge</p>\r
\r
<p class="whs1">divide = geompy.DivideEdge(edge, \r
-1, 0.5, 0)</p>\r
\r
<p class="whs1"> </p>\r
\r
-<p class="whs2"># add objects in study</p>\r
+<p class="whs2"># add objects in the \r
+ study</p>\r
\r
<p class="whs1">id_edge = geompy.addToStudy(edge, \r
"Edge")</p>\r
\r
<h3><a name=bookmark8>Check Free Boundaries</a></h3>\r
\r
+<p class="whs1">import os</p>\r
+\r
<p class="whs1">import geompy</p>\r
\r
<p class="whs1">import salome</p>\r
\r
<p class="whs2"> </p>\r
\r
-<p class="whs2"># make compound</p>\r
+<p class="whs2"># make a compound</p>\r
\r
<p class="whs1">compound = geompy.MakeCompound([box1, \r
box2])</p>\r
\r
<p class="whs2"># import from *.brep</p>\r
\r
-<p class="whs1">ImportBREP = geompy.ImportBREP("/tmp/flight_solid.brep")</p>\r
+<p class="whs1">ImportBREP = geompy.ImportBREP("ImportBREP \r
+ = <span style="font-family: 'Lucida Console', monospace;">geompy.ImportBREP(os.getenv("DATA_DIR")+"/Shapes/Brep/flight_solid.brep")</span></p>\r
\r
<p class="whs2"> </p>\r
\r
-<p class="whs2"># get face</p>\r
+<p class="whs2"># get a face</p>\r
\r
<p class="whs1">faces = geompy.SubShapeAllSorted(ImportBREP, \r
geompy.ShapeType["FACE"])</p>\r
\r
<p class="whs2"> </p>\r
\r
-<p class="whs2"># get free boundary for \r
- face 32</p>\r
+<p class="whs2"># get the free boundary \r
+ for face 32</p>\r
\r
<p class="whs1">Res = geompy.GetFreeBoundary(faces[32])</p>\r
\r
\r
<p class="whs2"> </p>\r
\r
-<p class="whs2"># get free boundary for \r
- face 41</p>\r
+<p class="whs2"># get the free boundary \r
+ for face 41</p>\r
\r
<p class="whs1">Res = geompy.GetFreeBoundary(faces[41])</p>\r
\r
\r
<p class="whs2"> </p>\r
\r
-<p class="whs2"># add imported object \r
- in study</p>\r
+<p class="whs2"># add the imported object \r
+ to the study</p>\r
\r
<p class="whs1">id_ImportBREP = geompy.addToStudy(ImportBREP, \r
"ImportBREP")</p>\r
\r
<p> </p>\r
\r
-<p># create vertex and vector</p>\r
+<p># create a vertex and a vector</p>\r
\r
<p class="whs1">p1 = geompy.MakeVertex(35, \r
35, 0)</p>\r
\r
<p> </p>\r
\r
-<p># create cylinder</p>\r
+<p># create a cylinder</p>\r
\r
<p class="whs1">cylinder = geompy.MakeCone(p1, \r
v, 30, 20, 20)</p>\r
\r
<p> </p>\r
\r
-<p># create cone</p>\r
+<p># create a cone</p>\r
\r
<p class="whs1">cone = geompy.MakeCone(p1, \r
v, 70, 40, 60)</p>\r
\r
<p> </p>\r
\r
-<p># suppress specified wire</p>\r
+<p># suppress the specified wire</p>\r
\r
<p class="whs1">result = geompy.GetFreeFacesIDs(cut_without_f_2)</p>\r
\r
\r
<p> </p>\r
\r
-<p># add objects in study</p>\r
+<p># add objects in the study</p>\r
\r
<p class="whs1">all_faces = geompy.SubShapeAllSorted(cut_without_f_2, \r
geompy.ShapeType["FACE"])</p>\r
\r
<p> </p>\r
\r
-<p># display results</p>\r
+<p># display the results</p>\r
\r
<p class="whs1">gg.createAndDisplayGO(id_cut_without_f_2)</p>\r
\r
p.whs8 { font-size:12pt; margin-left:40px; text-indent:-40px; font-weight:bold; }\r
p.whs9 { font-size:12pt; text-indent:-40px; font-weight:bold; margin-left:80px; }\r
img_whs10 { border:none; width:200px; height:200px; border-style:none; }\r
-img_whs11 { border:none; width:200px; height:195px; border-style:none; }\r
-->\r
</style><script type="text/javascript" language="JavaScript">\r
<!--\r
\r
<p> </p>\r
\r
-<p class="whs2"><b style="font-weight: bold;">Result:</b> GEOM_Object.</p>\r
+<p class="whs2"><b><span style="font-weight: normal;">T</span></b><b><span \r
+ style="font-weight: normal;">he</span> Result <span style="font-weight: normal;">of \r
+ the operation will be a</span></b><b> GEOM_Object</b>.</p>\r
\r
-<p class="whs2"> </p>\r
+<p> </p>\r
\r
<p class="whs2"><b style="font-weight: bold;">TUI Command:</b><i> \r
</i><span style="font-style: italic;"><I>geompy.MakeSketcher(Command, WorkingPlane)</I></span></p>\r
the Command argument. The edges of the resulting wire or face will be \r
arcs of circles and/or linear segments.</p>\r
\r
-<p class="whs3"><span style="margin-left: 120px; font-style: italic;"><I>Command</I></span><span \r
- style="margin-left: 120px;"> is a string, defining the sketcher by </span>the \r
- coordinates of points in the local working plane.</p>\r
+<p class="whs3"><span style="font-style: italic;"><I>Command</I></span> \r
+ is a string, defining the sketcher by the coordinates of points in the \r
+ local working plane.</p>\r
\r
<p class="whs3"><span style="font-style: italic;"><I>WorkingPlane</I></span> \r
is a planar face of the working plane (a list of 9 doubles which are coordinates \r
<li class=kadov-p><p class="whs2">tangent to the previous \r
segment;</p></li>\r
\r
- <li class=kadov-p><p class="whs2">vector components VX, \r
+ <li class=kadov-p><p class="whs2">vector components DX, \r
DY.</p></li>\r
</ul>\r
\r
\r
<p class="whs9"> </p>\r
\r
-<p class="whs9"><img src="image204.jpg" width="200px" height="200px" border="0" class="img_whs10"> <img src="image206.jpg" width="200px" height="195px" border="0" class="img_whs11"></p>\r
+<p class="whs9"><img src="image204.jpg" width="200px" height="200px" border="0" class="img_whs10"> <img src="image206.jpg" width="200px" height="200px" border="0" class="img_whs10"></p>\r
\r
<p class="whs9"> </p>\r
\r
\r
<p> </p>\r
\r
-<p>#create vector with two points</p>\r
+<p>#create a vector from two points</p>\r
\r
<p class="whs1">vector_arc = geompy.MakeVector(p1, \r
p3)</p>\r
\r
<p> </p>\r
\r
-<p># create arc with three points</p>\r
+<p># create an arc from three points</p>\r
\r
<p class="whs1">arc = geompy.MakeArc(p1, \r
p2, p3)</p>\r
\r
<p> </p>\r
\r
-<p># create wire</p>\r
+<p># create a wire</p>\r
\r
<p class="whs1">wire = geompy.MakeWire([vector_arc, \r
arc])</p>\r
\r
<p> </p>\r
\r
-<p># create planar face</p>\r
+<p># create a planar face</p>\r
\r
<p class="whs1">isPlanarWanted = 1</p>\r
\r
\r
<p> </p>\r
\r
-<p># create sketcher (face), following the textual description</p>\r
+<p># create a sketcher (face), following the textual description</p>\r
\r
<p class="whs1">sketcher1 = geompy.MakeSketcher("Sketcher:F \r
-100 -100:TT 250 -100:R 0:C 100 150:R 0:L 300:WF",</p>\r
\r
<p> </p>\r
\r
-<p># create sketcher (wire) on the given face</p>\r
+<p># create a sketcher (wire) on the given face</p>\r
\r
<p class="whs1">sketcher2 = geompy.MakeSketcherOnPlane("Sketcher:F \r
10 -30:R 10:C 20 180:R 15:L 50:WW",</p>\r
\r
<p> </p>\r
\r
-<p># add objects in study</p>\r
+<p># add objects in the study</p>\r
\r
<p class="whs2">id_face = geompy.addToStudy(face,"Face")</p>\r
\r
\r
<p> </p>\r
\r
-<p># display first sketcher and second sketcher with its planar face</p>\r
+<p># display the first sketcher and the second sketcher with its planar \r
+ face</p>\r
\r
<p class="whs1">gg.createAndDisplayGO(id_face)</p>\r
\r
img_whs1 { width:20px; height:20px; border-style:none; }\r
p.whs2 { font-size:12pt; }\r
p.whs3 { font-size:12pt; font-weight:bold; }\r
-p.whs4 { font-size:12pt; margin-left:40px; }\r
+p.whs4 { font-size:12pt; margin-left:0px; }\r
img_whs5 { border:none; width:312px; height:315px; float:none; border-style:none; }\r
-img_whs6 { border:none; width:215px; height:190px; float:none; border-style:none; }\r
+p.whs6 { font-size:12pt; margin-left:40px; }\r
+img_whs7 { border:none; width:215px; height:190px; float:none; border-style:none; }\r
-->\r
-</style><script type="text/javascript" language="JavaScript" title="WebHelpInlineScript">\r
+</style><script type="text/javascript" language="JavaScript">\r
+<!--\r
+if ((navigator.appName == "Netscape") && (parseInt(navigator.appVersion) == 4))\r
+{\r
+ var strNSS = "<style type='text/css'>";\r
+ strNSS += "p.whs4 {margin-left:1pt; }";\r
+ strNSS +="</style>";\r
+ document.write(strNSS);\r
+}\r
+//-->\r
+</script>\r
+<script type="text/javascript" language="JavaScript" title="WebHelpInlineScript">\r
<!--\r
function reDo() {\r
if (innerWidth != origWidth || innerHeight != origHeight)\r
<p class="whs2"><b style="font-weight: bold;">Arguments:</b> \r
Name + A closed shell or a list of shells.</p>\r
\r
-<p class="whs2"> </p>\r
-\r
<p class="whs4"><img src="pics/neo-obj6.png" x-maintain-ratio="TRUE" width="312px" height="315px" border="0" class="img_whs5"></p>\r
\r
<p class="whs2"> </p>\r
\r
<p class="whs3"> </p>\r
\r
-<p class="whs2"><img src="pics/solidsn.png" x-maintain-ratio="TRUE" width="215px" height="190px" border="0" class="img_whs6"></p>\r
+<p class="whs6"><img src="pics/solidsn.png" x-maintain-ratio="TRUE" width="215px" height="190px" border="0" class="img_whs7"></p>\r
\r
<p class="whs2"> </p>\r
\r
\r
<p class="whs4"><span style="font-weight: normal;">You \r
can define the</span> Sphere <span style="font-weight: normal;">by the \r
- coordinates of the</span> Center Point<span style="font-weight: normal;"> \r
- </span>(in this way you don't need to create it in advance). </p>\r
+ coordinates of the</span> Center Point <span style="font-weight: normal;">and \r
+ its</span> Radius <span style="font-weight: normal;">(in this way you \r
+ don't need to create it in advance).</span> </p>\r
\r
<p class="whs4"><b style="font-weight: bold;">TUI \r
Command:</b> <span style="font-weight: normal; font-style: italic;"><I>geompy.MakeSphere(X, \r
\r
<p> </p>\r
\r
-<p># create vertex and vector</p>\r
+<p># create a vertex and a vector</p>\r
\r
<p class="whs1">p1 = geompy.MakeVertex(10, \r
40, 0)</p>\r
\r
<p> </p>\r
\r
-<p># create cylinder</p>\r
+<p># create a cylinder</p>\r
\r
<p class="whs1">height = 35</p>\r
\r
\r
<p> </p>\r
\r
-<p># add objects in study</p>\r
+<p># add objects in the study</p>\r
\r
<p class="whs1">id_cylinder = geompy.addToStudy(cylinder, \r
"Cylinder")</p>\r
\r
<p> </p>\r
\r
-<p># display results</p>\r
+<p># display the results</p>\r
\r
<p class="whs1">gg.createAndDisplayGO(id_cylinder)</p>\r
\r
\r
<p> </p>\r
\r
-<p># create vertex and vector</p>\r
+<p># create a vertex and a vector</p>\r
\r
<p class="whs1">p1 = geompy.MakeVertex(10, \r
40, 0)</p>\r
\r
<p> </p>\r
\r
-<p># create cylinder</p>\r
+<p># create a cylinder</p>\r
\r
<p class="whs1">height = 35</p>\r
\r
\r
<p> </p>\r
\r
-<p># rotate the given object around the given axis on the given angle</p>\r
+<p># rotate the given object around the given axis by the given angle</p>\r
\r
<p class="whs1">rotation = geompy.MakeRotation(cylinder, \r
vr, math.pi)</p>\r
\r
<p> </p>\r
\r
-<p># add objects in study</p>\r
+<p># add objects in the study</p>\r
\r
<p class="whs1">id_vr = geompy.addToStudy(vr, \r
"Rotation axis")</p>\r
\r
<p> </p>\r
\r
-<p># display results</p>\r
+<p># display the results</p>\r
\r
<p class="whs1">gg.createAndDisplayGO(id_vr)</p>\r
\r
\r
<p> </p>\r
\r
-<p># create vertex and vector</p>\r
+<p># create a vertex and a vector</p>\r
\r
<p class="whs1">p1 = geompy.MakeVertex(10, \r
40, 0)</p>\r
\r
<p> </p>\r
\r
-<p># create cylinder</p>\r
+<p># create a cylinder</p>\r
\r
<p class="whs1">height = 35</p>\r
\r
\r
<p> </p>\r
\r
-<p># add objects in study</p>\r
+<p># add objects in the study</p>\r
\r
<p class="whs1">id_cs1 = geompy.addToStudy(cs1, \r
"Coordinate system 1")</p>\r
\r
<p class="whs1"> </p>\r
\r
-<p># display results</p>\r
+<p># display the results</p>\r
\r
<p class="whs1">gg.createAndDisplayGO(id_cylinder)</p>\r
\r
\r
<p> </p>\r
\r
-<p># create box</p>\r
+<p># create a box</p>\r
\r
<p class="whs1">box = geompy.MakeBoxDXDYDZ(200, \r
200, 200)</p>\r
\r
<p> </p>\r
\r
-<p># add objects in study</p>\r
+<p># add objects in the study</p>\r
\r
<p class="whs1">id_box = geompy.addToStudy(box, \r
"Box")</p>\r
\r
<p> </p>\r
\r
-<p># display results</p>\r
+<p># display the results</p>\r
\r
<p class="whs1">gg.createAndDisplayGO(id_box)</p>\r
\r
\r
<p> </p>\r
\r
-<p># create box and sphere</p>\r
+<p># create a box and a sphere</p>\r
\r
<p class="whs1">box = geompy.MakeBoxDXDYDZ(200, \r
200, 200)</p>\r
\r
<p> </p>\r
\r
-<p># add objects in study</p>\r
+<p># add objects in the study</p>\r
\r
<p class="whs1">id_box = geompy.addToStudy(box, \r
"Box")</p>\r
\r
<p> </p>\r
\r
-<p># display results</p>\r
+<p># display the results</p>\r
\r
<p class="whs1">gg.createAndDisplayGO(id_box)</p>\r
\r
\r
<p> </p>\r
\r
-<p># create box and sphere</p>\r
+<p># create a box and a sphere</p>\r
\r
<p class="whs1">box = geompy.MakeBox(20, \r
20, 20, 200, 200, 200)</p>\r
\r
<p> </p>\r
\r
-<p># create new object as offset of the given one</p>\r
+<p># create a new object as offset of the given object</p>\r
\r
<p class="whs1">offset = geompy.MakeOffset(box, \r
70.)</p>\r
\r
<p> </p>\r
\r
-<p># add objects in study</p>\r
+<p># add objects in the study</p>\r
\r
<p class="whs1">id_box = geompy.addToStudy(box, \r
"Box")</p>\r
\r
<p class="whs1"> </p>\r
\r
-<p># display results</p>\r
+<p># display the results</p>\r
\r
<p class="whs1">gg.createAndDisplayGO(id_box)</p>\r
\r
\r
<p> </p>\r
\r
-<p># create arc</p>\r
+<p># create an arc</p>\r
\r
<p class="whs1">arc = geompy.MakeArc(py, \r
pz, px)</p>\r
\r
<p> </p>\r
\r
-<p># create wire</p>\r
+<p># create a wire</p>\r
\r
<p class="whs1">wire = geompy.MakeWire([vxy, \r
arc])</p>\r
\r
<p> </p>\r
\r
-<p># create planar face</p>\r
+<p># create a planar face</p>\r
\r
<p class="whs1">face = geompy.MakeFace(wire, \r
1)</p>\r
\r
<p> </p>\r
\r
-<p># create prism</p>\r
+<p># create a prism</p>\r
\r
<p class="whs1">prism = geompy.MakePrismVecH(face, \r
vz, 20.0)</p>\r
\r
<p> </p>\r
\r
-<p># translate the given object along the given vector a given number times</p>\r
+<p># translate the given object along the given vector a given number of \r
+ times</p>\r
\r
<p class="whs1">tr1d = geompy.MakeMultiTranslation1D(prism, \r
vtr1d, 20, 4)</p>\r
\r
<p> </p>\r
\r
-<p># consequently apply two specified translations to the object specified \r
+<p># consequently apply two specified translations to the object a given \r
number of times</p>\r
\r
<p class="whs1">tr2d = geompy.MakeMultiTranslation2D(prism, \r
\r
<p> </p>\r
\r
-<p># add objects in study</p>\r
+<p># add objects in the study</p>\r
\r
<p class="whs1">id_prism = geompy.addToStudy(prism,"Prism")</p>\r
\r
\r
<p> </p>\r
\r
-<p># display prism and results of fillet operation</p>\r
+<p># display the prism and the results of fillet operation</p>\r
\r
<p class="whs1">gg.createAndDisplayGO(id_prism)</p>\r
\r
\r
<p> </p>\r
\r
-<p># create arc</p>\r
+<p># create an arc</p>\r
\r
<p class="whs1">arc = geompy.MakeArc(py, \r
pz, px)</p>\r
\r
<p> </p>\r
\r
-<p># create wire</p>\r
+<p># create a wire</p>\r
\r
<p class="whs1">wire = geompy.MakeWire([vxy, \r
arc])</p>\r
\r
<p> </p>\r
\r
-<p># create planar face</p>\r
+<p># create a planar face</p>\r
\r
<p class="whs1">face = geompy.MakeFace(wire, \r
1)</p>\r
\r
<p> </p>\r
\r
-<p># create prism</p>\r
+<p># create a prism</p>\r
\r
<p class="whs1">prism = geompy.MakePrismVecH(face, \r
vz, 20.0)</p>\r
\r
<p> </p>\r
\r
-<p># rotate the given object around the given axis on the given angle a \r
- given number times</p>\r
+<p># rotate the given object around the given axis by the given angle a \r
+ given number of times</p>\r
\r
<p class="whs1">rot1d = geompy.MultiRotate1D(prism, \r
vrot1d, 4)</p>\r
\r
<p> </p>\r
\r
-<p># rotate the given object around the given axis on the given angle a \r
- given number times</p>\r
+<p># rotate the given object around the given axis by the given angle a \r
+ given number of times</p>\r
\r
-<p># and multi-translate each rotation result</p>\r
+<p># and multi-translate the result of each rotation</p>\r
\r
<p class="whs1">rot2d = geompy.MultiRotate2D(prism, \r
vrot1d, 60, 4, 50, 5)</p>\r
\r
<p> </p>\r
\r
-<p># add objects in study</p>\r
+<p># add objects in the study</p>\r
\r
<p class="whs1">id_prism = geompy.addToStudy(prism,"Prism")</p>\r
\r
\r
<p> </p>\r
\r
-<p># display prism and results of fillet operation</p>\r
+<p># display the prism and the results of fillet operation</p>\r
\r
<p class="whs1">gg.createAndDisplayGO(id_prism)</p>\r
\r
\r
<p> </p>\r
\r
-<p># create arc</p>\r
+<p># create an arc</p>\r
\r
<p class="whs1">arc = geompy.MakeArc(py, \r
pz, px)</p>\r
\r
<p> </p>\r
\r
-<p># create wire</p>\r
+<p># create a wire</p>\r
\r
<p class="whs1">wire = geompy.MakeWire([vxy, \r
arc])</p>\r
\r
<p> </p>\r
\r
-<p># create planar face</p>\r
+<p># create a planar face</p>\r
\r
<p class="whs1">face = geompy.MakeFace(wire, \r
1)</p>\r
\r
<p> </p>\r
\r
-<p># create prism</p>\r
+<p># create a prism</p>\r
\r
<p class="whs1">prism = geompy.MakePrismVecH(face, \r
vz, 100.0)</p>\r
\r
<p> </p>\r
\r
-<p># get IDList for fillet</p>\r
+<p># get the list of IDs (IDList) for the fillet</p>\r
\r
<p class="whs1">prism_edges = geompy.SubShapeAllSorted(prism, \r
ShapeTypeEdge)</p>\r
\r
<p> </p>\r
\r
-<p># make fillet on the specified edges of the given shape</p>\r
+<p># make a fillet on the specified edges of the given shape</p>\r
\r
<p class="whs1">fillet = geompy.MakeFillet(prism, \r
radius, ShapeTypeEdge, IDlist_e)</p>\r
\r
<p> </p>\r
\r
-<p># make fillet on all edges of the given shape</p>\r
+<p># make a fillet on all edges of the given shape</p>\r
\r
<p class="whs1">filletall = geompy.MakeFilletAll(prism, \r
radius)</p>\r
\r
<p> </p>\r
\r
-<p># add objects in study</p>\r
+<p># add objects in the study</p>\r
\r
<p class="whs1">id_prism = geompy.addToStudy(prism,"Prism")</p>\r
\r
\r
<p> </p>\r
\r
-<p># display prism and results of fillet operation</p>\r
+<p># display the prism and the results of fillet operation</p>\r
\r
<p class="whs1">gg.createAndDisplayGO(id_prism)</p>\r
\r
\r
<p> </p>\r
\r
-<p># create arc</p>\r
+<p># create an arc</p>\r
\r
<p class="whs1">arc = geompy.MakeArc(py, \r
pz, px)</p>\r
\r
<p> </p>\r
\r
-<p># create wire</p>\r
+<p># create a wire</p>\r
\r
<p class="whs1">wire = geompy.MakeWire([vxy, \r
arc])</p>\r
\r
<p> </p>\r
\r
-<p># create planar face</p>\r
+<p># create a planar face</p>\r
\r
<p class="whs1">face = geompy.MakeFace(wire, \r
1)</p>\r
\r
<p> </p>\r
\r
-<p># create prism</p>\r
+<p># create a prism</p>\r
\r
<p class="whs1">prism = geompy.MakePrismVecH(face, \r
vz, 100.0)</p>\r
\r
<p> </p>\r
\r
-<p># get IDList for chamfer</p>\r
+<p># get the list of IDs (IDList) for the chamfer</p>\r
\r
<p class="whs1">prism_faces = geompy.SubShapeAllSorted(prism, \r
ShapeTypeFace)</p>\r
\r
<p> </p>\r
\r
-<p># perform a chamfer on edges, common to the specified faces</p>\r
+<p># perform a chamfer on the edges common to the specified faces</p>\r
\r
<p class="whs1">chamfer_e = geompy.MakeChamferEdge(prism, \r
d1, d2, f_ind_1, f_ind_2)</p>\r
\r
<p> </p>\r
\r
-<p># add objects in study</p>\r
+<p># add objects in the study</p>\r
\r
<p class="whs1">id_prism = geompy.addToStudy(prism,"Prism")</p>\r
\r
\r
<p> </p>\r
\r
-<p># display prism and results of chamfer operation</p>\r
+<p># display the prism and the results of chamfer operation</p>\r
\r
<p class="whs1">gg.createAndDisplayGO(id_prism)</p>\r
\r
--- /dev/null
+<!doctype HTML public "-//W3C//DTD HTML 4.0 Frameset//EN">\r
+\r
+<html>\r
+\r
+<head>\r
+<title>Transparency</title>\r
+<meta http-equiv="content-type" content="text/html; charset=windows-1252">\r
+<meta name="generator" content="RoboHelp by eHelp Corporation www.ehelp.com">\r
+<link rel="stylesheet" href="default_ns.css"><script type="text/javascript" language="JavaScript" title="WebHelpSplitCss">\r
+<!--\r
+if (navigator.appName !="Netscape")\r
+{ document.write("<link rel='stylesheet' href='default.css'>");}\r
+//-->\r
+</script>\r
+<style type="text/css">\r
+<!--\r
+p.whs1 { font-size:12pt; font-weight:normal; }\r
+p.whs2 { font-size:12pt; }\r
+img_whs3 { border:none; width:354px; height:177px; float:none; border-style:none; }\r
+p.whs4 { font-size:12pt; font-style:italic; font-weight:normal; }\r
+img_whs5 { border:none; float:none; height:430px; width:400px; border-style:none; }\r
+img_whs6 { border:none; height:430px; float:none; width:400px; border-style:none; }\r
+p.whs7 { margin-left:40px; font-size:12pt; }\r
+-->\r
+</style><script type="text/javascript" language="JavaScript" title="WebHelpInlineScript">\r
+<!--\r
+function reDo() {\r
+ if (innerWidth != origWidth || innerHeight != origHeight)\r
+ location.reload();\r
+}\r
+if ((parseInt(navigator.appVersion) == 4) && (navigator.appName == "Netscape")) {\r
+ origWidth = innerWidth;\r
+ origHeight = innerHeight;\r
+ onresize = reDo;\r
+}\r
+onerror = null; \r
+//-->\r
+</script>\r
+<style type="text/css">\r
+<!--\r
+div.WebHelpPopupMenu { position:absolute; left:0px; top:0px; z-index:4; visibility:hidden; }\r
+-->\r
+</style><script type="text/javascript" language="javascript1.2" src="whmsg.js"></script>\r
+<script type="text/javascript" language="javascript" src="whver.js"></script>\r
+<script type="text/javascript" language="javascript1.2" src="whproxy.js"></script>\r
+<script type="text/javascript" language="javascript1.2" src="whutils.js"></script>\r
+<script type="text/javascript" language="javascript1.2" src="whtopic.js"></script>\r
+</head>\r
+<body><script type="text/javascript" language="javascript1.2">\r
+<!--\r
+if (window.gbWhTopic)\r
+{\r
+ if (window.addTocInfo)\r
+ {\r
+ addTocInfo("GEOM module\nManaging geometrical objects\nChanging Display Parameters\nTransparency");\r
+addButton("show",BTN_TEXT,"Show","","","","",0,0,"","","");\r
+\r
+ }\r
+ if (window.writeBtnStyle)\r
+ writeBtnStyle();\r
+\r
+ if (window.writeIntopicBar)\r
+ writeIntopicBar(1);\r
+\r
+ if (window.setRelStartPage)\r
+ {\r
+ setRelStartPage("geom.htm");\r
+\r
+ autoSync(1);\r
+ sendSyncInfo();\r
+ sendAveInfoOut();\r
+ }\r
+}\r
+else\r
+ if (window.gbIE4)\r
+ document.location.reload();\r
+//-->\r
+</script>\r
+<h1>Transparency</h1>\r
+\r
+<p class="whs1">You can change the transparency \r
+ of a shape in the range between 0 (absolutely opaque) and 1 (absolutely \r
+ transparent and thus invisible) in the following dialog box.</p>\r
+\r
+<p class="whs2"> </p>\r
+\r
+<p class="whs2"><img src="pics/neo-transparency.png" x-maintain-ratio="TRUE" width="354px" height="177px" border="0" class="img_whs3"></p>\r
+\r
+<p class="whs2"> </p>\r
+\r
+<p class="whs2"><b style="font-weight: bold;"><span style="font-weight: normal;">or \r
+ using a</span> TUI Command:</b><i> gg.setTransparency(ID, Double)</i></p>\r
+\r
+<p class="whs2"> </p>\r
+\r
+<p class="whs2"><b style="font-weight: bold;">Examples:</b></p>\r
+\r
+<p class="whs2"> </p>\r
+\r
+<p class="whs4">Opaque 50% \r
+ Transparent</p>\r
+\r
+<p class="whs2"><img src="pics/colorsn.png" x-maintain-ratio="TRUE" height="430px" width="400px" border="0" class="img_whs5"> <img src="pics/transparencysn.png" x-maintain-ratio="TRUE" height="430px" width="400px" border="0" class="img_whs6"></p>\r
+\r
+<p class="whs7"> </p>\r
+\r
+<p class="whs2"><span style="font-size: 12pt;"><font size=3 style="font-size:12pt;">Our TUI Scripts \r
+ provide you with useful examples of <a href="changing_display_parameters.htm#bookmark2">Changing \r
+ Display Parameters</a>. </font></span></p>\r
+\r
+<p> </p>\r
+\r
+<script type="text/javascript" language="javascript1.2">\r
+<!--\r
+if (window.writeIntopicBar)\r
+ writeIntopicBar(0);\r
+//-->\r
+</script>\r
+</body>\r
+</html>\r
\r
<p> </p>\r
\r
-<p>Secondly, you can define a Torus with the centre at the origin of coordinates \r
+<p>Secondly, you can define a Torus with the center at the origin of coordinates \r
by its Major and Minor <span style="font-weight: bold;"><B>Radiuses</B></span>. \r
</p>\r
\r
<p class="whs2"> </p>\r
\r
<p class="whs2"><b style="font-weight: bold;"><span style="font-weight: normal;">There \r
- are 2 algorithms to create a</span> Circle <span style="font-weight: normal;">in \r
+ are 2 algorithms to create a</span> Vector <span style="font-weight: normal;">in \r
the 3D space.</span> </b></p>\r
\r
<p class="whs2"><b style="font-weight: bold;"><span style="font-weight: normal;">The</span> \r
aTE("Check Free Faces","check_free_faces.htm");\r
aTE("Circle","circle.htm");\r
aTE("Close Contour","close_contour.htm");\r
+aTE("Color","color.htm");\r
aTE("Common","common.htm");\r
aTE("Complex Objects","complex_objects.htm");\r
aTE("Compound","compound.htm");\r
aTE("Geometrical Objects","geometrical_objects.htm");\r
aTE("Glue Faces","glue_faces.htm");\r
aTE("Groups","groups.htm");\r
+aTE("Isos","isos.htm");\r
aTE("Line","line.htm");\r
aTE("Local Coordinate System","local_coordinate_system.htm");\r
aTE("Measurement Tools","measurement_tools.htm");\r
aTE("Suppress Internal Wires","suppress_internal_wires.htm");\r
aTE("Transformation Operations","transformation_operations.htm");\r
aTE("Translation","translation.htm");\r
+aTE("Transparency","transparency.htm");\r
aTE("Turus","turus.htm");\r
aTE("Vector","vector.htm");\r
aTE("Wire","wire.htm");\r
+aTE("Wireframe and Shading","wireframe_and_shading.htm");\r
aTE("Working Plane","working_plane.htm");\r
aTE("Working with groups","working_with_groups.htm");\r
\r
<!--\r
iWM("0","zmin","whfwdata0.htm");\r
\r
-iTM(0,85,"whftdata0.htm");\r
+iTM(0,89,"whftdata0.htm");\r
\r
//-->\r
</script>\r
</script>\r
<script language="javascript">\r
<!--\r
-aWE("0",0,3,4,6,7,9,11,12,18,45,47,50,61,62,64,73,40,79);\r
-aWE("00001",64);\r
-aWE("0001",18);\r
+aWE("0",0,3,4,6,7,9,11,12,19,46,48,52,63,64,66,75,41,81,83);\r
+aWE("00001",66);\r
+aWE("0001",19);\r
aWE("01",4);\r
-aWE("1",0,2,3,4,6,7,9,10,11,12,15,16,18,20,23,25,26,27,28,29,42,43,45,46,47,49,50,51,52,53,54,55,58,59,60,61,62,63,64,65,66,67,69,70,72,73,75,77,33,35,37,38,39,40,41,32,31,79,80,81,84,85);\r
-aWE("10",3,18,50,62,73,79);\r
-aWE("100",3,4,6,9,18,45,50,64,73,79);\r
-aWE("1000",3,79);\r
+aWE("1",0,2,3,4,6,7,9,10,11,12,15,16,19,21,24,26,27,28,29,30,43,44,46,47,48,51,52,53,54,55,56,57,60,61,62,63,64,65,66,67,68,69,71,72,75,74,77,79,36,38,39,40,41,42,34,33,32,81,82,83,84,88,89);\r
+aWE("10",3,19,52,64,75,81);\r
+aWE("100",3,4,6,9,19,46,52,66,75,81);\r
+aWE("1000",3,81);\r
aWE("1000000",4);\r
-aWE("100x30x100",50);\r
-aWE("105",50);\r
-aWE("11",50);\r
-aWE("12",37);\r
+aWE("100x30x100",52);\r
+aWE("105",52);\r
+aWE("11",52);\r
+aWE("12",38);\r
aWE("120",9);\r
-aWE("130",64);\r
-aWE("140",64);\r
-aWE("15",9,18,50,62,73);\r
-aWE("150",3,9,45,64,73);\r
+aWE("130",66);\r
+aWE("140",66);\r
+aWE("15",9,19,52,64,75);\r
+aWE("150",3,9,46,66,75);\r
aWE("165",11);\r
-aWE("17",62);\r
+aWE("17",64);\r
aWE("170",3);\r
-aWE("180",64,73);\r
-aWE("1840",50);\r
-aWE("1d",6,38,31,79);\r
-aWE("1e",50,64);\r
-aWE("1st",49,38,39,40,41,31);\r
-aWE("2",56,6,8,12,15,17,18,21,22,23,24,44,45,47,48,50,53,54,55,58,64,68,70,72,33,37,38,39,40,41,32,31,79,80,81,82,84);\r
-aWE("20",3,7,9,18,45,62,64,73,79);\r
-aWE("200",3,4,6,47,50,64,79);\r
-aWE("210",79);\r
+aWE("180",66,75);\r
+aWE("1840",52);\r
+aWE("1d",6,39,32,81);\r
+aWE("1e",52,66);\r
+aWE("1st",39,40,41,42,32);\r
+aWE("2",58,6,8,15,18,19,22,23,24,25,28,45,46,48,49,50,52,55,56,57,60,66,70,72,74,38,39,40,41,42,34,33,32,81,82,84,85,88);\r
+aWE("20",3,7,9,19,46,64,66,75,81);\r
+aWE("200",3,4,6,48,52,66,81);\r
+aWE("210",81);\r
aWE("218",11);\r
-aWE("220",79);\r
-aWE("23",50);\r
-aWE("25",3,6,7,62,79);\r
-aWE("250",45,50,64,73);\r
-aWE("2d",6,43,64,70,33,35,38,40,32,31,79);\r
-aWE("2nd",49,38,39,40,41,31);\r
-aWE("2st",41);\r
-aWE("3",1,2,6,8,11,15,18,20,45,47,50,54,60,61,64,70,72,38,39,40,41,32,31,79,80,82);\r
-aWE("30",3,9,11,18,50,62,64,73,79);\r
-aWE("300",45,73);\r
-aWE("300000",50);\r
+aWE("220",81);\r
+aWE("23",52);\r
+aWE("25",3,6,7,64,81);\r
+aWE("250",46,52,66,75);\r
+aWE("2d",6,44,66,72,36,39,41,34,33,32,81);\r
+aWE("2nd",39,40,41,42,32);\r
+aWE("2st",42);\r
+aWE("3",1,2,6,8,11,15,19,21,46,48,52,56,62,63,66,72,74,39,40,41,42,33,32,81,82,85);\r
+aWE("30",3,9,11,19,52,64,66,75,81);\r
+aWE("300",46,75);\r
+aWE("300000",52);\r
aWE("31",11);\r
-aWE("32",64);\r
-aWE("32000",50);\r
-aWE("35",7,62,64,79);\r
-aWE("3d",15,21,43,49,58,60,61,64,70,76,33,34,35,37,38,39,40,32,31,82);\r
-aWE("3rd",49,38,31);\r
-aWE("3st",41);\r
-aWE("4",56,45,47,50,54,70,72,38,40,32,79);\r
-aWE("40",7,9,18,45,62,64,79);\r
-aWE("41",64);\r
-aWE("45",9,62,64);\r
-aWE("5",0,3,11,18,43,45,47,50,61,64,70,72,73,35,40,79);\r
-aWE("50",3,6,9,11,18,45,50,64,73,79);\r
+aWE("32",66);\r
+aWE("32000",52);\r
+aWE("35",7,64,66,81);\r
+aWE("3d",12,15,22,44,51,60,62,63,66,72,78,35,36,38,39,40,41,34,33,32,85,87,89);\r
+aWE("3rd",39,32);\r
+aWE("3st",42);\r
+aWE("4",58,46,48,52,56,72,74,39,41,33,81);\r
+aWE("40",7,9,19,46,64,66,81);\r
+aWE("41",66);\r
+aWE("45",9,64,66);\r
+aWE("5",0,3,11,19,44,46,48,52,63,66,72,75,74,36,37,41,81);\r
+aWE("50",3,6,9,11,19,46,52,66,75,81,83);\r
aWE("500",4);\r
-aWE("55",7,62,64);\r
-aWE("6",56,50,70,37,40);\r
-aWE("60",18,64,79);\r
-aWE("65",64);\r
-aWE("7",45,50,64,70,40);\r
-aWE("70",3,9,45,62,64,73,79);\r
-aWE("8",50,70,40);\r
-aWE("80",50,64,73,79);\r
-aWE("9",45,50,70,72,40);\r
-aWE("90",72);\r
-aWE("abl",72);\r
-aWE("absolut",72);\r
-aWE("accessibl",8,28,48,75,41);\r
-aWE("accord",0,49,70,40,31);\r
-aWE("accordanc",0,16,40);\r
-aWE("achiev",70,40);\r
-aWE("ad",16,47,40,85);\r
-aWE("add",0,3,4,6,7,9,18,45,47,62,64,73,40,79);\r
-aWE("addobject",47,85);\r
-aWE("addtostudy",3,4,6,7,9,11,18,45,47,62,64,73,79);\r
-aWE("addtostudyinfath",6,64);\r
-aWE("adjustment",40);\r
-aWE("advanc",8,19,24,28,29,45,71,74,75,33,35,83);\r
-aWE("aim",38);\r
-aWE("algorithm",8,15,20,21,23,58,60,61,72,75,38,81,82,84);\r
-aWE("all_fac",64);\r
-aWE("allow",56,10,26,51,52,53,66,69,72,77,36,40,41,80,85);\r
-aWE("along",8,10,55,57,59,35,38,41,79,80);\r
-aWE("alongsid",32);\r
-aWE("already",47);\r
-aWE("angl",53,64,65,66,70,72,35,40,41,79);\r
-aWE("anoth",22,28,48,60,61,75);\r
-aWE("any",2,58,66,70,40,80);\r
-aWE("ap",49,40,31,79);\r
-aWE("append",18,79);\r
-aWE("appli",10,38);\r
-aWE("applicabl",57,41);\r
-aWE("apply",70,40);\r
-aWE("approximation",70,40);\r
-aWE("arc",1,3,18,45,64,72,73,31,79);\r
-aWE("arc1",18);\r
-aWE("arc2",18);\r
-aWE("archimed",2,4,38);\r
-aWE("area",50);\r
-aWE("argument",0,1,2,56,8,10,12,13,14,15,16,17,19,20,21,22,23,24,25,26,27,28,29,42,43,44,46,48,49,51,52,53,54,55,57,58,59,60,61,63,65,66,67,68,69,70,71,72,74,75,76,77,78,33,35,37,38,39,40,41,32,31,80,81,82,83,84,85);\r
-aWE("around",53,65,35,79);\r
-aWE("associat",34);\r
-aWE("attribut",34);\r
-aWE("automatical",56,49,31);\r
-aWE("availabl",0,56,16,72,76,77,78,34,40,85);\r
-aWE("ax",8,49,31,80);\r
-aWE("axi",18,20,23,49,51,53,55,65,66,35,37,39,41,31,79);\r
-aWE("b",21,31);\r
-aWE("background",85);\r
-aWE("bas",20,23,28,53,59,64,65,67,70,35,39,40,41,80,81);\r
-aWE("baseshap",59,35);\r
-aWE("basi",28,35);\r
-aWE("basic",1,2,3,4,15,21,25,30,48,49,50,58,60,61,72,33,37,38,31,82,84);\r
-aWE("basicproperti",50,37);\r
-aWE("bb",50);\r
-aWE("be",24);\r
-aWE("befor",64,70,72,40);\r
-aWE("begin",64);\r
-aWE("below",56);\r
-aWE("besi",21);\r
-aWE("bezi",3,21,70,40,31);\r
-aWE("block",56,6,9,5,27,50,54,63,37,38);\r
-aWE("boolean",7,17,22,44,30,68,33,37,32);\r
-aWE("both",8,20,54,34);\r
-aWE("boudari",64);\r
-aWE("bound",9,45,50,37);\r
-aWE("boundari",13,64,69,77,40);\r
-aWE("boundary",13,64,78,40);\r
-aWE("boundingbox",50,37);\r
-aWE("box",0,4,56,6,8,11,12,13,16,22,27,47,49,50,62,64,70,72,78,33,35,36,37,38,39,40,41,31,79,83,85);\r
+aWE("55",7,64,66);\r
+aWE("6",58,52,72,38,41);\r
+aWE("60",19,66,81);\r
+aWE("65",66);\r
+aWE("7",46,52,66,72,41);\r
+aWE("70",3,9,46,64,66,75,81);\r
+aWE("8",52,72,41);\r
+aWE("80",52,66,75,81);\r
+aWE("9",46,52,72,74,41);\r
+aWE("90",74);\r
+aWE("abl",74);\r
+aWE("abov",54);\r
+aWE("absolut",74);\r
+aWE("absolute",83);\r
+aWE("accessibl",8,17,29,30,50,77,42);\r
+aWE("accord",0,72,41,32);\r
+aWE("accordanc",0,16,41);\r
+aWE("achiev",72,41);\r
+aWE("ad",16,48,37,41,89);\r
+aWE("add",0,3,4,6,7,9,19,46,48,64,66,75,41,81,89);\r
+aWE("addobject",48,89);\r
+aWE("addtostudy",3,4,6,7,9,11,19,46,48,64,66,75,81);\r
+aWE("addtostudyinfath",6,66);\r
+aWE("adjustment",41);\r
+aWE("advanc",8,20,25,29,30,46,73,76,77,36,34,86);\r
+aWE("aim",39);\r
+aWE("algorithm",8,15,21,22,24,51,54,60,62,63,74,77,39,84,85,88);\r
+aWE("all_fac",66);\r
+aWE("allow",58,10,27,53,54,55,68,71,74,79,41,42,82);\r
+aWE("along",8,10,57,59,61,36,39,42,81,82);\r
+aWE("alongsid",33);\r
+aWE("already",48);\r
+aWE("angl",55,66,67,68,72,74,36,41,42,81);\r
+aWE("anoth",23,29,50,62,63,77);\r
+aWE("any",2,54,60,68,72,41,82);\r
+aWE("ap",51,41,32,81,89);\r
+aWE("appear",89);\r
+aWE("append",19,81);\r
+aWE("appli",10,39);\r
+aWE("applicabl",59,42);\r
+aWE("apply",72,41);\r
+aWE("approximation",72,41);\r
+aWE("arc",1,3,19,46,66,75,74,32,81);\r
+aWE("arc1",19);\r
+aWE("arc2",19);\r
+aWE("archimed",2,4,39);\r
+aWE("area",52);\r
+aWE("argument",0,1,2,58,8,10,13,14,15,16,18,20,21,22,23,24,25,26,27,28,29,30,43,44,45,47,49,50,51,53,54,55,56,57,59,60,61,62,63,65,67,68,69,70,71,72,73,74,76,77,78,79,80,36,38,39,40,41,42,34,33,32,82,84,85,86,88,89);\r
+aWE("around",55,67,36,81);\r
+aWE("associat",35);\r
+aWE("attribut",35);\r
+aWE("automatical",58,51,32);\r
+aWE("availabl",0,58,16,74,78,79,80,35,37,41,89);\r
+aWE("ax",8,51,32,82);\r
+aWE("axi",19,21,24,51,53,55,57,67,68,36,38,40,42,32,81);\r
+aWE("b",3,22,32);\r
+aWE("bas",21,24,29,55,61,66,67,69,72,36,40,41,42,82,84);\r
+aWE("baseshap",61,36);\r
+aWE("basi",29,36);\r
+aWE("basic",1,2,3,4,15,22,26,31,50,51,52,60,62,63,74,38,39,34,32,85,88);\r
+aWE("basicproperti",52,38);\r
+aWE("bb",52);\r
+aWE("be",25);\r
+aWE("befor",66,72,74,41);\r
+aWE("begin",66);\r
+aWE("belong",10);\r
+aWE("below",58,54);\r
+aWE("besi",22);\r
+aWE("bezi",3,22,72,41,32);\r
+aWE("big",54);\r
+aWE("block",58,6,9,5,28,31,52,56,65,38,39);\r
+aWE("boolean",7,18,23,45,31,70,38,34,33);\r
+aWE("both",8,21,56,35);\r
+aWE("boudari",66);\r
+aWE("bound",9,46,52,38);\r
+aWE("boundari",13,66,71,79,41);\r
+aWE("boundary",13,66,80,41);\r
+aWE("boundingbox",52,38);\r
+aWE("box",0,4,58,6,8,11,12,13,16,17,23,28,48,52,64,66,72,74,80,36,37,38,39,40,41,42,34,32,81,83,86,89);\r
aWE("box_tr1",6);\r
aWE("box_tr2",6);\r
-aWE("box1",50,62,64);\r
-aWE("box2",50,62,64);\r
-aWE("box3",62);\r
-aWE("break",63,38);\r
-aWE("brep",30,64,36);\r
-aWE("brows",10,42,49,34,36,31,83);\r
-aWE("bsplin",70,40);\r
-aWE("bsplinerestriction",70,40);\r
-aWE("build",56,6,9,5,19,24,29,30,58,63,71,74,33,38,83);\r
-aWE("button",49,69,77,40,31,83);\r
-aWE("bypas",56);\r
-aWE("c",45,73);\r
-aWE("cad",30);\r
-aWE("camera",31,84);\r
-aWE("cas",56,49,54,70,78,40,31);\r
-aWE("cent",8,15,25,50,53,72,75,37,39,41,31);\r
-aWE("center",26);\r
-aWE("centerofscal",67,41);\r
-aWE("centr",20,81);\r
-aWE("central",20,23,67,39);\r
+aWE("box1",52,64,66);\r
+aWE("box2",52,64,66);\r
+aWE("box3",64);\r
+aWE("break",65,39);\r
+aWE("brep",31,66,37);\r
+aWE("brows",43,51,35,37,32,86);\r
+aWE("bsplin",72,41);\r
+aWE("bsplinerestriction",72,41);\r
+aWE("build",58,6,9,5,20,25,30,31,60,65,73,76,39,34,86);\r
+aWE("button",51,71,79,41,32,86,89);\r
+aWE("bypas",58);\r
+aWE("c",46,75);\r
+aWE("cad",31);\r
+aWE("camera",32,88);\r
+aWE("cas",58,51,56,72,80,41,32);\r
+aWE("catia",37);\r
+aWE("cent",8,15,21,26,52,54,55,74,77,38,40,42,32,84);\r
+aWE("center",27);\r
+aWE("centerofscal",69,42);\r
+aWE("central",21,24,69,40);\r
+aWE("certain",89);\r
aWE("chain",6);\r
-aWE("chamf",10,38,79);\r
-aWE("chamfer_",79);\r
-aWE("chamfer_all",79);\r
-aWE("chamfer_f",79);\r
-aWE("chamfer_f1",79);\r
-aWE("chang",11,12);\r
-aWE("check",6,13,14,27,29,50,64,78,37,38,40);\r
+aWE("chamf",10,39,81);\r
+aWE("chamfer_",81);\r
+aWE("chamfer_all",81);\r
+aWE("chamfer_f",81);\r
+aWE("chamfer_f1",81);\r
+aWE("chang",11,12,17,49,83,87);\r
+aWE("check",6,13,14,28,30,52,66,80,38,39,41);\r
aWE("check_box",6);\r
aWE("checkandimprov",6);\r
-aWE("checkbox",51,52,53,66,77,40,41,80);\r
-aWE("checkcompoundofblock",50,37);\r
-aWE("checkshap",50,64,37);\r
-aWE("choic",21);\r
-aWE("choos",27,34,36,38);\r
-aWE("circl",3,15,72,31,82);\r
+aWE("checkbox",53,54,55,68,79,41,42,82);\r
+aWE("checkcompoundofblock",52,38);\r
+aWE("checkshap",52,66,38);\r
+aWE("choic",22);\r
+aWE("choos",28,51,35,37,39);\r
+aWE("circl",3,15,74,32);\r
aWE("circle1",3);\r
aWE("circle2",3);\r
-aWE("click",12,34,36);\r
-aWE("clos",13,16,64,70,74,33,40);\r
-aWE("closecontour",16,64,40);\r
-aWE("closedwir",13,64,40);\r
-aWE("closur",16,40);\r
-aWE("cm",50);\r
-aWE("coincident",46,40);\r
-aWE("collinear",20,23);\r
-aWE("color",11,12);\r
-aWE("command",0,1,2,56,8,10,12,13,14,15,16,17,19,20,21,23,24,25,26,27,28,29,42,43,44,46,48,49,51,52,53,54,55,57,58,59,60,61,63,65,66,67,68,69,70,71,72,74,75,76,77,78,33,34,35,37,38,39,40,41,32,31,80,81,82,83,85);\r
-aWE("common",7,16,17,40,32,79);\r
-aWE("complex",18,28,43,30,59,65,35,38,32);\r
-aWE("component",3,18,43,49,72,41,31,80);\r
-aWE("compos",56,37);\r
-aWE("compound",56,6,17,18,19,22,26,27,44,45,46,50,53,55,57,64,68,33,37,38,40,41);\r
-aWE("compsolid",26,28,59,65,35);\r
-aWE("comput",2,37,38);\r
-aWE("con",20,62,64,39);\r
-aWE("concern",37);\r
-aWE("condition",37);\r
-aWE("cone1",62);\r
-aWE("cone2",62);\r
-aWE("confirm",36);\r
-aWE("conical",70,40);\r
-aWE("connect",10,29,71,33,37,38,83);\r
-aWE("connection",37);\r
-aWE("consequent",79);\r
-aWE("consider",16,46,37,40);\r
-aWE("consol",37);\r
-aWE("constraint",56);\r
-aWE("construct",56,74,33,39);\r
-aWE("construction",21,30,59,32);\r
-aWE("constructor",49,38,39,40,41,31);\r
-aWE("contain",0,6,14,16,63,38,40);\r
-aWE("content",47,36);\r
-aWE("continuiti",70,40);\r
-aWE("continuity",70,40);\r
-aWE("continuity2d",70,40);\r
-aWE("continuity3d",70,40);\r
-aWE("contour",16,64,40);\r
-aWE("conversion",70,40);\r
-aWE("coord",50);\r
-aWE("coordinat",8,20,23,26,49,50,52,61,72,75,37,39,41,31,79,80,81,82,84);\r
-aWE("copy",51,52,66,41,80);\r
-aWE("corner",8,9,39);\r
-aWE("correction",70,40);\r
-aWE("correspond",2,13,21,24,27,49,33,35,38,39,40,31);\r
-aWE("count",64);\r
-aWE("coupl",72);\r
-aWE("cover",32);\r
-aWE("creat",1,2,3,4,56,6,7,8,9,10,15,16,18,19,20,21,23,24,25,26,28,29,42,43,44,45,47,48,49,50,51,52,53,59,60,61,62,64,65,66,67,68,71,72,73,74,75,33,34,35,37,38,39,40,41,31,79,80,81,82,83,84,85);\r
-aWE("createanddisplaygo",3,4,6,7,9,11,18,45,47,62,64,73,79);\r
-aWE("creategroup",47,85);\r
-aWE("creation",1,3,8,15,16,18,19,20,21,23,24,25,28,29,43,45,47,30,48,59,60,61,62,64,65,71,74,75,35,38,40,81,82,83,85);\r
-aWE("cs1",79);\r
-aWE("cs2",79);\r
-aWE("current",8,28,48,72,75,34);\r
-aWE("curv",3,21,43,70,72,35,40,31);\r
-aWE("curve2dmod",70,40);\r
-aWE("curve3dmod",70,40);\r
-aWE("curvecontinuity",70,40);\r
-aWE("cut",7,17,22,58,64,70,38,40,32);\r
-aWE("cut_without_f_2",64);\r
-aWE("cylind",7,20,23,62,64,39,79);\r
-aWE("cylinder",18);\r
-aWE("cylindrical",70,40);\r
-aWE("d",10,64);\r
-aWE("d1",10,38,79);\r
-aWE("d2",10,38,79);\r
-aWE("data",37);\r
-aWE("default",61,72,85);\r
-aWE("defin",1,8,10,15,20,21,23,25,26,27,28,42,43,48,53,54,55,59,60,61,65,66,67,70,72,75,38,39,40,41,31,80,81,82,84);\r
-aWE("definit",77,37,40);\r
-aWE("definition",59,70,35,40);\r
-aWE("deflection",2,38);\r
-aWE("degenerat",37);\r
-aWE("degre",43,65,70,72,35,40);\r
-aWE("delet",58,38);\r
-aWE("density",2,38);\r
-aWE("depend",54,38);\r
-aWE("descr",50);\r
-aWE("description",56,12,50,72,73,33,34,35,37,38,39,40,41,31,85);\r
-aWE("desir",70,40);\r
-aWE("destin",30);\r
-aWE("destination",72);\r
-aWE("detect",13,69,77,40);\r
-aWE("detection",70,40);\r
-aWE("diagonal",39);\r
-aWE("dialog",0,56,12,13,16,22,49,70,72,78,33,35,36,37,38,39,40,41,31,83,85);\r
-aWE("dif",34);\r
-aWE("differencelist",47);\r
-aWE("different",12,51,34,37,39);\r
-aWE("dimension",8,10,23,28,53,35,37,38,39);\r
-aWE("dimention",53);\r
-aWE("dir",53,55,41);\r
-aWE("dir1",55,41);\r
-aWE("dir2",55,41);\r
-aWE("direction",2,15,20,25,28,49,53,54,55,60,65,66,72,35,38,39,41,31,81);\r
-aWE("dirface1v",54,38);\r
-aWE("dirfaceid1",54,38);\r
-aWE("dirfaceid1u",54,38);\r
-aWE("dirfaceid1v",54,38);\r
-aWE("dirfaceid2",54,38);\r
-aWE("dirfaceid2u",54,38);\r
-aWE("dirfaceid2v",54,38);\r
-aWE("display",3,4,6,7,9,11,12,18,45,47,49,62,64,69,73,77,34,36,37,40,31,79);\r
-aWE("displayall",34);\r
-aWE("displayon",34);\r
-aWE("distanc",46,50,57,37,40,41);\r
-aWE("divid",0,64,70,40);\r
-aWE("divideedg",0,64,40);\r
-aWE("don",8,16,28,55,75,40,41);\r
-aWE("doubl",12,53,54,55,72);\r
-aWE("dropsmalledg",70,40);\r
-aWE("dx",8,50,72,41,80,82);\r
-aWE("dy",8,50,72,41,80,82);\r
-aWE("dz",8,50,41,80,82);\r
-aWE("e",34);\r
-aWE("e1",56);\r
-aWE("e2",56);\r
-aWE("e3",56);\r
-aWE("e4",56);\r
-aWE("easi",85);\r
-aWE("edg",0,1,56,8,9,10,13,15,16,18,21,24,25,26,28,42,43,45,48,50,59,61,63,64,65,70,71,72,33,35,37,38,40,31,79,82,83);\r
-aWE("edge_ind",64);\r
-aWE("edge_point",64);\r
+aWE("click",12,17,35,37,87,89);\r
+aWE("clos",13,16,66,72,76,41,34,89);\r
+aWE("closecontour",16,66,41);\r
+aWE("closedwir",13,66,41);\r
+aWE("closur",16,41);\r
+aWE("cm",52);\r
+aWE("coincid",54);\r
+aWE("coincident",47,41);\r
+aWE("collinear",21,24);\r
+aWE("color",11,12,17,87);\r
+aWE("command",0,1,2,58,8,10,12,13,14,15,16,17,18,20,21,22,24,25,26,27,28,29,30,43,44,45,47,50,51,53,54,55,56,57,59,60,61,62,63,65,67,68,69,70,71,72,73,74,76,77,78,79,80,35,36,38,39,40,41,42,34,33,32,82,83,84,85,86,87,89);\r
+aWE("common",7,10,16,18,41,33,81);\r
+aWE("complex",19,29,44,31,61,67,36,39,33);\r
+aWE("component",3,19,44,74,42,32,82);\r
+aWE("compos",58,38);\r
+aWE("compound",58,6,18,19,20,23,27,28,45,46,47,52,55,57,59,66,70,38,39,41,42,34);\r
+aWE("compsolid",27,29,61,67,36);\r
+aWE("comput",2,38,39);\r
+aWE("con",21,64,66,40);\r
+aWE("concern",38);\r
+aWE("condition",38);\r
+aWE("cone1",64);\r
+aWE("cone2",64);\r
+aWE("confirm",37,89);\r
+aWE("conical",72,41);\r
+aWE("connect",10,30,73,38,39,34,86);\r
+aWE("connection",38);\r
+aWE("consequent",81);\r
+aWE("consider",16,47,38,41);\r
+aWE("consol",38);\r
+aWE("constraint",58);\r
+aWE("construct",58,76,40,34);\r
+aWE("construction",22,31,61,33);\r
+aWE("constructor",39,40,41,42,32);\r
+aWE("contain",0,6,14,16,65,39,41);\r
+aWE("content",48,37);\r
+aWE("continuiti",72,41);\r
+aWE("continuity",72,41);\r
+aWE("continuity2d",72,41);\r
+aWE("continuity3d",72,41);\r
+aWE("contour",16,66,41);\r
+aWE("conversion",72,41);\r
+aWE("coord",52);\r
+aWE("coordinat",8,21,24,27,51,52,54,63,74,77,38,40,42,32,81,82,84,85,88);\r
+aWE("copy",53,54,68,42,82);\r
+aWE("corner",8,9,40);\r
+aWE("correction",72,41);\r
+aWE("correspond",2,13,22,25,28,36,39,40,41,34,32);\r
+aWE("count",66);\r
+aWE("coupl",74);\r
+aWE("cover",33);\r
+aWE("creat",1,2,3,4,58,6,7,8,9,10,15,16,19,20,21,22,24,25,26,27,29,30,43,44,45,46,48,50,51,52,53,54,55,61,62,63,64,66,67,68,69,70,73,75,74,76,77,35,36,38,39,40,41,42,34,32,81,82,84,85,86,88,89);\r
+aWE("createanddisplaygo",3,4,6,7,9,11,19,46,48,64,66,75,81);\r
+aWE("creategroup",48,89);\r
+aWE("creation",1,3,8,15,16,19,20,21,22,24,25,26,29,30,44,46,48,31,50,61,62,63,64,66,67,73,76,77,36,39,41,84,85,86,89);\r
+aWE("cs",51);\r
+aWE("cs1",81);\r
+aWE("cs2",81);\r
+aWE("cub",54);\r
+aWE("current",8,29,50,74,77,35);\r
+aWE("curv",3,22,44,72,74,36,41,32);\r
+aWE("curve2dmod",72,41);\r
+aWE("curve3dmod",72,41);\r
+aWE("curvecontinuity",72,41);\r
+aWE("cut",7,18,23,60,66,72,39,41,33);\r
+aWE("cut_without_f_2",66);\r
+aWE("cylind",7,21,24,64,66,40,81);\r
+aWE("cylinder",19);\r
+aWE("cylindrical",72,41);\r
+aWE("d",10,66);\r
+aWE("d1",10,39,81);\r
+aWE("d2",10,39,81);\r
+aWE("data",38);\r
+aWE("data_dir",66);\r
+aWE("default",63,74,89);\r
+aWE("defin",1,8,10,15,21,22,24,26,27,28,29,43,44,50,51,55,56,57,61,62,63,67,68,69,72,74,77,37,39,40,41,42,32,82,84,85,88,89);\r
+aWE("definit",79,38,41);\r
+aWE("definition",61,72,36,41);\r
+aWE("deflection",2,39);\r
+aWE("degenerat",38);\r
+aWE("degre",44,67,72,74,36,41);\r
+aWE("delet",60,39,89);\r
+aWE("density",2,39);\r
+aWE("depend",56,39);\r
+aWE("descr",52);\r
+aWE("description",58,12,52,75,74,35,36,38,39,40,41,42,34,32);\r
+aWE("design",89);\r
+aWE("desir",72,41);\r
+aWE("destin",31);\r
+aWE("destination",74);\r
+aWE("detect",13,71,79,41);\r
+aWE("detection",72,41);\r
+aWE("diagonal",40);\r
+aWE("dialog",0,58,12,13,16,23,72,74,80,36,37,38,39,40,41,42,34,32,83,86,89);\r
+aWE("dif",35);\r
+aWE("differencelist",48);\r
+aWE("different",12,53,35,38,40);\r
+aWE("dimension",8,10,24,29,55,36,38,39,40);\r
+aWE("dimention",55);\r
+aWE("dir",55,57,42);\r
+aWE("dir1",57,42);\r
+aWE("dir2",57,42);\r
+aWE("direction",2,15,21,26,29,51,55,56,57,67,68,74,36,39,40,42,32,84);\r
+aWE("dirface1v",56,39);\r
+aWE("dirfaceid1",56,39);\r
+aWE("dirfaceid1u",56,39);\r
+aWE("dirfaceid1v",56,39);\r
+aWE("dirfaceid2",56,39);\r
+aWE("dirfaceid2u",56,39);\r
+aWE("dirfaceid2v",56,39);\r
+aWE("display",3,4,6,7,9,11,12,17,19,46,48,49,64,66,71,75,79,35,37,38,41,32,81,83,87,89);\r
+aWE("displayall",35);\r
+aWE("displayon",35);\r
+aWE("distanc",47,52,59,38,41,42);\r
+aWE("divid",0,66,72,41);\r
+aWE("divideedg",0,66,41);\r
+aWE("do",54);\r
+aWE("doesn",48);\r
+aWE("don",8,16,29,57,77,41,42);\r
+aWE("doubl",12,55,56,57,74,83);\r
+aWE("down",89);\r
+aWE("dropsmalledg",72,41);\r
+aWE("dx",8,52,74,42,82,85);\r
+aWE("dy",8,52,74,42,82,85);\r
+aWE("dz",8,52,42,82,85);\r
+aWE("e",35);\r
+aWE("e1",58);\r
+aWE("e2",58);\r
+aWE("e3",58);\r
+aWE("e4",58);\r
+aWE("easi",89);\r
+aWE("edg",0,1,58,8,9,10,13,15,16,19,22,25,26,27,29,43,44,46,50,52,61,63,65,66,67,72,73,74,36,38,39,41,34,32,81,85,86,87);\r
+aWE("edge_ind",66);\r
+aWE("edge_point",66);\r
aWE("edge1",9);\r
aWE("edge2",9);\r
aWE("edge3",9);\r
aWE("edge4",9);\r
-aWE("edgeid",0,40);\r
-aWE("edit",85);\r
-aWE("egdemaxtol",37);\r
-aWE("egdemintol",37);\r
-aWE("eith",56);\r
-aWE("element",16,29,72,33,34,35,37,39,40,32,31);\r
-aWE("elementary",56);\r
-aWE("ellips",3,25,31);\r
-aWE("els",50,64);\r
-aWE("empty",77,78,40);\r
-aWE("encounter",37);\r
-aWE("end",1,16,28,52,64,72,40,41,31,79,80,82);\r
-aWE("ent",49,36,31);\r
-aWE("entir",37);\r
-aWE("entity",1,56,8,15,19,20,21,23,24,25,26,28,29,43,48,49,59,60,61,65,71,72,74,75,33,35,39,31,81,82,83,84,85);\r
-aWE("equal",20,72);\r
-aWE("eras",34);\r
-aWE("eraseall",34);\r
-aWE("eraseon",34);\r
-aWE("error",13,47,37,40);\r
-aWE("etc",26,70,33,40);\r
-aWE("exampl",0,1,2,56,8,10,12,13,14,15,16,17,19,20,21,22,23,24,25,27,28,29,42,43,44,46,48,49,51,52,53,54,55,57,58,59,60,61,63,64,65,66,67,68,69,70,71,72,74,75,76,77,78,33,35,38,39,40,41,32,31,80,81,82,83,85);\r
-aWE("except",78,40);\r
-aWE("exist",60,72,85);\r
-aWE("explod",6,5,26,27,45,33,38);\r
-aWE("export",30,36);\r
-aWE("exportation",36);\r
-aWE("extra",37);\r
-aWE("extract",27,38);\r
-aWE("extrud",59,65,35);\r
-aWE("extrusion",28,35);\r
-aWE("f",45,73);\r
-aWE("f_2",64);\r
-aWE("f_ind_1",79);\r
-aWE("f_ind_2",79);\r
-aWE("f1",56);\r
-aWE("f1_id",64);\r
-aWE("f2",56);\r
-aWE("f3",56);\r
-aWE("f4",56);\r
-aWE("f5",56);\r
-aWE("f6",56);\r
-aWE("fac",3,56,9,10,14,16,18,26,27,28,29,42,43,45,46,47,50,54,57,58,59,60,64,65,70,71,72,73,76,78,33,35,37,38,40,41,31,79,84);\r
-aWE("face_nam",64);\r
-aWE("face_rot",64);\r
-aWE("face1",10,18,45,38);\r
-aWE("face2",10,18,45,38);\r
-aWE("face3",45);\r
-aWE("faceid",47);\r
-aWE("facemaxtol",37);\r
-aWE("facemintol",37);\r
-aWE("factor",67,41,79);\r
-aWE("fail",50,64);\r
-aWE("fals",13,40);\r
-aWE("field",49,31);\r
-aWE("fil",18,43,49,35,36,31);\r
-aWE("fill",77,35,40);\r
-aWE("fillet",10,42,38,79);\r
-aWE("filletall",79);\r
-aWE("final",51,60,61,80,84);\r
-aWE("first",8,15,20,23,24,51,54,55,58,60,61,73,75,33,38,39,41,32,31,80,81,82,84);\r
-aWE("fix",70,40);\r
-aWE("fixfacesiz",70,40);\r
-aWE("fixshap",64,70,40);\r
-aWE("flag",37);\r
-aWE("flight_solid",64);\r
-aWE("follow",72,73,33,34,37,32);\r
-aWE("format",30,36);\r
-aWE("four",56,9);\r
-aWE("fre",13,14,64,69,77,40);\r
-aWE("function",30,33,79);\r
-aWE("functionaliti",56);\r
-aWE("functionality",72,85);\r
-aWE("fus",7,11,44,32);\r
+aWE("edgeid",0,41);\r
+aWE("edit",89);\r
+aWE("egdemaxtol",38);\r
+aWE("egdemintol",38);\r
+aWE("eith",58);\r
+aWE("element",16,30,74,35,36,38,40,41,34,33,32,89);\r
+aWE("elementary",58);\r
+aWE("ellips",3,26,32);\r
+aWE("els",52,66);\r
+aWE("empty",79,80,41);\r
+aWE("encounter",38);\r
+aWE("end",1,16,29,54,66,74,41,42,32,81,82,85);\r
+aWE("ent",32,89);\r
+aWE("entir",38);\r
+aWE("entity",1,58,8,15,20,21,22,24,25,26,27,29,30,44,50,51,61,62,63,67,73,74,76,77,36,40,34,32,84,85,86,88,89);\r
+aWE("equal",21,74);\r
+aWE("eras",35);\r
+aWE("eraseall",35);\r
+aWE("eraseon",35);\r
+aWE("error",13,48,38,41);\r
+aWE("etc",27,72,41,34);\r
+aWE("exampl",0,1,2,58,8,10,12,13,14,15,16,17,18,20,21,22,23,24,25,26,28,29,30,43,44,45,47,49,50,51,53,54,55,56,57,59,60,61,62,63,65,66,67,68,69,70,71,72,73,74,76,77,78,79,80,36,37,39,40,41,42,34,33,32,82,83,84,85,86,87,89);\r
+aWE("except",80,41);\r
+aWE("exist",62,74,89);\r
+aWE("expand",37);\r
+aWE("explod",6,5,27,28,46,39,34);\r
+aWE("export",31,37);\r
+aWE("exportation",37);\r
+aWE("extra",38);\r
+aWE("extract",28,39);\r
+aWE("extrud",61,67,36);\r
+aWE("extrusion",29,36);\r
+aWE("f",46,75);\r
+aWE("f_2",66);\r
+aWE("f_ind_1",81);\r
+aWE("f_ind_2",81);\r
+aWE("f1",58);\r
+aWE("f1_id",66);\r
+aWE("f2",58);\r
+aWE("f3",58);\r
+aWE("f4",58);\r
+aWE("f5",58);\r
+aWE("f6",58);\r
+aWE("fac",3,58,9,10,14,16,19,27,28,29,30,43,44,46,47,48,52,56,59,60,61,62,66,67,72,73,75,74,78,80,36,38,39,41,42,34,32,81,88);\r
+aWE("face_nam",66);\r
+aWE("face_rot",66);\r
+aWE("face1",10,19,46,39);\r
+aWE("face2",10,19,46,39);\r
+aWE("face3",46);\r
+aWE("faceid",48);\r
+aWE("facemaxtol",38);\r
+aWE("facemintol",38);\r
+aWE("factor",69,42,81);\r
+aWE("fail",52,66);\r
+aWE("fals",13,41);\r
+aWE("field",32);\r
+aWE("fil",17,19,44,51,36,37,32,87);\r
+aWE("fill",79,36,41);\r
+aWE("fillet",10,43,39,81);\r
+aWE("filletall",81);\r
+aWE("final",53,62,63,82,88,89);\r
+aWE("first",8,15,21,24,25,51,53,54,56,57,60,62,63,75,77,39,40,42,34,33,32,82,84,85,88);\r
+aWE("fix",72,41);\r
+aWE("fixfacesiz",72,41);\r
+aWE("fixshap",66,72,41);\r
+aWE("flag",38);\r
+aWE("flight_solid",66);\r
+aWE("follow",75,74,35,38,34,33,83,89);\r
+aWE("format",31,37);\r
+aWE("four",58,9);\r
+aWE("fre",13,14,66,71,79,41);\r
+aWE("function",31,34,81);\r
+aWE("functionaliti",58);\r
+aWE("functionality",74,89);\r
+aWE("fus",7,11,45,33);\r
aWE("fuse_id",11);\r
-aWE("gap",16,40);\r
-aWE("general",56,32);\r
-aWE("generat",28,43,59,35);\r
-aWE("generation",28,43,30,59,65,35);\r
-aWE("geom",3,4,6,7,9,11,12,18,45,47,30,50,62,63,64,73,33,34,35,36,37,38,39,41,32,31,79);\r
-aWE("geom_object",0,1,2,56,8,10,13,14,15,16,17,19,20,21,22,23,24,25,26,27,28,29,42,43,44,46,48,51,52,53,54,55,57,58,59,60,61,63,65,66,67,68,69,70,71,72,74,75,76,77,78,33,35,37,38,39,40,41,31,80,81,82,83,85);\r
-aWE("geometric",1,56,15,19,21,24,25,28,29,43,48,59,60,61,65,71,74,82,83);\r
-aWE("geometrical",3,12,17,45,30,53,33,34,35,36,37,38,39,40,41,32,31,85);\r
-aWE("geometry",64,70,40);\r
-aWE("geompy",0,1,2,3,4,56,6,7,8,9,10,11,13,15,16,17,18,19,20,21,23,24,25,26,27,28,29,42,43,44,45,46,47,48,49,50,51,52,53,54,55,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,33,35,37,38,39,40,41,32,31,79,80,81,82,83,85);\r
-aWE("get",6,50,64,33,37,79);\r
+aWE("gap",16,41);\r
+aWE("general",58,33);\r
+aWE("generat",29,44,61,36);\r
+aWE("generation",29,44,31,61,67,36);\r
+aWE("geom",3,4,6,7,9,11,12,19,46,48,31,52,64,65,66,75,35,36,37,38,39,40,42,34,33,32,81);\r
+aWE("geom_object",0,1,2,58,8,10,13,14,15,16,18,20,21,22,23,24,25,26,27,28,29,30,43,44,45,47,50,53,54,55,56,57,59,60,61,62,63,65,67,68,69,70,71,72,73,74,76,77,78,79,80,36,38,39,40,41,42,34,32,82,84,85,86,89);\r
+aWE("geometric",1,58,15,20,22,25,26,29,30,44,50,61,62,63,67,73,76,85,86);\r
+aWE("geometrical",3,12,18,46,31,55,35,36,37,38,39,40,41,42,34,33,32,87,89);\r
+aWE("geometry",66,72,41);\r
+aWE("geompy",0,1,2,3,4,58,6,7,8,9,10,11,13,15,16,18,19,20,21,22,24,25,26,27,28,29,30,43,44,45,46,47,48,50,51,52,53,54,55,56,57,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,75,74,76,77,78,79,80,36,38,39,40,41,42,34,33,32,81,82,84,85,86,89);\r
+aWE("get",6,52,66,38,34,81);\r
+aWE("getenv",66);\r
aWE("getfacenearpoint",6);\r
-aWE("getfreeboundary",13,64,40);\r
-aWE("getfreefacesid",14,64,40);\r
-aWE("getobjectid",85);\r
-aWE("getsubshap",64);\r
-aWE("getsubshapeid",47,64,33,79);\r
+aWE("getfreeboundary",13,66,41);\r
+aWE("getfreefacesid",14,66,41);\r
+aWE("getobjectid",89);\r
+aWE("getsubshap",66);\r
+aWE("getsubshapeid",48,66,34,81);\r
aWE("getsubshapeindex",6);\r
-aWE("gg",3,4,6,7,9,11,12,18,45,47,50,62,64,73,79);\r
-aWE("giv",15,25,29,60,31);\r
-aWE("given",3,4,6,9,10,14,18,23,26,27,29,42,45,46,47,48,53,57,61,64,73,33,37,38,40,41,31,79,81);\r
-aWE("glu",6,46,50,58,64,37,38,40);\r
-aWE("graphic",34);\r
-aWE("gravity",26,50,53,37);\r
-aWE("group",6,47,63,38,85);\r
-aWE("group1",47);\r
-aWE("gui",38);\r
-aWE("half",31);\r
-aWE("handl",85);\r
-aWE("hav",70,71,33,40);\r
-aWE("height",7,20,23,28,64,35,39,79);\r
+aWE("gg",3,4,6,7,9,11,12,17,19,46,48,52,64,66,75,81,83,87);\r
+aWE("giv",15,26,62,37,32);\r
+aWE("given",3,6,9,10,14,19,24,27,28,30,43,46,47,50,55,59,63,66,75,38,39,41,42,34,32,81,84);\r
+aWE("global",51,54);\r
+aWE("glu",6,47,52,60,66,38,39,41);\r
+aWE("graphic",35);\r
+aWE("gravity",27,52,55,38);\r
+aWE("group",6,48,31,65,39,89);\r
+aWE("group_n",89);\r
+aWE("group1",48);\r
+aWE("gui",39);\r
+aWE("half",32);\r
+aWE("handl",89);\r
+aWE("hav",72,73,41,34);\r
+aWE("height",7,21,24,29,66,36,40,81);\r
+aWE("her",89);\r
aWE("hexagonal",9);\r
-aWE("hexahedral",56,9,54,38);\r
-aWE("hexahedron",56);\r
-aWE("hid",34);\r
-aWE("highlight",13,37,40);\r
-aWE("hol",64,77,40);\r
-aWE("hold",83);\r
-aWE("how",37);\r
-aWE("i",18,47,64,34);\r
-aWE("i11",37);\r
-aWE("i12",37);\r
-aWE("i13",37);\r
-aWE("i21",37);\r
-aWE("i22",37);\r
-aWE("i23",37);\r
-aWE("i31",37);\r
-aWE("i32",37);\r
-aWE("i33",37);\r
-aWE("id",0,12,14,16,26,54,76,77,78,33,34,38,40,85);\r
+aWE("hexahedral",58,9,56,39);\r
+aWE("hexahedron",58);\r
+aWE("hid",35);\r
+aWE("highlight",13,38,41);\r
+aWE("hol",66,79,41);\r
+aWE("hold",86);\r
+aWE("how",38);\r
+aWE("i",19,48,66,35);\r
+aWE("i11",38);\r
+aWE("i12",38);\r
+aWE("i13",38);\r
+aWE("i21",38);\r
+aWE("i22",38);\r
+aWE("i23",38);\r
+aWE("i31",38);\r
+aWE("i32",38);\r
+aWE("i33",38);\r
+aWE("id",0,12,14,16,17,27,56,66,78,79,80,35,39,41,34,81,83,87,89);\r
aWE("id_arc",3);\r
aWE("id_archimed",4);\r
-aWE("id_axi",79);\r
+aWE("id_axi",81);\r
aWE("id_bezi",3);\r
-aWE("id_box",4,6,64,79);\r
+aWE("id_box",4,6,66,81);\r
aWE("id_box_tr1",6);\r
aWE("id_box_tr2",6);\r
-aWE("id_box1",62);\r
-aWE("id_box2",62);\r
-aWE("id_box3",62);\r
-aWE("id_chamfer_",79);\r
-aWE("id_chamfer_all",79);\r
-aWE("id_chamfer_f",79);\r
-aWE("id_chamfer_f1",79);\r
+aWE("id_box1",64,66);\r
+aWE("id_box2",64,66);\r
+aWE("id_box3",64);\r
+aWE("id_chamfer_",81);\r
+aWE("id_chamfer_all",81);\r
+aWE("id_chamfer_f",81);\r
+aWE("id_chamfer_f1",81);\r
aWE("id_circle1",3);\r
aWE("id_circle2",3);\r
aWE("id_common",7);\r
-aWE("id_compound",6,18);\r
-aWE("id_cone1",62);\r
-aWE("id_cone2",62);\r
-aWE("id_cs1",79);\r
-aWE("id_cs2",79);\r
-aWE("id_cut",7,64);\r
-aWE("id_cut_without_f_2",64);\r
-aWE("id_cylind",7,79);\r
-aWE("id_divid",64);\r
-aWE("id_edg",18,45,64);\r
+aWE("id_compound",6,19,66);\r
+aWE("id_cone1",64);\r
+aWE("id_cone2",64);\r
+aWE("id_cs1",81);\r
+aWE("id_cs2",81);\r
+aWE("id_cut",7,66);\r
+aWE("id_cut_without_f_2",66);\r
+aWE("id_cylind",7,81);\r
+aWE("id_divid",66);\r
+aWE("id_edg",19,46,66);\r
aWE("id_edge1",9);\r
aWE("id_edge2",9);\r
aWE("id_edge3",9);\r
aWE("id_edge4",9);\r
aWE("id_ellips",3);\r
-aWE("id_fac",3,64,73);\r
-aWE("id_face_rot",64);\r
-aWE("id_face1",18,45);\r
-aWE("id_face2",18,45);\r
-aWE("id_face3",45);\r
-aWE("id_fil",18);\r
-aWE("id_fillet",79);\r
-aWE("id_filletall",79);\r
+aWE("id_fac",3,66,75);\r
+aWE("id_face_rot",66);\r
+aWE("id_face1",19,46);\r
+aWE("id_face2",19,46);\r
+aWE("id_face3",46);\r
+aWE("id_fil",19);\r
+aWE("id_fillet",81);\r
+aWE("id_filletall",81);\r
aWE("id_fus",7);\r
-aWE("id_group1",47);\r
-aWE("id_importbrep",64);\r
+aWE("id_glu",66);\r
+aWE("id_group1",48);\r
+aWE("id_importbrep",66);\r
aWE("id_interpol",3);\r
aWE("id_line1",3);\r
aWE("id_line2",3);\r
aWE("id_make_block_explod",6);\r
-aWE("id_mirror1",79);\r
-aWE("id_mirror2",79);\r
-aWE("id_mirror3",79);\r
-aWE("id_offset",79);\r
-aWE("id_p",64);\r
+aWE("id_mirror1",81);\r
+aWE("id_mirror2",81);\r
+aWE("id_mirror3",81);\r
+aWE("id_offset",81);\r
+aWE("id_p",66);\r
aWE("id_p_on_arc",3);\r
aWE("id_p0",3);\r
aWE("id_p1",3,9);\r
aWE("id_p100",3);\r
aWE("id_p2",3,9);\r
aWE("id_p3",3,9);\r
-aWE("id_p4",3,9,79);\r
+aWE("id_p4",3,9,81);\r
aWE("id_partition1",4);\r
aWE("id_partition2",4);\r
aWE("id_partition3",4);\r
-aWE("id_pip",18);\r
-aWE("id_plan",4,79);\r
+aWE("id_pip",19);\r
+aWE("id_plan",4,81);\r
aWE("id_plane1",3);\r
aWE("id_plane2",3);\r
aWE("id_plane3",3);\r
aWE("id_polylin",3);\r
-aWE("id_position",79);\r
-aWE("id_prism",79);\r
-aWE("id_prism1",18);\r
-aWE("id_prism2",18);\r
+aWE("id_position",81);\r
+aWE("id_prism",81);\r
+aWE("id_prism1",19);\r
+aWE("id_prism2",19);\r
aWE("id_px",3);\r
aWE("id_py",3);\r
aWE("id_pz",3);\r
aWE("id_qface1",9);\r
aWE("id_qface2",9);\r
aWE("id_qface3",9);\r
-aWE("id_result",64);\r
-aWE("id_revolution",18);\r
-aWE("id_rot1d",79);\r
-aWE("id_rot2d",79);\r
-aWE("id_rotation",79);\r
-aWE("id_scal",79);\r
+aWE("id_result",66);\r
+aWE("id_revolution",19);\r
+aWE("id_rot1d",81);\r
+aWE("id_rot2d",81);\r
+aWE("id_rotation",81);\r
+aWE("id_scal",81);\r
aWE("id_section",7);\r
-aWE("id_sew",64);\r
-aWE("id_shap",64);\r
-aWE("id_shell",45);\r
-aWE("id_sketcher1",73);\r
-aWE("id_sketcher2",73);\r
-aWE("id_solid",45);\r
+aWE("id_sew",66);\r
+aWE("id_shap",66);\r
+aWE("id_shell",46);\r
+aWE("id_sketcher1",75);\r
+aWE("id_sketcher2",75);\r
+aWE("id_solid",46);\r
aWE("id_solid1",9);\r
aWE("id_solid2",9);\r
aWE("id_spher",7);\r
-aWE("id_sphere1",62);\r
-aWE("id_sphere2",62);\r
-aWE("id_sphere3",62);\r
-aWE("id_torus1",62);\r
-aWE("id_torus2",62);\r
-aWE("id_tr1d",79);\r
-aWE("id_tr2d",79);\r
-aWE("id_translation1",79);\r
-aWE("id_translation2",79);\r
-aWE("id_translation3",79);\r
+aWE("id_sphere1",64);\r
+aWE("id_sphere2",64);\r
+aWE("id_sphere3",64);\r
+aWE("id_torus1",64);\r
+aWE("id_torus2",64);\r
+aWE("id_tr1d",81);\r
+aWE("id_tr2d",81);\r
+aWE("id_translation1",81);\r
+aWE("id_translation2",81);\r
+aWE("id_translation3",81);\r
aWE("id_vector",3);\r
aWE("id_vector1",3);\r
aWE("id_vector2",3);\r
-aWE("id_vector3",18);\r
-aWE("id_vr",79);\r
+aWE("id_vector3",19);\r
+aWE("id_vr",81);\r
aWE("id_vxy",3);\r
-aWE("id_wir",18,45,64);\r
-aWE("id_wire_clos",64);\r
-aWE("idlist",64,79);\r
-aWE("idlist_",79);\r
-aWE("idlist_f",79);\r
-aWE("if",0,13,16,20,29,47,50,58,64,70,77,78,33,37,38,40,85);\r
-aWE("ig",30,36);\r
-aWE("imag",51,41,79);\r
-aWE("import",3,4,6,7,9,11,18,45,47,30,50,62,64,73,34,36,37,79);\r
-aWE("importation",36);\r
-aWE("importbrep",64);\r
-aWE("importcomponentgui",3,4,6,7,9,11,18,45,47,50,62,64,73,79);\r
-aWE("impossibl",29);\r
+aWE("id_wir",19,46,66);\r
+aWE("id_wire_clos",66);\r
+aWE("idlist",66,81);\r
+aWE("idlist_",81);\r
+aWE("idlist_f",81);\r
+aWE("if",0,13,16,21,30,48,52,60,66,72,79,80,38,39,41,34);\r
+aWE("ig",31,37);\r
+aWE("imag",53,42,81);\r
+aWE("implement",37);\r
+aWE("import",3,4,6,7,9,11,19,46,48,31,52,64,66,75,35,37,38,81);\r
+aWE("importation",37);\r
+aWE("importbrep",66);\r
+aWE("importcomponentgui",3,4,6,7,9,11,19,46,48,52,64,66,75,81);\r
+aWE("impossibl",30);\r
aWE("improv",6);\r
-aWE("in",57,41);\r
-aWE("includ",47);\r
-aWE("increas",16,40);\r
-aWE("independent",17,34);\r
-aWE("index",26,64);\r
-aWE("indic",10,26,58,38);\r
-aWE("indicat",55,61);\r
-aWE("inertia",50,37);\r
-aWE("inform",37);\r
-aWE("initial",51,52,53,66,67,41,80);\r
-aWE("inquir",37);\r
-aWE("inretia",37);\r
-aWE("insert",16,40);\r
-aWE("insid",58,38);\r
-aWE("instead",20);\r
-aWE("integ",27,54,38);\r
-aWE("integer",54,38);\r
-aWE("intend",70,40);\r
-aWE("interactive",27,38);\r
-aWE("intermediat",56);\r
-aWE("internal",64,78,40);\r
+aWE("in",59,37,42);\r
+aWE("includ",48);\r
+aWE("increas",16,41);\r
+aWE("independent",18,35);\r
+aWE("index",27,89);\r
+aWE("indic",10,27,60,66,39);\r
+aWE("indicat",57,63);\r
+aWE("inertia",52,38);\r
+aWE("inform",38);\r
+aWE("initial",53,54,55,68,69,42,82);\r
+aWE("inquir",38);\r
+aWE("insert",16,41);\r
+aWE("insid",60,39);\r
+aWE("instead",21);\r
+aWE("integ",56,39);\r
+aWE("integer",28,56,39);\r
+aWE("intend",72,41);\r
+aWE("interactive",28,39);\r
+aWE("intermediat",58);\r
+aWE("internal",66,80,41);\r
aWE("interpol",3);\r
-aWE("interpolat",21);\r
-aWE("interpolation",3);\r
-aWE("intersect",58,38);\r
-aWE("intersection",58,38);\r
-aWE("introduction",56,30);\r
-aWE("invalid",50,64,70,40);\r
-aWE("investigat",37);\r
-aWE("ion",83);\r
-aWE("isbyparamet",0,40);\r
-aWE("iscommonvertex",16,40);\r
+aWE("interpolat",22);\r
+aWE("intersect",60,39);\r
+aWE("intersection",60,39);\r
+aWE("introduction",58,31);\r
+aWE("invalid",52,66,72,41);\r
+aWE("invisibl",83);\r
+aWE("isbyparamet",0,41);\r
+aWE("iscommonvertex",16,41);\r
aWE("iso",12);\r
-aWE("isolin",12);\r
-aWE("isplanarfac",45);\r
-aWE("isplanarwant",3,18,29,73);\r
-aWE("issucces",64);\r
-aWE("isvalid",50,64);\r
-aWE("iteration",43,35);\r
-aWE("itself",16,40);\r
-aWE("ix",50,37);\r
-aWE("iy",50,37);\r
-aWE("iz",50,37);\r
-aWE("just",56);\r
-aWE("keep",51,52,66,41,80);\r
-aWE("ko",64);\r
-aWE("l",45,73);\r
-aWE("last",24,33,31);\r
-aWE("lc",49,31);\r
-aWE("least",21,31);\r
-aWE("len",64);\r
-aWE("length",0,50,72,37,40);\r
-aWE("les",70,40);\r
+aWE("isolin",49);\r
+aWE("isplanarfac",46);\r
+aWE("isplanarwant",3,19,30,75);\r
+aWE("issucces",66);\r
+aWE("isvalid",52,66);\r
+aWE("iteration",44,36);\r
+aWE("itself",16,41);\r
+aWE("ix",52,38);\r
+aWE("iy",52,38);\r
+aWE("iz",52,38);\r
+aWE("just",58);\r
+aWE("keep",53,54,68,42,82,89);\r
+aWE("keyboard",89);\r
+aWE("ko",66);\r
+aWE("l",46,75);\r
+aWE("last",25,51,34,32);\r
+aWE("lc",51,32);\r
+aWE("least",22,32);\r
+aWE("leav",89);\r
+aWE("left",54);\r
+aWE("len",66);\r
+aWE("length",0,52,74,38,41);\r
+aWE("les",72,41);\r
aWE("li",1,15);\r
-aWE("limit",58,38);\r
-aWE("lin",2,3,48,72,38,31);\r
+aWE("limit",60,39);\r
+aWE("lin",2,3,50,74,39,32,89);\r
aWE("line1",3);\r
aWE("line2",3);\r
-aWE("linear",72);\r
-aWE("list",3,10,13,14,16,19,21,26,29,43,47,58,63,69,70,71,72,74,76,77,78,33,35,38,40,31,83,85);\r
+aWE("linear",74);\r
+aWE("list",3,10,13,14,16,20,22,27,30,44,48,60,65,66,71,72,73,74,76,78,79,80,36,39,41,34,32,81,86,89);\r
aWE("listchain",6);\r
-aWE("listoffaceid",10,38);\r
-aWE("listofgeomshap",76,40);\r
-aWE("listofid",76,33,40);\r
-aWE("listofind",26);\r
-aWE("listofkeepinsid",58,38);\r
-aWE("listofmaterial",58,38);\r
-aWE("listofremoveinsid",58,38);\r
-aWE("listofshap",19,21,58,69,71,74,33,38,40,31,83);\r
-aWE("listofshapeid",38);\r
-aWE("listoftool",58,38);\r
-aWE("listofwireid",77,40);\r
-aWE("listshap",42);\r
-aWE("local",49,57,72,41,31,79);\r
+aWE("listoffaceid",10,39);\r
+aWE("listofgeomshap",78,41);\r
+aWE("listofid",78,41,34);\r
+aWE("listofind",27);\r
+aWE("listofkeepinsid",60,39);\r
+aWE("listofmaterial",60,39);\r
+aWE("listofremoveinsid",60,39);\r
+aWE("listofshap",20,22,60,71,73,76,39,41,34,32,86);\r
+aWE("listofshapeid",39);\r
+aWE("listoftool",60,39);\r
+aWE("listofwireid",79,41);\r
+aWE("listshap",43);\r
+aWE("local",51,54,59,74,42,32,81);\r
aWE("localop",6);\r
-aWE("locat",49,61,31);\r
-aWE("location",49,52,36,41,31,79);\r
-aWE("ly",72,78,40);\r
-aWE("main",0,1,2,56,8,5,10,13,14,15,16,17,19,20,21,22,23,24,25,26,27,28,29,42,43,44,46,48,49,50,51,52,53,54,55,57,58,59,60,61,63,65,66,67,68,69,70,71,72,74,75,76,77,78,33,34,35,37,38,39,40,41,31,80,81,82,83,84,85);\r
-aWE("mainshap",85);\r
-aWE("major",25,39,31,81);\r
-aWE("mak",6,7,10,50,54,55,58,64,38,41,79,80,85);\r
+aWE("locat",63,32);\r
+aWE("location",51,54,37,42,32,81);\r
+aWE("lsc",54);\r
+aWE("ly",74,80,41);\r
+aWE("main",0,1,2,58,8,5,10,13,14,15,16,18,20,21,22,23,24,25,26,27,28,29,30,43,44,45,47,50,51,52,53,54,55,56,57,59,60,61,62,63,65,67,68,69,70,71,72,73,74,76,77,78,79,80,35,36,38,39,40,41,42,34,32,82,84,85,86,88,89);\r
+aWE("mainshap",89);\r
+aWE("major",26,40,32,84);\r
+aWE("mak",6,7,10,52,56,57,60,66,39,42,81,82,89);\r
aWE("make_block_explod",6);\r
-aWE("makearc",1,3,18,45,64,73,31,79);\r
-aWE("makebezi",3,21,31);\r
-aWE("makeblockexplod",6,27,38);\r
-aWE("makeboolean",11,32);\r
-aWE("makebox",8,11,50,62,64,39,79);\r
-aWE("makeboxdxdydz",6,8,50,62,64,79);\r
-aWE("makeboxtwopnt",4,8,47,62);\r
-aWE("makecdg",50,37);\r
-aWE("makechamf",79);\r
-aWE("makechamferall",10,79);\r
-aWE("makechamferedg",10,38,79);\r
-aWE("makechamferfac",10,38,79);\r
-aWE("makecircl",3,15,31);\r
+aWE("makearc",1,3,19,46,66,75,32,81);\r
+aWE("makebezi",3,22,32);\r
+aWE("makeblockexplod",6,28,39);\r
+aWE("makeboolean",11,33);\r
+aWE("makebox",8,11,52,64,66,40,81);\r
+aWE("makeboxdxdydz",6,8,52,64,66,81);\r
+aWE("makeboxtwopnt",4,8,48,64);\r
+aWE("makecdg",52,38);\r
+aWE("makechamf",81);\r
+aWE("makechamferall",10,81);\r
+aWE("makechamferedg",10,39,81);\r
+aWE("makechamferfac",10,39,81);\r
+aWE("makecircl",3,15,32);\r
aWE("makecirclethreepnt",3,15);\r
-aWE("makecommon",7,17);\r
-aWE("makecompound",6,18,19,50,64,33);\r
-aWE("makecon",20,62,64,39);\r
-aWE("makeconer1r2h",20,62);\r
-aWE("makecut",7,64);\r
-aWE("makecylind",7,23,64,39,79);\r
-aWE("makecylinderrh",23);\r
-aWE("makeedg",9,18,24,45,64,33);\r
-aWE("makeellips",3,25,31);\r
-aWE("makefac",3,18,29,45,64,73,33,79);\r
-aWE("makefacewir",29,45);\r
-aWE("makefil",18,43,35);\r
-aWE("makefillet",42,38,79);\r
-aWE("makefilletall",42,79);\r
-aWE("makefus",7,44);\r
-aWE("makegluefac",46,50,40);\r
-aWE("makehalfpartition",4,58);\r
-aWE("makehexa",9);\r
-aWE("makehexa2fac",9);\r
-aWE("makehexasolid",56);\r
-aWE("makehexasolidtwofac",56);\r
-aWE("makeinterpol",3,21,31);\r
-aWE("makelin",3,48,31);\r
-aWE("makelinetwopnt",3);\r
-aWE("makemark",49,31,79);\r
-aWE("makemirrorbyaxi",51,79);\r
-aWE("makemirrorbyplan",51,41,79);\r
-aWE("makemirrorbypoint",51,79);\r
-aWE("makemultirotation1d",53,41);\r
-aWE("makemultirotation2d",53,41);\r
-aWE("makemultitransformation1d",6,54,38);\r
-aWE("makemultitransformation2d",6,54,38);\r
-aWE("makemultitranslation1d",55,41,79);\r
-aWE("makemultitranslation2d",55,41,79);\r
-aWE("makeoffset",57,41,79);\r
-aWE("makepartition",4,58,38);\r
-aWE("makepip",18,59,35);\r
-aWE("makeplan",3,4,60,31);\r
-aWE("makeplanefac",3,60);\r
-aWE("makeplanethreepnt",3,60,79);\r
-aWE("makepolylin",3,21,31);\r
-aWE("makeposition",52,41,79);\r
-aWE("makeprism",18,28,45,35);\r
-aWE("makeprismvech",18,28,64,79);\r
-aWE("makequad",9);\r
-aWE("makequad2edg",9);\r
-aWE("makequad4vertic",9);\r
-aWE("makequadfac",56);\r
-aWE("makequadfaceedg",56);\r
-aWE("makequadfacevertic",56);\r
-aWE("makerevolution",18,65,35);\r
-aWE("makerotation",64,66,41,79);\r
-aWE("makescaletransform",67,41,79);\r
-aWE("makesection",7,68);\r
-aWE("makesew",64,69,40);\r
-aWE("makeshell",45,71,33);\r
-aWE("makesketch",45,72,73);\r
-aWE("makesketcheronplan",73);\r
-aWE("makesolid",45,74,33);\r
-aWE("makespher",6,7,11,62,75,39);\r
-aWE("makespherepntr",62);\r
-aWE("maketoru",62,39,81);\r
-aWE("maketorusrr",62,81);\r
-aWE("maketranslation",18,41,79,80);\r
-aWE("maketranslationtwopoint",79,80);\r
-aWE("maketranslationvector",79,80);\r
-aWE("makevector",3,7,18,45,62,64,73,31,79,82);\r
-aWE("makevectordxdydz",3,4,18,82);\r
-aWE("makevertex",3,4,6,7,9,18,45,47,50,61,62,64,73,31,79);\r
-aWE("makevertexoncurv",3,61,31);\r
-aWE("makevertexwithref",3,61,31);\r
-aWE("makewir",3,18,45,64,73,33,79,83);\r
-aWE("manual",31);\r
-aWE("mas",50,37);\r
-aWE("material",58,38);\r
-aWE("math",50,64,79);\r
-aWE("matrix",50,37);\r
-aWE("max",27,43,50,70,35,38,40);\r
-aWE("maxdeg",18);\r
-aWE("maxdegre",43,35);\r
-aWE("maximal",27,70,35,37,38,40);\r
-aWE("maximum",27,43,46,70,38,40);\r
-aWE("maxnbfac",27,38);\r
-aWE("maxtoleranc",70,40);\r
-aWE("maxtolerance3d",70,40);\r
-aWE("mean",57,61,72,41);\r
-aWE("measur",37);\r
-aWE("measurement",50,37);\r
-aWE("mention",56);\r
-aWE("menu",0,1,2,56,8,5,10,12,13,14,15,16,17,19,20,21,22,23,24,25,26,27,28,29,42,43,44,46,48,49,51,52,53,54,55,57,58,59,60,61,63,65,66,67,68,69,70,71,72,74,75,76,77,78,33,34,35,36,37,38,39,40,41,31,80,81,82,83,84,85);\r
-aWE("merg",70,40);\r
-aWE("mesh",2,56,38);\r
-aWE("meshingdeflection",2,4,38);\r
-aWE("method",33);\r
-aWE("middl",1,61,31);\r
-aWE("min",27,43,50,35,37,38);\r
-aWE("min_dist",50);\r
-aWE("mindeg",18);\r
-aWE("mindegre",43,35);\r
-aWE("mindistanc",50,37);\r
-aWE("minimal",27,29,50,35,37,38);\r
-aWE("minimum",27,43,38);\r
-aWE("minnbfac",27,38);\r
-aWE("minor",25,39,31,81);\r
-aWE("mirror",51,41,79);\r
-aWE("mirror1",79);\r
-aWE("mirror2",79);\r
-aWE("mirror3",79);\r
-aWE("mod",0,11,12,16,70,40);\r
-aWE("model",2,30,38);\r
-aWE("modifi",16,49,52,40,41,31);\r
-aWE("modification",40,41);\r
-aWE("modify",52,41,79);\r
-aWE("modul",30,34);\r
-aWE("moment",50,37);\r
-aWE("mov",52,55,41);\r
-aWE("much",85);\r
-aWE("multi",6,5,53,54,55,38,41,79);\r
-aWE("multirotate1d",79);\r
-aWE("multirotate2d",79);\r
-aWE("multitud",63,38);\r
-aWE("must",50,53,55,77,37,40,41);\r
-aWE("nam",0,1,2,56,8,10,15,16,17,19,20,21,22,23,24,25,28,29,42,43,44,46,48,49,51,52,53,54,55,57,58,59,60,61,65,67,68,69,70,71,74,75,76,77,78,33,35,36,38,39,40,41,31,80,81,82,83,84);\r
-aWE("nb",8,28,48,75);\r
-aWE("nb_sub",26);\r
-aWE("nbit",18,43,35);\r
-aWE("nbound",50);\r
-aWE("nbox",50);\r
-aWE("nbsplitpoint",70,40);\r
-aWE("nbtim",53,54,55,38,41);\r
-aWE("nbtimes1",53,55,41);\r
-aWE("nbtimes2",53,55,41);\r
-aWE("nbtimesu",54,38);\r
-aWE("nbtimesv",54,38);\r
-aWE("ncentr",50);\r
-aWE("ncompound",50);\r
-aWE("ne",8,10,26,28,29,42,43,53,55,59,65,66,67,75,80);\r
-aWE("necessary",10,42,70,72,34,37,40);\r
-aWE("need",16,40);\r
-aWE("negativ",57,41);\r
-aWE("neigbour",70,40);\r
-aWE("new",1,56,8,15,16,19,20,21,23,24,25,26,28,29,43,48,49,59,60,61,65,71,72,74,75,33,35,39,40,31,79,81,82,83,84,85);\r
-aWE("ninertia",50);\r
-aWE("nminimal",50);\r
-aWE("nod",21,31);\r
-aWE("noerror",13,40);\r
-aWE("non",50);\r
-aWE("normal",3,15,25,28,57,60,35,41,31,81);\r
-aWE("not",20);\r
-aWE("noth",29);\r
-aWE("notion",56);\r
-aWE("numb",12,27,43,53,54,55,57,64,69,70,77,35,38,40,41,79);\r
-aWE("number",54,38);\r
-aWE("numeb",38);\r
-aWE("object",1,2,3,4,6,7,9,10,12,15,17,18,19,21,24,25,26,28,29,42,43,45,47,30,48,49,51,52,53,57,59,60,61,62,63,64,65,66,71,73,74,78,33,34,35,36,37,38,39,40,41,32,31,79,80,82,83,85);\r
-aWE("obtain",26,50);\r
-aWE("occ",0,12,16,76,77,78,34,40,85);\r
-aWE("occur",13,40);\r
-aWE("offer",85);\r
-aWE("offset",57,41,79);\r
-aWE("ok",49,50,64,36,31);\r
-aWE("old",61);\r
-aWE("on",0,16,22,53,54,55,60,61,64,70,72,34,38,40,41,31,79,84);\r
-aWE("open",13,16,64,40);\r
-aWE("openwir",13,64,40);\r
-aWE("operation",0,1,2,4,56,6,7,8,10,13,14,15,16,17,20,21,22,23,25,26,27,28,42,43,44,46,30,48,51,52,53,54,55,57,58,59,60,61,63,64,65,66,67,68,69,70,75,76,77,78,34,35,38,40,41,32,79,80,81,82,85);\r
-aWE("operator",64,70,40);\r
-aWE("opposit",8,39);\r
-aWE("optimization",30);\r
-aWE("option",5);\r
-aWE("ord",70,37,40);\r
-aWE("orient",56,49,31);\r
-aWE("origin",8,20,23,49,75,39,31,81,82);\r
-aWE("otherwis",0,16,51,52,66,40,41,80);\r
-aWE("our",0,1,2,56,8,10,12,13,14,15,16,17,19,20,21,22,23,24,25,27,28,29,42,43,44,46,48,51,52,53,54,55,57,58,59,60,61,63,65,66,67,68,69,70,71,72,74,75,76,77,78,37,32,80,81,82,83,85);\r
-aWE("outsid",58,38);\r
-aWE("ox",49,72,31);\r
-aWE("oy",49,31);\r
-aWE("oz",20,23,49,72,31);\r
-aWE("p",62);\r
+aWE("makecommon",7,18);\r
+aWE("makecompound",6,19,20,52,66,34);\r
+aWE("makecon",21,64,66,40);\r
+aWE("makeconer1r2h",21,64);\r
+aWE("makecut",7,66);\r
+aWE("makecylind",7,24,66,40,81);\r
+aWE("makecylinderrh",24);\r
+aWE("makeedg",9,19,25,46,66,34);\r
+aWE("makeellips",3,26,32);\r
+aWE("makefac",3,19,30,46,66,75,34,81);\r
+aWE("makefacewir",30,46);\r
+aWE("makefil",19,44,36);\r
+aWE("makefillet",43,39,81);\r
+aWE("makefilletall",43,81);\r
+aWE("makefus",7,45);\r
+aWE("makegluefac",47,52,66,41);\r
+aWE("makehalfpartition",4,60);\r
+aWE("makehexa",58,9);\r
+aWE("makehexa2fac",58,9);\r
+aWE("makeinterpol",3,22,32);\r
+aWE("makelin",3,50,32);\r
+aWE("makelinetwopnt",3,50);\r
+aWE("makemark",51,32,81);\r
+aWE("makemirrorbyaxi",53,81);\r
+aWE("makemirrorbyplan",53,42,81);\r
+aWE("makemirrorbypoint",53,81);\r
+aWE("makemultirotate1d",55);\r
+aWE("makemultirotate2d",55);\r
+aWE("makemultirotation1d",55,42);\r
+aWE("makemultirotation2d",55,42);\r
+aWE("makemultitransformation1d",6,56,39);\r
+aWE("makemultitransformation2d",6,56,39);\r
+aWE("makemultitranslation1d",57,42,81);\r
+aWE("makemultitranslation2d",57,42,81);\r
+aWE("makeoffset",59,42,81);\r
+aWE("makepartition",4,60,39);\r
+aWE("makepip",19,61,36);\r
+aWE("makeplan",3,4,62,32);\r
+aWE("makeplanefac",3,62);\r
+aWE("makeplanethreepnt",3,62,81);\r
+aWE("makepolylin",3,22,32);\r
+aWE("makeposition",54,42,81);\r
+aWE("makeprism",19,29,46,36);\r
+aWE("makeprismvech",19,29,66,81);\r
+aWE("makequad",58,9);\r
+aWE("makequad2edg",58,9);\r
+aWE("makequad4vertic",58,9);\r
+aWE("makerevolution",19,67,36);\r
+aWE("makerotation",66,68,42,81);\r
+aWE("makescaletransform",69,42,81);\r
+aWE("makesection",7,70);\r
+aWE("makesew",66,71,41);\r
+aWE("makeshell",46,73,34);\r
+aWE("makesketch",46,75,74);\r
+aWE("makesketcheronplan",75);\r
+aWE("makesolid",46,76,34);\r
+aWE("makespher",6,7,11,64,77,40);\r
+aWE("makespherepntr",64);\r
+aWE("maketoru",64,40,84);\r
+aWE("maketorusrr",64,84);\r
+aWE("maketranslation",19,42,81,82);\r
+aWE("maketranslationtwopoint",81,82);\r
+aWE("maketranslationvector",81,82);\r
+aWE("makevector",3,7,19,46,64,66,75,32,81,85);\r
+aWE("makevectordxdydz",3,4,19,85);\r
+aWE("makevertex",3,4,6,7,9,19,46,48,52,63,64,66,75,32,81);\r
+aWE("makevertexoncurv",3,63,32);\r
+aWE("makevertexwithref",3,63,32);\r
+aWE("makewir",3,19,46,66,75,34,81,86);\r
+aWE("manual",32,89);\r
+aWE("mas",52,38);\r
+aWE("material",60,39);\r
+aWE("math",52,66,81);\r
+aWE("matrix",52,38);\r
+aWE("max",28,44,52,72,36,39,41);\r
+aWE("maxdeg",19);\r
+aWE("maxdegre",44,36);\r
+aWE("maximal",28,72,36,38,39,41);\r
+aWE("maximum",28,44,47,72,39,41);\r
+aWE("maxnbfac",28,39);\r
+aWE("maxtoleranc",72,41);\r
+aWE("maxtolerance3d",72,41);\r
+aWE("mean",12,59,63,74,42,87);\r
+aWE("measur",38);\r
+aWE("measurement",52,38);\r
+aWE("mechanism",37);\r
+aWE("mention",58);\r
+aWE("menu",0,1,2,58,8,5,10,12,13,14,15,16,17,18,20,21,22,23,24,25,26,27,28,29,30,43,44,45,47,49,50,51,53,54,55,56,57,59,60,61,62,63,65,67,68,69,70,71,72,73,74,76,77,78,79,80,35,36,37,38,39,40,41,42,34,32,82,84,85,86,87,88,89);\r
+aWE("merg",72,41);\r
+aWE("mesh",2,58,39);\r
+aWE("meshingdeflection",2,4,39);\r
+aWE("method",34);\r
+aWE("middl",63,32);\r
+aWE("min",28,44,52,36,38,39);\r
+aWE("min_dist",52);\r
+aWE("mindeg",19);\r
+aWE("mindegre",44,36);\r
+aWE("mindistanc",52,38);\r
+aWE("minimal",28,30,52,36,38,39);\r
+aWE("minimum",28,44,39);\r
+aWE("minnbfac",28,39);\r
+aWE("minor",26,40,32,84);\r
+aWE("mirror",53,42,81);\r
+aWE("mirror1",81);\r
+aWE("mirror2",81);\r
+aWE("mirror3",81);\r
+aWE("mod",0,11,12,16,72,41,87);\r
+aWE("model",2,31,39);\r
+aWE("modifi",16,54,41,42,32);\r
+aWE("modification",41,42);\r
+aWE("modify",54,42,81);\r
+aWE("modul",31,35);\r
+aWE("moment",52,38);\r
+aWE("mov",54,57,42);\r
+aWE("much",89);\r
+aWE("multi",6,5,55,56,57,39,42,81);\r
+aWE("multirotate1d",81);\r
+aWE("multirotate2d",81);\r
+aWE("multitud",65,39);\r
+aWE("must",52,55,57,79,38,41,42);\r
+aWE("nam",0,1,2,58,8,10,15,16,18,20,21,22,23,24,25,26,29,30,43,44,45,47,50,51,53,54,55,56,57,59,60,61,62,63,67,69,70,71,72,73,76,77,78,79,80,36,37,39,40,41,42,34,32,82,84,85,86,88,89);\r
+aWE("nb",8,29,50,77);\r
+aWE("nb_sub",27);\r
+aWE("nbit",19,44,36);\r
+aWE("nbound",52);\r
+aWE("nbox",52);\r
+aWE("nbsplitpoint",72,41);\r
+aWE("nbtim",55,56,57,39,42);\r
+aWE("nbtimes1",55,57,42);\r
+aWE("nbtimes2",55,57,42);\r
+aWE("nbtimesu",56,39);\r
+aWE("nbtimesv",56,39);\r
+aWE("ncentr",52);\r
+aWE("ncompound",52);\r
+aWE("ne",8,10,27,29,30,43,44,55,57,61,67,68,69,77,82);\r
+aWE("necessary",10,43,72,74,35,38,41);\r
+aWE("need",16,41);\r
+aWE("negativ",59,42);\r
+aWE("neigbour",72,41);\r
+aWE("new",1,58,8,15,16,20,21,22,24,25,26,27,29,30,44,50,51,61,62,63,67,73,74,76,77,36,40,41,34,32,81,84,85,86,88,89);\r
+aWE("ninertia",52);\r
+aWE("nminimal",52);\r
+aWE("nod",22,32);\r
+aWE("noerror",13,41);\r
+aWE("non",52);\r
+aWE("normal",3,15,26,29,59,62,36,42,32,84);\r
+aWE("not",21);\r
+aWE("noth",30);\r
+aWE("notion",58);\r
+aWE("numb",28,44,49,55,56,57,59,66,71,72,79,36,39,41,42,81);\r
+aWE("number",56,39);\r
+aWE("numeb",39);\r
+aWE("object",1,2,3,4,6,7,9,10,12,15,17,18,19,20,22,25,26,27,29,30,43,44,46,48,31,50,51,53,54,55,59,61,62,63,64,65,66,67,68,73,75,76,80,35,36,37,38,39,40,41,42,34,33,32,81,82,85,86,87,89);\r
+aWE("obtain",27,52);\r
+aWE("occ",0,10,12,16,43,78,79,80,35,41,89);\r
+aWE("occur",13,41);\r
+aWE("offer",89);\r
+aWE("offset",59,42,81);\r
+aWE("ok",51,52,66,32,89);\r
+aWE("old",63);\r
+aWE("on",0,16,23,54,55,56,57,62,63,66,72,74,35,39,41,42,32,81,88);\r
+aWE("opaqu",83);\r
+aWE("open",13,16,66,37,41,89);\r
+aWE("openwir",13,66,41);\r
+aWE("operation",0,1,2,4,58,6,7,8,10,13,14,15,16,18,21,22,23,24,26,27,28,29,43,44,45,47,31,50,53,54,55,56,57,59,60,61,62,63,65,66,67,68,69,70,71,72,74,77,78,79,80,35,36,39,41,42,33,81,82,84,85,89);\r
+aWE("operator",66,72,41);\r
+aWE("opportunity",37);\r
+aWE("opposit",8,40);\r
+aWE("optimization",31);\r
+aWE("option",5,12,87);\r
+aWE("ord",72,41);\r
+aWE("orient",58,32);\r
+aWE("origin",8,21,24,51,77,40,32,84,85);\r
+aWE("os",66);\r
+aWE("otherwis",0,16,53,54,68,41,42,82);\r
+aWE("our",0,1,2,58,8,10,13,14,15,16,17,18,20,21,22,23,24,25,26,28,29,30,43,44,45,47,50,53,54,55,56,57,59,60,61,62,63,65,67,68,69,70,71,72,73,74,76,77,78,79,80,38,33,82,83,84,85,86,87,89);\r
+aWE("outsid",60,39);\r
+aWE("ox",51,74,32);\r
+aWE("oy",51,32);\r
+aWE("oz",21,24,51,74,32);\r
+aWE("p",64);\r
aWE("p_25_25_50",6);\r
aWE("p_25_50_25",6);\r
aWE("p_50_25_25",6);\r
aWE("p_on_arc",3);\r
-aWE("p0",3,4,18,45,47,62,64,79);\r
-aWE("p1",3,7,9,18,62,64,73,79);\r
+aWE("p0",3,4,19,46,48,64,66,81);\r
+aWE("p1",3,7,9,19,64,66,75,81);\r
aWE("p10",9);\r
aWE("p100",3);\r
aWE("p11",9);\r
aWE("p12",9);\r
aWE("p13",9);\r
-aWE("p2",3,7,9,18,62,64,73,79);\r
-aWE("p200",4,47);\r
-aWE("p3",3,9,18,64,73,79);\r
-aWE("p4",3,9,18,79);\r
-aWE("p5",3,9,18,79);\r
+aWE("p2",3,7,9,19,64,66,75,81);\r
+aWE("p200",4,48);\r
+aWE("p3",3,9,19,66,75,81);\r
+aWE("p4",3,9,19,81);\r
+aWE("p5",3,9,19,81);\r
aWE("p50",3);\r
-aWE("p6",9,18);\r
-aWE("p7",9,18);\r
-aWE("p70",62);\r
-aWE("p8",9,18);\r
+aWE("p6",9,19);\r
+aWE("p7",9,19);\r
+aWE("p70",64);\r
+aWE("p8",9,19);\r
aWE("p9",9);\r
-aWE("parallel",8,48);\r
-aWE("paramet",0,16,49,61,70,33,40,31);\r
-aWE("parameter",4,11,12,43,49,64,70,72,35,40,31);\r
-aWE("paramt",0,40);\r
-aWE("part",17,20,39);\r
-aWE("partition",4,58,38);\r
+aWE("parallel",8,50,51);\r
+aWE("paramet",0,16,63,72,41,34,32);\r
+aWE("parameter",4,11,12,17,44,66,72,74,36,41,32,83,87);\r
+aWE("paramt",0,41);\r
+aWE("part",18,21,40);\r
+aWE("partition",4,60,39);\r
aWE("partition1",4);\r
aWE("partition2",4);\r
aWE("partition3",4);\r
-aWE("pas",21,48,53,60,72,31);\r
-aWE("path",18,59,35);\r
-aWE("pathshap",59,35);\r
-aWE("pattern",41);\r
-aWE("perform",4,26,58,38,79,85);\r
-aWE("perpendicular",72);\r
-aWE("pi",53,64,79);\r
-aWE("pip",18,59,35);\r
-aWE("plan",2,3,4,51,58,60,72,38,41,31,79,84);\r
-aWE("planar",29,72,73,33,31,79,84);\r
+aWE("pas",22,50,55,62,74,32);\r
+aWE("path",19,61,36);\r
+aWE("pathshap",61,36);\r
+aWE("pattern",42);\r
+aWE("perform",4,27,60,39,81);\r
+aWE("perpendicular",74);\r
+aWE("pi",55,66,81);\r
+aWE("pictur",54);\r
+aWE("pip",19,61,36);\r
+aWE("plac",54);\r
+aWE("plan",2,3,4,53,60,62,74,39,42,32,81,88,89);\r
+aWE("planar",30,75,74,34,32,81,88);\r
aWE("plane1",3);\r
aWE("plane2",3);\r
aWE("plane3",3);\r
-aWE("platform",85);\r
-aWE("plung",2,38);\r
-aWE("point",0,1,3,4,56,8,15,16,18,20,21,23,24,25,28,45,47,48,49,50,51,53,57,60,61,64,67,70,72,73,75,37,39,40,41,31,79,80,81,82);\r
-aWE("point1",1,3,8,9,15,24,28,48,60,31,80,82);\r
-aWE("point2",1,3,8,9,15,24,28,48,60,31,80,82);\r
-aWE("point3",1,3,9,15,60,31);\r
+aWE("platform",89);\r
+aWE("plug",37);\r
+aWE("plung",2,39);\r
+aWE("point",0,1,3,4,58,8,9,15,16,19,21,22,24,25,26,29,46,48,50,51,52,53,55,59,62,63,66,69,72,75,74,77,38,40,41,42,32,81,82,84,85,89);\r
+aWE("point1",1,3,8,9,15,25,29,50,62,32,82,85);\r
+aWE("point2",1,3,8,9,15,25,29,50,62,32,82,85);\r
+aWE("point3",1,3,9,15,62,32);\r
aWE("point4",3,9);\r
aWE("point5",3);\r
-aWE("pointcoordinat",50,37);\r
-aWE("polylin",3,21,31);\r
-aWE("pop",12,34);\r
-aWE("position",0,61,40,31,79,84);\r
-aWE("possibiliti",29);\r
-aWE("possibility",70,40);\r
-aWE("possibl",6,21,63,70,34,37,38,40);\r
-aWE("precision",64,69,40);\r
-aWE("predefin",72);\r
-aWE("preferenc",85);\r
-aWE("pres",49,31);\r
-aWE("preview",49,31);\r
-aWE("previou",72);\r
-aWE("primitiv",8,20,23,30,62,75,39,81);\r
-aWE("print",50,64,37);\r
-aWE("prism",18,28,45,64,35,79);\r
-aWE("prism_edg",79);\r
-aWE("prism_fac",45,79);\r
-aWE("prism1",18);\r
-aWE("prism2",18);\r
-aWE("problem",70,40);\r
-aWE("proces",16,64,70,76,38,40);\r
-aWE("processshap",64,70,40);\r
-aWE("produc",2,10,16,17,22,27,42,44,51,53,54,55,57,58,63,66,67,68,69,70,76,79,80);\r
-aWE("project",85);\r
-aWE("projection",53,84);\r
-aWE("prop",50);\r
-aWE("propagat",6,63,38);\r
-aWE("propagation",6,63,38);\r
-aWE("properti",12,50,37);\r
-aWE("provid",0,1,2,56,8,10,12,13,14,15,16,17,19,20,21,22,23,24,25,27,28,29,42,43,44,46,48,51,52,53,54,55,57,58,59,60,61,63,65,66,67,68,69,70,71,72,74,75,76,77,78,32,80,81,82,83,85);\r
-aWE("ps",64);\r
-aWE("put",2,38);\r
-aWE("px",3,18,45,64,79);\r
-aWE("pxy",79);\r
-aWE("pxyz",18,45,79);\r
-aWE("py",3,18,45,64,79);\r
-aWE("py1",64);\r
-aWE("python",37);\r
-aWE("pz",3,4,18,45,64,79);\r
+aWE("pointcoordinat",52,38);\r
+aWE("polylin",3,22,32);\r
+aWE("pop",12,17,35,87);\r
+aWE("position",0,63,41,32,81,88);\r
+aWE("possibiliti",30);\r
+aWE("possibility",72,41);\r
+aWE("possibl",6,22,65,72,35,38,39,41);\r
+aWE("precision",66,71,41);\r
+aWE("predefin",74);\r
+aWE("pres",51,32);\r
+aWE("presum",51);\r
+aWE("preview",32);\r
+aWE("previou",74);\r
+aWE("primitiv",8,21,24,31,64,77,40,84);\r
+aWE("print",52,66,38);\r
+aWE("prism",19,29,46,66,36,81);\r
+aWE("prism_edg",81);\r
+aWE("prism_fac",46,81);\r
+aWE("prism1",19);\r
+aWE("prism2",19);\r
+aWE("problem",72,41);\r
+aWE("proces",16,66,72,78,39,41);\r
+aWE("processshap",66,72,41);\r
+aWE("produc",2,10,16,18,23,28,43,45,53,55,56,57,59,60,65,68,69,70,71,72,78,81,82);\r
+aWE("program",48);\r
+aWE("projection",55,88);\r
+aWE("prop",52);\r
+aWE("propagat",6,65,39);\r
+aWE("propagation",6,65,39);\r
+aWE("properti",12,52,38);\r
+aWE("provid",0,1,2,58,8,10,13,14,15,16,17,18,20,21,22,23,24,25,26,28,29,30,43,44,45,47,50,53,54,55,56,57,59,60,61,62,63,65,67,68,69,70,71,72,73,74,76,77,78,79,80,33,82,83,84,85,86,87,89);\r
+aWE("ps",66);\r
+aWE("put",2,39);\r
+aWE("px",3,19,46,66,81);\r
+aWE("pxy",81);\r
+aWE("pxyz",19,46,81);\r
+aWE("py",3,19,46,66,81);\r
+aWE("py1",66);\r
+aWE("python",38);\r
+aWE("pz",3,4,19,46,66,81);\r
aWE("qface1",9);\r
aWE("qface2",9);\r
aWE("qface3",9);\r
aWE("qface6",9);\r
aWE("qface7",9);\r
aWE("qface8",9);\r
-aWE("quadrangl",56,9,60,37,31);\r
-aWE("r",42,45,73);\r
-aWE("radian",70,40);\r
-aWE("radiu",3,10,15,20,23,25,42,72,75,38,39,31,79,81);\r
-aWE("radius",3,20,25,39,31,81);\r
-aWE("radius1",7,20,62,64,39,79);\r
-aWE("radius2",20,62,39);\r
-aWE("radius3",62);\r
-aWE("radiusmajor",25,39,31,81);\r
-aWE("radiusminor",25,39,31,81);\r
-aWE("rais",50,64);\r
-aWE("rang",0,26,30,40);\r
-aWE("re",70,40);\r
-aWE("reasonabl",34);\r
-aWE("reconstruction",58,38);\r
-aWE("referenc",49,61,31);\r
-aWE("regard",61,31);\r
-aWE("relativ",72);\r
-aWE("relative",79);\r
-aWE("remov",47,51,52,64,66,70,76,77,78,40,41,80,85);\r
-aWE("removeobject",47,85);\r
-aWE("removeweb",58,38);\r
-aWE("repair",0,13,14,16,46,30,64,69,70,76,77,78,40);\r
-aWE("repetition",53,55,41);\r
-aWE("represent",60,31);\r
-aWE("request",33);\r
-aWE("requir",70,34,36,40);\r
-aWE("requireddegre",70,40);\r
-aWE("requirednbsegment",70,40);\r
-aWE("res",64);\r
-aWE("respect",46,72,40);\r
-aWE("restriction",70,40);\r
-aWE("result",0,1,2,4,56,6,7,8,10,13,14,15,16,17,19,20,21,22,23,24,25,26,27,28,29,42,43,44,46,48,51,52,53,54,55,57,58,59,60,61,63,64,65,66,67,68,69,70,71,72,74,75,76,77,78,33,35,37,38,39,40,41,31,79,80,81,82,83,85);\r
-aWE("resultant",70,40);\r
-aWE("retriev",14,33,40);\r
-aWE("return",14,26,27,50,33,37,38,40,85);\r
-aWE("revers",53,66,41);\r
-aWE("revolution",18,65,70,35,40);\r
-aWE("right",12,34);\r
-aWE("rot1d",79);\r
-aWE("rot2d",79);\r
-aWE("rotat",53,65,66,35,41,79);\r
-aWE("rotation",53,64,66,41,79);\r
-aWE("runtimeerror",50,64);\r
-aWE("s",13,15,16,18,47,50,54,64,67,76,77,78,33,38,40,41,31,85);\r
-aWE("s1",17,44,68);\r
-aWE("s2",17,44,68);\r
-aWE("salom",3,4,6,7,9,11,18,45,47,30,50,62,64,73,79,85);\r
-aWE("sam",53,70,72,40,79);\r
-aWE("sameparamet",70,40);\r
-aWE("satisfy",37);\r
-aWE("scal",67,41,79);\r
-aWE("script",0,1,2,56,8,10,12,13,14,15,16,17,19,20,21,22,23,24,25,27,28,29,42,43,44,46,48,51,52,53,54,55,57,58,59,60,61,63,65,66,67,68,69,70,71,72,74,75,76,77,78,37,32,80,81,82,83,85);\r
-aWE("se",36,37);\r
-aWE("search",36);\r
-aWE("second",8,15,20,23,51,54,55,58,60,61,73,75,38,39,41,32,80,81,82,84);\r
-aWE("section",2,7,68,38,32);\r
-aWE("seem",64);\r
-aWE("segment",70,72,40);\r
-aWE("select",0,1,2,8,5,10,12,13,14,15,16,17,19,20,21,22,23,24,25,26,27,28,29,42,43,44,46,48,49,51,52,53,54,55,57,58,59,60,61,63,64,65,66,67,68,69,70,71,72,74,75,76,77,78,33,34,35,36,37,38,39,40,31,80,81,82,83,84,85);\r
-aWE("selection",42,60,72,38,31,84);\r
-aWE("sens",58,38);\r
-aWE("separat",32);\r
-aWE("serv",21,28,59,65,35,31);\r
-aWE("set",0,12,16,27,29,45,53,57,61,38,40,41,31,84);\r
-aWE("setcolor",11,12);\r
-aWE("setdisplaymod",3,4,6,7,9,11,12,18,45,62,64,73,79);\r
-aWE("settransparency",3,11,12,45,73);\r
-aWE("sew",64,69,40);\r
-aWE("sg",6,47,64,34);\r
-aWE("shad",12);\r
-aWE("shap",0,2,4,10,12,13,14,16,17,19,22,26,28,42,43,44,47,30,50,51,52,53,55,57,58,59,63,64,65,66,67,68,69,70,76,77,78,33,34,35,37,38,40,41,79,80,85);\r
-aWE("shape1",37,32);\r
-aWE("shape2",37,32);\r
-aWE("shapelistcompound",18);\r
-aWE("shapes_of_given_typ",26);\r
-aWE("shapesto",46,40);\r
-aWE("shapetyp",42,45,47,64,38,79,85);\r
-aWE("shapetypeedg",79);\r
-aWE("shapetypefac",79);\r
-aWE("shar",14,40);\r
-aWE("shel",14,19,45,57,71,74,33,40,41);\r
-aWE("shell",56,28,45,57,59,65,71,74,33,35,41);\r
-aWE("shift",61,83);\r
-aWE("short",12);\r
-aWE("shortcut",29);\r
-aWE("should",28,48,76,77,37,40);\r
-aWE("show",37);\r
-aWE("shown",49,31);\r
-aWE("sid",60,31);\r
-aWE("sign",57,41);\r
-aWE("similar",60);\r
-aWE("simpl",53,54,55);\r
-aWE("singl",29);\r
-aWE("six",56,9);\r
-aWE("siz",10,60,70,38,40,31);\r
-aWE("sketch",45,72,73);\r
-aWE("sketcher",45);\r
-aWE("sketcher1",45,73);\r
-aWE("sketcher2",45,73);\r
-aWE("sketcher3",45);\r
-aWE("small",49,70,40,31);\r
-aWE("so",29);\r
-aWE("solid",56,8,9,20,23,26,28,45,54,57,59,65,74,75,33,35,38,39,41,81);\r
+aWE("quadrangl",58,9,62,38,32);\r
+aWE("r",43,46,75);\r
+aWE("radian",72,41);\r
+aWE("radio",89);\r
+aWE("radiu",3,10,15,21,24,26,43,74,77,39,40,32,81,84);\r
+aWE("radius",3,21,26,40,32,84);\r
+aWE("radius1",7,21,64,66,40,81);\r
+aWE("radius2",21,64,40);\r
+aWE("radius3",64);\r
+aWE("radiusmajor",26,40,32,84);\r
+aWE("radiusminor",26,40,32,84);\r
+aWE("rais",48,52,66);\r
+aWE("rang",0,27,31,37,41,83);\r
+aWE("re",72,41);\r
+aWE("reasonabl",35);\r
+aWE("reconstruction",60,39);\r
+aWE("referenc",51,63,32);\r
+aWE("regard",63,32);\r
+aWE("relativ",74);\r
+aWE("relative",81);\r
+aWE("relevant",12,87);\r
+aWE("remain",87);\r
+aWE("remov",48,53,54,66,68,72,78,79,80,41,42,82,89);\r
+aWE("removeobject",48,89);\r
+aWE("removeweb",60,39);\r
+aWE("repair",0,13,14,16,47,31,66,71,72,78,79,80,41);\r
+aWE("repetition",55,57,42);\r
+aWE("represent",62,32);\r
+aWE("request",34);\r
+aWE("requir",72,35,37,41);\r
+aWE("requireddegre",72,41);\r
+aWE("requirednbsegment",72,41);\r
+aWE("res",66);\r
+aWE("respect",47,74,41);\r
+aWE("restriction",72,41);\r
+aWE("result",0,1,2,4,58,6,7,8,10,13,14,15,16,18,20,21,22,23,24,25,26,27,28,29,30,43,44,45,47,50,53,54,55,56,57,59,60,61,62,63,65,66,67,68,69,70,71,72,73,74,76,77,78,79,80,36,38,39,40,41,42,34,32,81,82,84,85,86,89);\r
+aWE("resultant",72,41);\r
+aWE("retriev",14,41,34);\r
+aWE("return",14,27,28,52,38,39,41,34,89);\r
+aWE("revers",55,68,42);\r
+aWE("revolution",19,67,72,36,41);\r
+aWE("right",12,17,54,35,87);\r
+aWE("rot1d",81);\r
+aWE("rot2d",81);\r
+aWE("rotat",55,67,68,36,42,81);\r
+aWE("rotation",55,66,68,42,81);\r
+aWE("runtimeerror",52,66);\r
+aWE("s",13,15,16,19,56,66,69,78,79,80,39,41,42,34,32,89);\r
+aWE("s1",18,45,70);\r
+aWE("s2",18,45,70);\r
+aWE("salom",3,4,6,7,9,11,19,46,48,31,52,64,66,75,81,89);\r
+aWE("sam",55,72,74,41,81,89);\r
+aWE("sameparamet",72,41);\r
+aWE("satisfy",38);\r
+aWE("sav",37);\r
+aWE("scal",69,42,81);\r
+aWE("script",0,1,2,58,8,10,13,14,15,16,17,18,20,21,22,23,24,25,26,28,29,30,43,44,45,47,50,53,54,55,56,57,59,60,61,62,63,65,67,68,69,70,71,72,73,74,76,77,78,79,80,38,33,82,83,84,85,86,87,89);\r
+aWE("se",87);\r
+aWE("search",37);\r
+aWE("second",8,15,21,24,51,53,54,56,57,60,62,63,75,77,39,40,42,33,82,84,85,88);\r
+aWE("section",2,7,70,39,33);\r
+aWE("seem",66);\r
+aWE("segment",72,74,41);\r
+aWE("select",0,1,2,4,8,5,10,12,13,14,15,16,17,18,20,21,22,23,24,25,26,27,28,29,30,43,44,45,47,48,50,51,53,54,55,56,57,59,60,61,62,63,65,66,67,68,69,70,71,72,73,74,76,77,78,79,80,35,36,37,38,39,40,41,34,32,82,84,85,86,87,88,89);\r
+aWE("selection",43,74,39,32,88,89);\r
+aWE("sens",60,39);\r
+aWE("separat",33);\r
+aWE("serv",22,29,61,67,36,32);\r
+aWE("set",0,12,16,28,30,46,55,59,63,39,41,42,32,88);\r
+aWE("setcolor",11,12,17);\r
+aWE("setdisplaymod",3,4,6,7,9,11,12,19,46,64,66,75,81,87);\r
+aWE("settransparency",3,11,12,46,75,83);\r
+aWE("sew",66,71,41);\r
+aWE("sg",6,48,66,35);\r
+aWE("shad",12,87);\r
+aWE("shap",0,2,4,10,12,13,14,16,18,20,23,27,29,43,44,45,47,48,31,49,52,53,54,55,57,59,60,61,65,66,67,68,69,70,71,72,78,79,80,35,36,38,39,41,42,34,81,82,83,89);\r
+aWE("shape1",38,33);\r
+aWE("shape2",38,33);\r
+aWE("shapelistcompound",19);\r
+aWE("shapes_of_given_typ",27);\r
+aWE("shapesto",41);\r
+aWE("shapetyp",43,46,48,66,39,81,89);\r
+aWE("shapetypeedg",81);\r
+aWE("shapetypefac",81);\r
+aWE("shar",14,41);\r
+aWE("shel",14,20,46,59,73,76,41,42,34,87);\r
+aWE("shell",58,29,46,59,61,67,73,76,36,42,34);\r
+aWE("shift",63,86,89);\r
+aWE("short",12,17,87);\r
+aWE("shortcut",30);\r
+aWE("should",29,50,78,79,38,41);\r
+aWE("show",38);\r
+aWE("shown",51,32);\r
+aWE("sid",62,32);\r
+aWE("sign",59,42);\r
+aWE("similar",62);\r
+aWE("simp",51);\r
+aWE("simpl",55,56,57);\r
+aWE("singl",30);\r
+aWE("six",58,9);\r
+aWE("siz",10,62,72,39,41,32);\r
+aWE("sketch",46,75,74);\r
+aWE("sketcher",46);\r
+aWE("sketcher1",46,75);\r
+aWE("sketcher2",46,75);\r
+aWE("sketcher3",46);\r
+aWE("skip",89);\r
+aWE("small",72,41,32);\r
+aWE("so",30,54);\r
+aWE("solid",58,8,9,21,24,27,29,46,56,59,61,67,76,77,36,39,40,42,34,84);\r
aWE("solid1",9);\r
aWE("solid2",9);\r
-aWE("soon",49,31);\r
-aWE("sort",26);\r
-aWE("sourc",65);\r
-aWE("spac",15,21,60,61,37,31,82);\r
-aWE("specifi",0,8,9,10,16,42,49,54,64,70,78,38,40,31,79);\r
-aWE("specific",56);\r
-aWE("specify",0,66,40,41);\r
-aWE("spher",6,7,11,62,75,39,79);\r
-aWE("sphere1",62);\r
-aWE("sphere2",62);\r
-aWE("sphere3",62);\r
-aWE("splin",21,31);\r
-aWE("split",0,70,40);\r
-aWE("splitangl",70,40);\r
-aWE("splitclosedfac",70,40);\r
-aWE("splitcontinuity",70,40);\r
-aWE("spot",70,40);\r
-aWE("sqrt",50);\r
-aWE("stag",56);\r
-aWE("standard",36);\r
-aWE("start",1,28,52,72,41,31,80,82);\r
-aWE("step",30,53,55,36,41);\r
-aWE("step1",55,41);\r
-aWE("step2",55,41);\r
-aWE("str",72);\r
-aWE("strip",70,40);\r
-aWE("study",3,4,6,7,9,18,45,62,64,73,34,79);\r
-aWE("sub",26,64,77,33,40,85);\r
-aWE("sub_shape_id",64);\r
-aWE("subfacelist",47);\r
-aWE("submenu",5,33,37,40);\r
-aWE("subshap",26,33,38,85);\r
-aWE("subshapeall",26,33);\r
-aWE("subshapeallid",26);\r
-aWE("subshapeallsort",26,45,47,64,79);\r
-aWE("subshapeallsortedid",26);\r
-aWE("subshapeid",85);\r
-aWE("subshapesort",26);\r
-aWE("successful",50);\r
-aWE("sup_fac",64);\r
-aWE("suppres",64,76,77,78,40);\r
-aWE("suppressfac",64,76,40);\r
-aWE("suppresshol",64,77,40);\r
-aWE("suppressinternalwir",64,78,40);\r
-aWE("surfac",29,43,50,57,70,37,40,41,79);\r
-aWE("surfacecontinuity",70,40);\r
-aWE("surfacemod",70,40);\r
-aWE("symmetric",79);\r
-aWE("symmetrical",51,41,79);\r
-aWE("symmetry",51,39,41);\r
-aWE("system",20,23,49,52,75,41,31,79,84);\r
-aWE("t",8,28,75);\r
-aWE("tangent",72);\r
-aWE("target",27,72,38);\r
-aWE("tetrahedral",56);\r
-aWE("textual",72,73);\r
-aWE("theendlc",52,41);\r
-aWE("them",8,26,70,76,40,83);\r
-aWE("theobject",52,41);\r
-aWE("therefor",72);\r
-aWE("theshap",46,64,40);\r
-aWE("thestartlc",52,41);\r
-aWE("thetoleranc",46,40);\r
+aWE("soon",32);\r
+aWE("sort",27);\r
+aWE("sourc",67);\r
+aWE("spac",15,22,62,63,38,32,85);\r
+aWE("specifi",0,8,10,16,43,51,56,66,72,80,39,41,32,81);\r
+aWE("specific",58);\r
+aWE("specify",0,68,41,42);\r
+aWE("spher",6,7,11,64,77,40,81);\r
+aWE("sphere1",64);\r
+aWE("sphere2",64);\r
+aWE("sphere3",64);\r
+aWE("splin",3,22,32);\r
+aWE("split",0,72,41);\r
+aWE("splitangl",72,41);\r
+aWE("splitclosedfac",72,41);\r
+aWE("splitcontinuity",72,41);\r
+aWE("spot",72,41);\r
+aWE("sqrt",52);\r
+aWE("stag",58);\r
+aWE("standard",17);\r
+aWE("start",1,29,54,74,42,32,82,85);\r
+aWE("step",31,55,57,37,42);\r
+aWE("step1",57,42);\r
+aWE("step2",57,42);\r
+aWE("str",74);\r
+aWE("strip",72,41);\r
+aWE("study",3,4,6,7,9,19,46,64,66,75,35,81);\r
+aWE("sub",27,66,79,41,34,89);\r
+aWE("sub_shape_id",66);\r
+aWE("subfacelist",48);\r
+aWE("submenu",5,38,41,34);\r
+aWE("subshap",27,39,34,89);\r
+aWE("subshapeall",27,34);\r
+aWE("subshapeallid",27);\r
+aWE("subshapeallsort",27,46,48,66,81);\r
+aWE("subshapeallsortedid",27);\r
+aWE("subshapeid",89);\r
+aWE("subshapesort",27);\r
+aWE("successful",52);\r
+aWE("sup_fac",66);\r
+aWE("suppres",66,78,79,80,41);\r
+aWE("suppressfac",66,78,41);\r
+aWE("suppresshol",66,79,41);\r
+aWE("suppressinternalwir",66,80,41);\r
+aWE("surfac",30,44,52,59,72,38,41,42,81);\r
+aWE("surfacecontinuity",72,41);\r
+aWE("surfacemod",72,41);\r
+aWE("symmetric",81);\r
+aWE("symmetrical",53,42,81);\r
+aWE("symmetry",53,40,42);\r
+aWE("system",21,24,51,54,77,42,32,81,88);\r
+aWE("t",8,29,48,77);\r
+aWE("tangent",74);\r
+aWE("target",28,74,39);\r
+aWE("tetrahedral",58);\r
+aWE("textual",75,74);\r
+aWE("theendlc",54,42);\r
+aWE("them",8,27,72,78,41,86,89);\r
+aWE("theobject",54,42);\r
+aWE("therefor",74);\r
+aWE("theshap",47,66,41);\r
+aWE("thestartlc",54,42);\r
+aWE("thetoleranc",47,41);\r
aWE("third",8);\r
-aWE("thre",1,3,15,18,21,45,51,60,61,73,79,84);\r
-aWE("tim",21,53,55,61,41,79);\r
-aWE("tmp",64);\r
-aWE("tobezi",70,40);\r
-aWE("toggl",85);\r
-aWE("tol",50);\r
-aWE("tol2d",18,43,35);\r
-aWE("tol3d",18,43,35);\r
-aWE("toleranc",16,43,46,50,70,35,37,40);\r
-aWE("tolerance2d",70,40);\r
-aWE("tolerance3d",64,70,40);\r
-aWE("tool",50,58,37);\r
+aWE("thre",1,3,15,19,22,46,51,53,62,63,75,81,88);\r
+aWE("thu",83);\r
+aWE("tim",22,55,57,63,42,81);\r
+aWE("tobezi",72,41);\r
+aWE("togeth",89);\r
+aWE("tol",52);\r
+aWE("tol2d",19,44,36);\r
+aWE("tol3d",19,44,36);\r
+aWE("toleranc",16,44,47,52,66,72,36,38,41);\r
+aWE("tolerance2d",72,41);\r
+aWE("tolerance3d",66,72,41);\r
+aWE("tool",52,60,38);\r
aWE("top_fac",6);\r
aWE("top_face_ind",6);\r
-aWE("toru",20,62,39,81);\r
-aWE("torus",62);\r
-aWE("torus1",62);\r
-aWE("torus2",62);\r
-aWE("tr1d",79);\r
-aWE("tr2d",79);\r
-aWE("transform",6,17,54,67,38,41,79);\r
+aWE("toru",64,40,84);\r
+aWE("torus",64);\r
+aWE("torus1",64);\r
+aWE("torus2",64);\r
+aWE("tr1d",81);\r
+aWE("tr2d",81);\r
+aWE("transform",6,18,56,69,39,42,81);\r
aWE("transformat",6);\r
-aWE("transformation",6,5,10,42,30,51,52,53,54,55,57,66,67,38,41,79,80);\r
-aWE("translat",53,55,57,41,79,80);\r
-aWE("translation",53,54,55,38,41,79,80);\r
-aWE("translation1",79);\r
-aWE("translation2",79);\r
-aWE("translation3",79);\r
-aWE("transparency",11,12);\r
-aWE("trihedron",49,31);\r
-aWE("trimsiz",3,4,60,31);\r
-aWE("tru",0,16,58,64,37,38,40);\r
-aWE("truncat",20);\r
-aWE("try",29);\r
-aWE("tt",45,73);\r
-aWE("tui",0,1,2,56,8,10,12,13,14,15,16,17,19,20,21,22,23,24,25,26,27,28,29,42,43,44,46,48,49,51,52,53,54,55,57,58,59,60,61,63,65,66,67,68,69,70,71,72,74,75,76,77,78,33,34,35,37,38,39,40,41,32,31,80,81,82,83,85);\r
-aWE("tupl",37);\r
-aWE("two",0,3,4,56,8,9,10,14,17,18,20,24,44,45,46,47,53,54,55,58,73,75,37,38,39,40,41,79,81,84);\r
-aWE("typ",21,26,27,58,70,72,33,37,38,39,40,32,85);\r
-aWE("typeofshap",33);\r
-aWE("underly",16,40);\r
-aWE("unionlist",47);\r
-aWE("up",12,20,34,38,39);\r
-aWE("updat",49,31);\r
-aWE("updateobjbrows",6,47,64);\r
-aWE("us",2,56,16,26,27,43,30,49,54,70,72,78,33,34,35,37,38,40,41,32,31,85);\r
-aWE("useful",0,1,2,56,8,10,12,13,14,15,16,17,19,20,21,22,23,24,25,27,28,29,42,43,44,46,48,51,52,53,54,55,57,58,59,60,61,63,65,66,67,68,69,70,71,72,74,75,76,77,78,32,80,81,82,83,85);\r
-aWE("v",7,62,64,79);\r
-aWE("v1",56);\r
-aWE("v2",56);\r
-aWE("v3",56);\r
-aWE("v4",56);\r
-aWE("val",0,40);\r
-aWE("valid",50,64,37);\r
-aWE("validity",37);\r
-aWE("valu",0,2,8,10,12,16,20,23,28,42,46,49,50,53,55,57,60,64,65,69,70,72,75,35,37,38,39,40,41,31,80,81,82);\r
-aWE("variety",26);\r
-aWE("variou",70,40);\r
-aWE("vector",3,4,7,15,18,20,23,25,28,45,48,49,51,53,55,60,62,64,65,66,72,73,35,39,41,31,79,80,81,82,84);\r
-aWE("vector_arc",3,73);\r
-aWE("vector1",3,18);\r
-aWE("vector1_arc1",18);\r
-aWE("vector1_arc2",18);\r
-aWE("vector2",3,18);\r
-aWE("vector2_arc1",18);\r
-aWE("vector2_arc2",18);\r
-aWE("vector3",18);\r
-aWE("vertex",3,4,7,15,16,18,20,23,24,25,28,50,51,59,60,61,62,64,65,67,75,33,35,37,39,40,41,31,79,81);\r
-aWE("vertex_n",61);\r
-aWE("vertex1",24,33);\r
-aWE("vertex2",24,33);\r
-aWE("vertexmaxtol",37);\r
-aWE("vertexmintol",37);\r
-aWE("vertic",1,3,56,6,8,9,16,18,24,26,45,47,48,62,64,73,33,39,40,41,31,79,80,82);\r
-aWE("via",56,8,28,48,72,75,41,85);\r
-aWE("view",0,10,12,16,42,49,76,77,78,34,37,40,31,83,85);\r
-aWE("viewer",34);\r
-aWE("visibility",34);\r
-aWE("visualization",12,34);\r
-aWE("volum",50,37);\r
-aWE("vr",79);\r
-aWE("vrot1d",79);\r
-aWE("vt",79);\r
-aWE("vtk",34);\r
-aWE("vtr1d",79);\r
-aWE("vtr2d",79);\r
-aWE("vx",72);\r
-aWE("vxy",3,18,45,64,79);\r
+aWE("transformation",6,5,10,43,31,53,54,55,56,57,59,68,69,39,42,81,82);\r
+aWE("translat",55,57,59,42,81,82);\r
+aWE("translation",55,56,57,39,42,81,82);\r
+aWE("translation1",81);\r
+aWE("translation2",81);\r
+aWE("translation3",81);\r
+aWE("transparency",11,12,83);\r
+aWE("transparent",83,87);\r
+aWE("trihedron",32);\r
+aWE("trimsiz",3,4,62,32);\r
+aWE("tru",0,16,60,66,38,39,41);\r
+aWE("truncat",21);\r
+aWE("try",30);\r
+aWE("tt",46,75);\r
+aWE("tui",0,1,2,58,8,10,12,13,14,15,16,17,18,20,21,22,23,24,25,26,27,28,29,30,43,44,45,47,50,51,53,54,55,56,57,59,60,61,62,63,65,67,68,69,70,71,72,73,74,76,77,78,79,80,35,36,38,39,40,41,42,34,33,32,82,83,84,85,86,87,89);\r
+aWE("tupl",38);\r
+aWE("two",0,3,4,58,8,9,10,14,18,19,21,25,45,46,47,48,54,55,56,57,60,75,77,38,39,40,41,42,81,84,88,89);\r
+aWE("typ",22,27,28,60,72,74,38,39,40,41,34,33,89);\r
+aWE("typeofshap",34);\r
+aWE("underly",16,41);\r
+aWE("unionlist",48);\r
+aWE("up",12,17,21,35,39,40,87);\r
+aWE("updat",32);\r
+aWE("updateobjbrows",6,48,66);\r
+aWE("us",2,58,16,27,28,44,31,54,56,72,74,80,35,36,38,39,41,42,34,33,32,83,89);\r
+aWE("useful",0,1,2,58,8,10,13,14,15,16,17,18,20,21,22,23,24,25,26,28,29,30,43,44,45,47,50,53,54,55,56,57,59,60,61,62,63,65,67,68,69,70,71,72,73,74,76,77,78,79,80,33,82,83,84,85,86,87,89);\r
+aWE("v",7,64,66,81);\r
+aWE("v1",58);\r
+aWE("v2",58);\r
+aWE("v3",58);\r
+aWE("v4",58);\r
+aWE("val",0,41);\r
+aWE("valid",52,66,38);\r
+aWE("validity",38);\r
+aWE("valu",0,2,8,10,16,21,24,29,43,47,49,51,52,55,57,59,62,66,67,71,72,74,77,36,38,39,40,41,42,32,82,84,85);\r
+aWE("variety",27);\r
+aWE("variou",72,41);\r
+aWE("vector",3,4,7,15,19,21,24,26,29,46,50,51,53,55,57,62,64,66,67,68,75,74,36,40,42,32,81,82,84,85,88);\r
+aWE("vector_arc",3,75);\r
+aWE("vector1",3,19);\r
+aWE("vector1_arc1",19);\r
+aWE("vector1_arc2",19);\r
+aWE("vector2",3,19);\r
+aWE("vector2_arc1",19);\r
+aWE("vector2_arc2",19);\r
+aWE("vector3",19);\r
+aWE("vertex",3,4,7,15,16,19,21,24,25,26,29,52,53,61,62,63,64,66,67,69,77,36,38,40,41,42,34,32,81,84);\r
+aWE("vertex_n",63);\r
+aWE("vertex1",25,34);\r
+aWE("vertex2",25,34);\r
+aWE("vertexmaxtol",38);\r
+aWE("vertexmintol",38);\r
+aWE("vertic",1,3,58,6,8,9,16,19,25,27,46,48,50,64,66,75,40,41,42,34,32,81,82,85);\r
+aWE("via",58,8,29,30,50,74,77,37,42);\r
+aWE("view",0,10,12,16,43,51,78,79,80,35,38,41,32,86,87,89);\r
+aWE("viewer",35);\r
+aWE("visibility",35);\r
+aWE("visualization",12,35);\r
+aWE("volum",52,38);\r
+aWE("vr",81);\r
+aWE("vrot1d",81);\r
+aWE("vt",81);\r
+aWE("vtk",35);\r
+aWE("vtr1d",81);\r
+aWE("vtr2d",81);\r
+aWE("vxy",3,19,46,66,81);\r
aWE("vxyz",4);\r
-aWE("vz",79);\r
-aWE("w_0",64);\r
-aWE("wantplanarfac",64,33);\r
-aWE("wat",2,38);\r
-aWE("waterdensity",2,4,38);\r
-aWE("way",8,26,28,48,51,53,75);\r
-aWE("weight",2,4,38);\r
-aWE("wf",73);\r
-aWE("what",50);\r
-aWE("whati",50,37);\r
-aWE("wheth",37);\r
-aWE("whil",13,18,50,40);\r
-aWE("whos",29,33,37);\r
-aWE("wid",30);\r
-aWE("will",1,2,8,10,15,17,19,20,21,22,23,24,25,26,27,28,29,42,43,44,48,51,52,53,54,55,57,58,59,60,61,63,65,66,67,68,70,71,72,74,75,36,38,40,41,31,80,81,82,83);\r
-aWE("wir",3,56,13,16,18,26,28,29,45,50,59,64,65,72,73,77,78,33,35,40,79,83);\r
-aWE("wire_clos",64);\r
-aWE("wire_nam",64);\r
-aWE("wire1",18);\r
-aWE("wire2",18);\r
-aWE("wirefram",12);\r
-aWE("wish",26,36);\r
-aWE("within",12,16,40);\r
-aWE("without",64);\r
-aWE("work",53,70,72,34,40,31,84,85);\r
-aWE("workingplan",72);\r
-aWE("ww",45,73);\r
-aWE("x",3,8,25,49,61,72,75,37,31);\r
-aWE("x1",8,39);\r
-aWE("x2",8,39);\r
-aWE("xdx",49,31);\r
-aWE("xdy",49,31);\r
-aWE("xdz",49,31);\r
-aWE("xmax",50,37);\r
-aWE("xmin",50,37);\r
-aWE("xoy",72);\r
-aWE("xyz",31,84);\r
+aWE("vz",81);\r
+aWE("w_0",66);\r
+aWE("wantplanarfac",66,34);\r
+aWE("wat",2,39);\r
+aWE("waterdensity",2,4,39);\r
+aWE("way",8,27,29,50,53,55,77,89);\r
+aWE("weight",2,4,39);\r
+aWE("wf",75);\r
+aWE("what",52);\r
+aWE("whati",52,38);\r
+aWE("wheth",38);\r
+aWE("whil",13,19,52,41,87);\r
+aWE("whos",30,38,34);\r
+aWE("wid",31);\r
+aWE("will",1,2,58,8,10,15,18,20,21,22,23,24,25,26,27,28,29,30,43,44,45,50,51,53,54,55,56,57,59,60,61,62,63,65,67,68,69,70,72,73,74,76,77,37,39,41,42,32,82,84,85,86,89);\r
+aWE("wir",3,58,13,16,19,27,29,30,46,52,61,66,67,75,74,79,80,36,41,34,81,86);\r
+aWE("wire_clos",66);\r
+aWE("wire_nam",66);\r
+aWE("wire1",19);\r
+aWE("wire2",19);\r
+aWE("wirefram",12,87);\r
+aWE("wish",27,37);\r
+aWE("within",16,49,41);\r
+aWE("without",66);\r
+aWE("work",31,55,72,74,35,41,32,88,89);\r
+aWE("workingplan",74);\r
+aWE("ww",46,75);\r
+aWE("x",3,8,26,51,63,74,77,38,32);\r
+aWE("x1",8,40);\r
+aWE("x2",8,40);\r
+aWE("xdx",51,32);\r
+aWE("xdy",51,32);\r
+aWE("xdz",51,32);\r
+aWE("xmax",52,38);\r
+aWE("xmin",52,38);\r
+aWE("xoy",74);\r
+aWE("xyz",32,88);\r
aWE("xz_fac",6);\r
aWE("xz_face_ind",6);\r
-aWE("y",3,8,25,49,61,72,75,37,31);\r
-aWE("y1",8,39);\r
-aWE("y2",8,39);\r
-aWE("ydx",49,31);\r
-aWE("ydy",49,31);\r
-aWE("ydz",49,31);\r
-aWE("ymax",50,37);\r
-aWE("ymin",50,37);\r
-aWE("your",43,69,77,36,37,40,84,85);\r
+aWE("y",3,8,26,51,63,74,77,38,32);\r
+aWE("y1",8,40);\r
+aWE("y2",8,40);\r
+aWE("ydx",51,32);\r
+aWE("ydy",51,32);\r
+aWE("ydz",51,32);\r
+aWE("ymax",52,38);\r
+aWE("ymin",52,38);\r
+aWE("your",17,44,71,79,37,38,41,88,89);\r
+aWE("yourselv",51);\r
aWE("yz_fac",6);\r
aWE("yz_face_ind",6);\r
-aWE("z",2,3,8,49,61,75,37,38,31);\r
-aWE("z1",8,39);\r
-aWE("z2",8,39);\r
-aWE("zero",20);\r
-aWE("zmax",50,37);\r
-aWE("zmin",50,37);\r
+aWE("z",2,3,8,51,63,77,38,39,32);\r
+aWE("z1",8,40);\r
+aWE("z2",8,40);\r
+aWE("zero",21);\r
+aWE("zmax",52,38);\r
+aWE("zmin",52,38);\r
\r
//-->\r
</script>\r
<script language="javascript" src="whtdata.js"></script>\r
<script language="javascript">\r
<!--\r
- aTE(1,93,"GEOM module");\r
+ aTE(1,97,"GEOM module");\r
aTE(2,0,"Introduction to GEOM","files/introduction_to_geom.htm");\r
- aTE(2,0,"Importing\\exporting geometrical objects","files/salome2_sp3_geomtoolsgui_functions.htm");\r
- aTE(1,2,"Managing geometrical objects");\r
- aTE(2,0,"Changing displaying parameters","changing_displaying_parameters.htm");\r
- aTE(2,0,"Displaying\\hiding objects","files/salome2_sp3_displaygui_functions.htm");\r
+ aTE(2,0,"Importing/exporting geometrical objects","files/salome2_sp3_geomtoolsgui_functions.htm");\r
+ aTE(1,6,"Managing geometrical objects");\r
+ aTE(2,0,"Displaying/hiding objects","files/salome2_sp3_displaygui_functions.htm");\r
+ aTE(1,4,"Changing Display Parameters");\r
+ aTE(2,0,"Display Mode","wireframe_and_shading.htm");\r
+ aTE(2,0,"Color","color.htm");\r
+ aTE(2,0,"Transparency","transparency.htm");\r
+ aTE(2,0,"Isolines","isos.htm");\r
aTE(1,33,"Creating geometrical objects");\r
aTE(1,10,"Creation of Basic Geometric Objects");\r
aTE(2,0,"Point","point.htm");\r
aTE(2,0,"Check Free Faces","check_free_faces.htm");\r
aTE(2,0,"Using measurement tools","files/salome2_sp3_measuregui_functions.htm");\r
aTE(1,16,"TUI Scripts");\r
- aTE(2,0,"Changing Displaying Parameters","changing_display_parameters.htm");\r
+ aTE(2,0,"Changing Display Parameters","changing_display_parameters.htm");\r
aTE(1,7,"Creation of Geometric Objects");\r
aTE(2,0,"Basic Geometrical Objects","basic_geometrical_objects.htm");\r
aTE(2,0,"Primitives","primitives.htm");\r
aTE(2,0,"Blocks Operations","blocks_operations.htm");\r
aTE(2,0,"Repairing Operations","repairing_operations.htm");\r
aTE(2,0,"Measurement Tools","measurement_tools.htm");\r
- aTE(2,0,"Module geompy","geompy_doc/namespacegeompy.html");
\r
//-->\r
</script>\r
<p class="ftsbody" >\r
\r
\r
-<a name="bm_{"></a><a name="subkey_{{"></a><a href="../measurement_tools.htm"><b>100x30x100</b></a> <br><nobr><a name="bms_{D"></a><a name="subkey_{D"></a>1d <a href="../blocks_operations.htm"><b>1</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>2</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>3</b></a> <a href="../transformation_operations.htm"><b>4</b></a> </nobr><br><nobr><a name="bms_{E"></a><a name="subkey_{E"></a>1e <a href="../measurement_tools.htm"><b>1</b></a> <a href="../repairing_operations.htm"><b>2</b></a> </nobr><br><nobr><a name="bms_{S"></a><a name="subkey_{S"></a>1st <a href="../files/salome2_sp3_basicgui_functions.htm"><b>1</b></a> <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>2</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>3</b></a> <a href="../files/salome2_sp3_primitivegui_functions.htm"><b>4</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>5</b></a> <a href="../local_coordinate_system.htm"><b>6</b></a> </nobr><br><nobr><a name="bms_{D"></a><a name="subkey_{D"></a>2d <a href="../blocks_operations.htm"><b>1</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>2</b></a> <a href="../filling.htm"><b>3</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>4</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>5</b></a> <a href="../files/salome2_sp3_generationgui_functions.htm"><b>6</b></a> <a href="../files/salome2_sp3_buildgui_functions.htm"><b>7</b></a> <a href="../files/salome2_sp3_booleangui_functions.htm"><b>8</b></a> <a href="../transformation_operations.htm"><b>9</b></a> <a href="../shape_processing.htm"><b>10</b></a> <a href="../repairing_operations.htm"><b>11</b></a> </nobr><br><nobr><a name="bms_{N"></a><a name="subkey_{N"></a>2nd <a href="../files/salome2_sp3_basicgui_functions.htm"><b>1</b></a> <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>2</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>3</b></a> <a href="../files/salome2_sp3_primitivegui_functions.htm"><b>4</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>5</b></a> <a href="../local_coordinate_system.htm"><b>6</b></a> </nobr><br><a name="bms_{S"></a><a name="subkey_{S"></a><a href="../files/salome2_sp3_transformationgui_functions.htm"><b>2st</b></a> <br><nobr><a name="bms_{D"></a><a name="subkey_{D"></a>3d <a href="../circle.htm"><b>1</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>2</b></a> <a href="../curve.htm"><b>3</b></a> <a href="../filling.htm"><b>4</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>5</b></a> <a href="../files/salome2_sp3_primitivegui_functions.htm"><b>6</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>7</b></a> <a href="../files/salome2_sp3_measuregui_functions.htm"><b>8</b></a> <a href="../files/salome2_sp3_generationgui_functions.htm"><b>9</b></a> <a href="../files/salome2_sp3_displaygui_functions.htm"><b>10</b></a> <a href="../files/salome2_sp3_buildgui_functions.htm"><b>11</b></a> <a href="../files/salome2_sp3_booleangui_functions.htm"><b>12</b></a> <a href="../point.htm"><b>13</b></a> <a href="../plane.htm"><b>14</b></a> <a href="../partition.htm"><b>15</b></a> <a href="../local_coordinate_system.htm"><b>16</b></a> <a href="../suppress_faces.htm"><b>17</b></a> <a href="../shape_processing.htm"><b>18</b></a> <a href="../repairing_operations.htm"><b>19</b></a> <a href="../vector.htm"><b>20</b></a> </nobr><br><nobr><a name="bms_{R"></a><a name="subkey_{R"></a>3rd <a href="../files/salome2_sp3_basicgui_functions.htm"><b>1</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>2</b></a> <a href="../local_coordinate_system.htm"><b>3</b></a> </nobr><br><a name="bms_{S"></a><a name="subkey_{S"></a><a href="../files/salome2_sp3_transformationgui_functions.htm"><b>3st</b></a> <br>\r
+<a name="bm_{"></a><a name="subkey_{{"></a><a href="../measurement_tools.htm"><b>100x30x100</b></a> <br><nobr><a name="bms_{D"></a><a name="subkey_{D"></a>1d <a href="../blocks_operations.htm"><b>1</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>2</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>3</b></a> <a href="../transformation_operations.htm"><b>4</b></a> </nobr><br><nobr><a name="bms_{E"></a><a name="subkey_{E"></a>1e <a href="../measurement_tools.htm"><b>1</b></a> <a href="../repairing_operations.htm"><b>2</b></a> </nobr><br><nobr><a name="bms_{S"></a><a name="subkey_{S"></a>1st <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>1</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>2</b></a> <a href="../files/salome2_sp3_primitivegui_functions.htm"><b>3</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>4</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>5</b></a> </nobr><br><nobr><a name="bms_{D"></a><a name="subkey_{D"></a>2d <a href="../blocks_operations.htm"><b>1</b></a> <a href="../filling.htm"><b>2</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>3</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>4</b></a> <a href="../files/salome2_sp3_generationgui_functions.htm"><b>5</b></a> <a href="../files/salome2_sp3_buildgui_functions.htm"><b>6</b></a> <a href="../files/salome2_sp3_booleangui_functions.htm"><b>7</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>8</b></a> <a href="../shape_processing.htm"><b>9</b></a> <a href="../repairing_operations.htm"><b>10</b></a> <a href="../transformation_operations.htm"><b>11</b></a> </nobr><br><nobr><a name="bms_{N"></a><a name="subkey_{N"></a>2nd <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>1</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>2</b></a> <a href="../files/salome2_sp3_primitivegui_functions.htm"><b>3</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>4</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>5</b></a> </nobr><br><a name="bms_{S"></a><a name="subkey_{S"></a><a href="../files/salome2_sp3_transformationgui_functions.htm"><b>2st</b></a> <br><nobr><a name="bms_{D"></a><a name="subkey_{D"></a>3d <a href="../circle.htm"><b>1</b></a> <a href="../changing_displaying_parameters.htm"><b>2</b></a> <a href="../curve.htm"><b>3</b></a> <a href="../filling.htm"><b>4</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>5</b></a> <a href="../files/salome2_sp3_primitivegui_functions.htm"><b>6</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>7</b></a> <a href="../files/salome2_sp3_measuregui_functions.htm"><b>8</b></a> <a href="../files/salome2_sp3_generationgui_functions.htm"><b>9</b></a> <a href="../files/salome2_sp3_displaygui_functions.htm"><b>10</b></a> <a href="../files/salome2_sp3_buildgui_functions.htm"><b>11</b></a> <a href="../files/salome2_sp3_booleangui_functions.htm"><b>12</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>13</b></a> <a href="../point.htm"><b>14</b></a> <a href="../plane.htm"><b>15</b></a> <a href="../partition.htm"><b>16</b></a> <a href="../local_coordinate_system.htm"><b>17</b></a> <a href="../suppress_faces.htm"><b>18</b></a> <a href="../shape_processing.htm"><b>19</b></a> <a href="../repairing_operations.htm"><b>20</b></a> <a href="../working_with_groups.htm"><b>21</b></a> <a href="../wireframe_and_shading.htm"><b>22</b></a> <a href="../vector.htm"><b>23</b></a> </nobr><br><nobr><a name="bms_{R"></a><a name="subkey_{R"></a>3rd <a href="../files/salome2_sp3_operationgui_functions.htm"><b>1</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>2</b></a> </nobr><br><a name="bms_{S"></a><a name="subkey_{S"></a><a href="../files/salome2_sp3_transformationgui_functions.htm"><b>3st</b></a> <br>\r
<br><br>\r
-<a name="bm_A"></a><a name="subkey_AB"></a><a href="../sketcher.htm"><b>able</b></a> <br><a href="../sketcher.htm"><b>absolute</b></a> <br><nobr><a name="bms_AC"></a><a name="subkey_AC"></a>accessible <a href="../box.htm"><b>1</b></a> <a href="../extrusion.htm"><b>2</b></a> <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>3</b></a> <a href="../line.htm"><b>4</b></a> <a href="../sphere.htm"><b>5</b></a> </nobr><br><nobr>accordance <a href="../add_point_on_edge.htm"><b>1</b></a> <a href="../close_contour.htm"><b>2</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>3</b></a> </nobr><br><nobr>according <a href="../add_point_on_edge.htm"><b>1</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>2</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>3</b></a> <a href="../local_coordinate_system.htm"><b>4</b></a> <a href="../shape_processing.htm"><b>5</b></a> </nobr><br><nobr>achieve <a href="../files/salome2_sp3_repairgui_functions.htm"><b>1</b></a> <a href="../shape_processing.htm"><b>2</b></a> </nobr><br><nobr><a name="bms_AD"></a><a name="subkey_AD"></a>add <a href="../building_by_blocks.htm"><b>1</b></a> <a href="../boolean_operations.htm"><b>2</b></a> <a href="../blocks_operations.htm"><b>3</b></a> <a href="../basic_operations.htm"><b>4</b></a> <a href="../basic_geometrical_objects.htm"><b>5</b></a> <a href="../add_point_on_edge.htm"><b>6</b></a> <a href="../complex_objects.htm"><b>7</b></a> <a href="../groups.htm"><b>8</b></a> <a href="../geometrical_objects.htm"><b>9</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>10</b></a> <a href="../primitives.htm"><b>11</b></a> <a href="../transformation_operations.htm"><b>12</b></a> <a href="../sketcher_tui.htm"><b>13</b></a> <a href="../repairing_operations.htm"><b>14</b></a> </nobr><br><nobr>added <a href="../close_contour.htm"><b>1</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>2</b></a> <a href="../working_with_groups.htm"><b>3</b></a> </nobr><br><a href="../groups.htm"><b>adding</b></a> <br><nobr>addobject <a href="../groups.htm"><b>1</b></a> <a href="../working_with_groups.htm"><b>2</b></a> </nobr><br><nobr>addtostudy <a href="../changing_display_parameters.htm"><b>1</b></a> <a href="../building_by_blocks.htm"><b>2</b></a> <a href="../boolean_operations.htm"><b>3</b></a> <a href="../blocks_operations.htm"><b>4</b></a> <a href="../basic_operations.htm"><b>5</b></a> <a href="../basic_geometrical_objects.htm"><b>6</b></a> <a href="../complex_objects.htm"><b>7</b></a> <a href="../groups.htm"><b>8</b></a> <a href="../geometrical_objects.htm"><b>9</b></a> <a href="../primitives.htm"><b>10</b></a> <a href="../transformation_operations.htm"><b>11</b></a> <a href="../sketcher_tui.htm"><b>12</b></a> <a href="../repairing_operations.htm"><b>13</b></a> </nobr><br><nobr>addtostudyinfather <a href="../blocks_operations.htm"><b>1</b></a> <a href="../repairing_operations.htm"><b>2</b></a> </nobr><br><a href="../files/salome2_sp3_repairgui_functions.htm"><b>adjustment</b></a> <br><nobr>advance <a href="../box.htm"><b>1</b></a> <a href="../extrusion.htm"><b>2</b></a> <a href="../sphere.htm"><b>3</b></a> </nobr><br><nobr>advanced <a href="../face.htm"><b>1</b></a> <a href="../edge.htm"><b>2</b></a> <a href="../compound.htm"><b>3</b></a> <a href="../geometrical_objects.htm"><b>4</b></a> <a href="../files/salome2_sp3_generationgui_functions.htm"><b>5</b></a> <a href="../files/salome2_sp3_buildgui_functions.htm"><b>6</b></a> <a href="../solid.htm"><b>7</b></a> <a href="../shell.htm"><b>8</b></a> <a href="../wire.htm"><b>9</b></a> </nobr><br><a name="bms_AI"></a><a name="subkey_AI"></a><a href="../files/salome2_sp3_operationgui_functions.htm"><b>aimed</b></a> <br><nobr><a name="bms_AL"></a><a name="subkey_AL"></a>algorithm <a href="../files/salome2_sp3_operationgui_functions.htm"><b>1</b></a> <a href="../partition.htm"><b>2</b></a> <a href="../sketcher.htm"><b>3</b></a> </nobr><br><nobr>algorithms <a href="../circle.htm"><b>1</b></a> <a href="../box.htm"><b>2</b></a> <a href="../cylinder.htm"><b>3</b></a> <a href="../curve.htm"><b>4</b></a> <a href="../cone.htm"><b>5</b></a> <a href="../point.htm"><b>6</b></a> <a href="../plane.htm"><b>7</b></a> <a href="../sphere.htm"><b>8</b></a> <a href="../working_plane.htm"><b>9</b></a> <a href="../vector.htm"><b>10</b></a> <a href="../turus.htm"><b>11</b></a> </nobr><br><a href="../repairing_operations.htm"><b>all_faces</b></a> <br><nobr>allowing <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>1</b></a> <a href="../files/salome2_sp3_geomtoolsgui_functions.htm"><b>2</b></a> </nobr><br><nobr>allows <a href="../chamfer.htm"><b>1</b></a> <a href="../explode.htm"><b>2</b></a> <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>3</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>4</b></a> <a href="../newentity_blocks.htm"><b>5</b></a> <a href="../multi_rotation.htm"><b>6</b></a> <a href="../modify_the_location.htm"><b>7</b></a> <a href="../mirror_image.htm"><b>8</b></a> <a href="../suppress_holes.htm"><b>9</b></a> <a href="../sketcher.htm"><b>10</b></a> <a href="../sewing.htm"><b>11</b></a> <a href="../rotation.htm"><b>12</b></a> <a href="../working_with_groups.htm"><b>13</b></a> <a href="../translation.htm"><b>14</b></a> </nobr><br><nobr>along <a href="../chamfer.htm"><b>1</b></a> <a href="../box.htm"><b>2</b></a> <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>3</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>4</b></a> <a href="../files/salome2_sp3_generationgui_functions.htm"><b>5</b></a> <a href="../pipe_creation.htm"><b>6</b></a> <a href="../offset_surface.htm"><b>7</b></a> <a href="../multi_translation.htm"><b>8</b></a> <a href="../transformation_operations.htm"><b>9</b></a> <a href="../translation.htm"><b>10</b></a> </nobr><br><a href="../files/salome2_sp3_booleangui_functions.htm"><b>alongside</b></a> <br><a href="../groups.htm"><b>already</b></a> <br><nobr><a name="bms_AN"></a><a name="subkey_AN"></a>angle <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>1</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>2</b></a> <a href="../files/salome2_sp3_generationgui_functions.htm"><b>3</b></a> <a href="../multi_rotation.htm"><b>4</b></a> <a href="../transformation_operations.htm"><b>5</b></a> <a href="../sketcher.htm"><b>6</b></a> <a href="../shape_processing.htm"><b>7</b></a> <a href="../rotation.htm"><b>8</b></a> <a href="../revolution.htm"><b>9</b></a> <a href="../repairing_operations.htm"><b>10</b></a> </nobr><br><nobr>another <a href="../extrusion.htm"><b>1</b></a> <a href="../cut.htm"><b>2</b></a> <a href="../point.htm"><b>3</b></a> <a href="../plane.htm"><b>4</b></a> <a href="../line.htm"><b>5</b></a> <a href="../sphere.htm"><b>6</b></a> </nobr><br><nobr>any <a href="../archimede.htm"><b>1</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>2</b></a> <a href="../partition.htm"><b>3</b></a> <a href="../shape_processing.htm"><b>4</b></a> <a href="../rotation.htm"><b>5</b></a> <a href="../translation.htm"><b>6</b></a> </nobr><br><nobr><a name="bms_AP"></a><a name="subkey_AP"></a>append <a href="../complex_objects.htm"><b>1</b></a> <a href="../transformation_operations.htm"><b>2</b></a> </nobr><br><nobr>applicable <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>1</b></a> <a href="../offset_surface.htm"><b>2</b></a> </nobr><br><nobr>applied <a href="../chamfer.htm"><b>1</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>2</b></a> </nobr><br><nobr>apply <a href="../files/salome2_sp3_basicgui_functions.htm"><b>1</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>2</b></a> <a href="../local_coordinate_system.htm"><b>3</b></a> <a href="../transformation_operations.htm"><b>4</b></a> </nobr><br><nobr>applying <a href="../files/salome2_sp3_repairgui_functions.htm"><b>1</b></a> <a href="../shape_processing.htm"><b>2</b></a> </nobr><br><nobr>approximation <a href="../files/salome2_sp3_repairgui_functions.htm"><b>1</b></a> <a href="../shape_processing.htm"><b>2</b></a> </nobr><br><nobr><a name="bms_AR"></a><a name="subkey_AR"></a>arc <a href="../basic_geometrical_objects.htm"><b>1</b></a> <a href="../arc.htm"><b>2</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>3</b></a> <a href="../complex_objects.htm"><b>4</b></a> <a href="../geometrical_objects.htm"><b>5</b></a> <a href="../transformation_operations.htm"><b>6</b></a> <a href="../sketcher_tui.htm"><b>7</b></a> <a href="../sketcher.htm"><b>8</b></a> <a href="../repairing_operations.htm"><b>9</b></a> </nobr><br><a href="../complex_objects.htm"><b>arc1</b></a> <br><a href="../complex_objects.htm"><b>arc2</b></a> <br><nobr>archimede <a href="../basic_operations.htm"><b>1</b></a> <a href="../archimede.htm"><b>2</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>3</b></a> </nobr><br><nobr>arcs <a href="../complex_objects.htm"><b>1</b></a> <a href="../sketcher.htm"><b>2</b></a> </nobr><br><a href="../measurement_tools.htm"><b>area</b></a> <br><nobr>argument <a href="../face.htm"><b>1</b></a> <a href="../files/salome2_sp3_booleangui_functions.htm"><b>2</b></a> <a href="../sketcher.htm"><b>3</b></a> </nobr><br><nobr>arguments <a href="../circle.htm"><b>1</b></a> <a href="../check_free_faces.htm"><b>2</b></a> <a href="../check_free_boundaries.htm"><b>3</b></a> <a href="../changing_displaying_parameters.htm"><b>4</b></a> <a href="../chamfer.htm"><b>5</b></a> <a href="../box.htm"><b>6</b></a> <a href="../archimede.htm"><b>7</b></a> <a href="../arc.htm"><b>8</b></a> <a href="../add_point_on_edge.htm"><b>9</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>10</b></a> <a href="../face.htm"><b>11</b></a> <a href="../extrusion.htm"><b>12</b></a> <a href="../explode_on_blocks.htm"><b>13</b></a> <a href="../explode.htm"><b>14</b></a> <a href="../ellipse.htm"><b>15</b></a> <a href="../edge.htm"><b>16</b></a> <a href="../cylinder.htm"><b>17</b></a> <a href="../cut.htm"><b>18</b></a> <a href="../curve.htm"><b>19</b></a> <a href="../cone.htm"><b>20</b></a> <a href="../compound.htm"><b>21</b></a> <a href="../common.htm"><b>22</b></a> <a href="../close_contour.htm"><b>23</b></a> <a href="../glue_faces.htm"><b>24</b></a> <a href="../fuse.htm"><b>25</b></a> <a href="../filling.htm"><b>26</b></a> <a href="../fillet.htm"><b>27</b></a> <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>28</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>29</b></a> <a href="../files/salome2_sp3_primitivegui_functions.htm"><b>30</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>31</b></a> <a href="../files/salome2_sp3_measuregui_functions.htm"><b>32</b></a> <a href="../files/salome2_sp3_generationgui_functions.htm"><b>33</b></a> <a href="../files/salome2_sp3_buildgui_functions.htm"><b>34</b></a> <a href="../propagate.htm"><b>35</b></a> <a href="../point.htm"><b>36</b></a> <a href="../plane.htm"><b>37</b></a> <a href="../pipe_creation.htm"><b>38</b></a> <a href="../partition.htm"><b>39</b></a> <a href="../offset_surface.htm"><b>40</b></a> <a href="../newentity_blocks.htm"><b>41</b></a> <a href="../multi_translation.htm"><b>42</b></a> <a href="../multi_transformation.htm"><b>43</b></a> <a href="../multi_rotation.htm"><b>44</b></a> <a href="../modify_the_location.htm"><b>45</b></a> <a href="../mirror_image.htm"><b>46</b></a> <a href="../local_coordinate_system.htm"><b>47</b></a> <a href="../line.htm"><b>48</b></a> <a href="../suppress_internal_wires.htm"><b>49</b></a> <a href="../suppress_holes.htm"><b>50</b></a> <a href="../suppress_faces.htm"><b>51</b></a> <a href="../sphere.htm"><b>52</b></a> <a href="../solid.htm"><b>53</b></a> <a href="../sketcher.htm"><b>54</b></a> <a href="../shell.htm"><b>55</b></a> <a href="../shape_processing.htm"><b>56</b></a> <a href="../sewing.htm"><b>57</b></a> <a href="../section.htm"><b>58</b></a> <a href="../scale_transform.htm"><b>59</b></a> <a href="../rotation.htm"><b>60</b></a> <a href="../revolution.htm"><b>61</b></a> <a href="../working_with_groups.htm"><b>62</b></a> <a href="../working_plane.htm"><b>63</b></a> <a href="../wire.htm"><b>64</b></a> <a href="../vector.htm"><b>65</b></a> <a href="../turus.htm"><b>66</b></a> <a href="../translation.htm"><b>67</b></a> </nobr><br><nobr>around <a href="../files/salome2_sp3_generationgui_functions.htm"><b>1</b></a> <a href="../multi_rotation.htm"><b>2</b></a> <a href="../transformation_operations.htm"><b>3</b></a> <a href="../revolution.htm"><b>4</b></a> </nobr><br><a name="bms_AS"></a><a name="subkey_AS"></a><a href="../files/salome2_sp3_displaygui_functions.htm"><b>associated</b></a> <br><a name="bms_AT"></a><a name="subkey_AT"></a><a href="../files/salome2_sp3_displaygui_functions.htm"><b>attributes</b></a> <br><nobr><a name="bms_AU"></a><a name="subkey_AU"></a>automatically <a href="../files/salome2_sp3_basicgui_functions.htm"><b>1</b></a> <a href="../newentity_blocks.htm"><b>2</b></a> <a href="../local_coordinate_system.htm"><b>3</b></a> </nobr><br><nobr><a name="bms_AV"></a><a name="subkey_AV"></a>available <a href="../add_point_on_edge.htm"><b>1</b></a> <a href="../close_contour.htm"><b>2</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>3</b></a> <a href="../files/salome2_sp3_displaygui_functions.htm"><b>4</b></a> <a href="../newentity_blocks.htm"><b>5</b></a> <a href="../suppress_internal_wires.htm"><b>6</b></a> <a href="../suppress_holes.htm"><b>7</b></a> <a href="../suppress_faces.htm"><b>8</b></a> <a href="../sketcher.htm"><b>9</b></a> <a href="../working_with_groups.htm"><b>10</b></a> </nobr><br><nobr><a name="bms_AX"></a><a name="subkey_AX"></a>axes <a href="../box.htm"><b>1</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>2</b></a> <a href="../local_coordinate_system.htm"><b>3</b></a> <a href="../translation.htm"><b>4</b></a> </nobr><br><nobr>axis <a href="../files/salome2_sp3_basicgui_functions.htm"><b>1</b></a> <a href="../cylinder.htm"><b>2</b></a> <a href="../cone.htm"><b>3</b></a> <a href="../complex_objects.htm"><b>4</b></a> <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>5</b></a> <a href="../files/salome2_sp3_primitivegui_functions.htm"><b>6</b></a> <a href="../files/salome2_sp3_measuregui_functions.htm"><b>7</b></a> <a href="../files/salome2_sp3_generationgui_functions.htm"><b>8</b></a> <a href="../multi_translation.htm"><b>9</b></a> <a href="../multi_rotation.htm"><b>10</b></a> <a href="../mirror_image.htm"><b>11</b></a> <a href="../local_coordinate_system.htm"><b>12</b></a> <a href="../transformation_operations.htm"><b>13</b></a> <a href="../rotation.htm"><b>14</b></a> <a href="../revolution.htm"><b>15</b></a> </nobr><br>\r
+<a name="bm_A"></a><a name="subkey_AB"></a><a href="../sketcher.htm"><b>able</b></a> <br><a href="../modify_the_location.htm"><b>above</b></a> <br><a href="../sketcher.htm"><b>absolute</b></a> <br><a href="../transparency.htm"><b>absolutely</b></a> <br><nobr><a name="bms_AC"></a><a name="subkey_AC"></a>accessible <a href="../box.htm"><b>1</b></a> <a href="../face.htm"><b>2</b></a> <a href="../extrusion.htm"><b>3</b></a> <a href="../color.htm"><b>4</b></a> <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>5</b></a> <a href="../line.htm"><b>6</b></a> <a href="../sphere.htm"><b>7</b></a> </nobr><br><nobr>accordance <a href="../add_point_on_edge.htm"><b>1</b></a> <a href="../close_contour.htm"><b>2</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>3</b></a> </nobr><br><nobr>according <a href="../add_point_on_edge.htm"><b>1</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>2</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>3</b></a> <a href="../shape_processing.htm"><b>4</b></a> </nobr><br><nobr>achieve <a href="../files/salome2_sp3_repairgui_functions.htm"><b>1</b></a> <a href="../shape_processing.htm"><b>2</b></a> </nobr><br><nobr><a name="bms_AD"></a><a name="subkey_AD"></a>add <a href="../building_by_blocks.htm"><b>1</b></a> <a href="../boolean_operations.htm"><b>2</b></a> <a href="../blocks_operations.htm"><b>3</b></a> <a href="../basic_operations.htm"><b>4</b></a> <a href="../basic_geometrical_objects.htm"><b>5</b></a> <a href="../add_point_on_edge.htm"><b>6</b></a> <a href="../complex_objects.htm"><b>7</b></a> <a href="../geometrical_objects.htm"><b>8</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>9</b></a> <a href="../groups.htm"><b>10</b></a> <a href="../sketcher_tui.htm"><b>11</b></a> <a href="../repairing_operations.htm"><b>12</b></a> <a href="../primitives.htm"><b>13</b></a> <a href="../working_with_groups.htm"><b>14</b></a> <a href="../transformation_operations.htm"><b>15</b></a> </nobr><br><nobr>added <a href="../close_contour.htm"><b>1</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>2</b></a> <a href="../working_with_groups.htm"><b>3</b></a> </nobr><br><nobr>adding <a href="../files/salome2_sp3_geomtoolsgui_functions.htm"><b>1</b></a> <a href="../groups.htm"><b>2</b></a> </nobr><br><nobr>addobject <a href="../groups.htm"><b>1</b></a> <a href="../working_with_groups.htm"><b>2</b></a> </nobr><br><nobr>addtostudy <a href="../changing_display_parameters.htm"><b>1</b></a> <a href="../building_by_blocks.htm"><b>2</b></a> <a href="../boolean_operations.htm"><b>3</b></a> <a href="../blocks_operations.htm"><b>4</b></a> <a href="../basic_operations.htm"><b>5</b></a> <a href="../basic_geometrical_objects.htm"><b>6</b></a> <a href="../complex_objects.htm"><b>7</b></a> <a href="../geometrical_objects.htm"><b>8</b></a> <a href="../groups.htm"><b>9</b></a> <a href="../sketcher_tui.htm"><b>10</b></a> <a href="../repairing_operations.htm"><b>11</b></a> <a href="../primitives.htm"><b>12</b></a> <a href="../transformation_operations.htm"><b>13</b></a> </nobr><br><nobr>addtostudyinfather <a href="../blocks_operations.htm"><b>1</b></a> <a href="../repairing_operations.htm"><b>2</b></a> </nobr><br><a href="../files/salome2_sp3_repairgui_functions.htm"><b>adjustment</b></a> <br><nobr>advance <a href="../box.htm"><b>1</b></a> <a href="../extrusion.htm"><b>2</b></a> <a href="../sphere.htm"><b>3</b></a> </nobr><br><nobr>advanced <a href="../face.htm"><b>1</b></a> <a href="../edge.htm"><b>2</b></a> <a href="../compound.htm"><b>3</b></a> <a href="../geometrical_objects.htm"><b>4</b></a> <a href="../files/salome2_sp3_generationgui_functions.htm"><b>5</b></a> <a href="../files/salome2_sp3_buildgui_functions.htm"><b>6</b></a> <a href="../solid.htm"><b>7</b></a> <a href="../shell.htm"><b>8</b></a> <a href="../wire.htm"><b>9</b></a> </nobr><br><a name="bms_AI"></a><a name="subkey_AI"></a><a href="../files/salome2_sp3_operationgui_functions.htm"><b>aimed</b></a> <br><nobr><a name="bms_AL"></a><a name="subkey_AL"></a>algorithm <a href="../files/salome2_sp3_operationgui_functions.htm"><b>1</b></a> <a href="../partition.htm"><b>2</b></a> <a href="../modify_the_location.htm"><b>3</b></a> <a href="../local_coordinate_system.htm"><b>4</b></a> <a href="../sketcher.htm"><b>5</b></a> </nobr><br><nobr>algorithms <a href="../circle.htm"><b>1</b></a> <a href="../box.htm"><b>2</b></a> <a href="../cylinder.htm"><b>3</b></a> <a href="../curve.htm"><b>4</b></a> <a href="../cone.htm"><b>5</b></a> <a href="../point.htm"><b>6</b></a> <a href="../plane.htm"><b>7</b></a> <a href="../local_coordinate_system.htm"><b>8</b></a> <a href="../sphere.htm"><b>9</b></a> <a href="../working_plane.htm"><b>10</b></a> <a href="../vector.htm"><b>11</b></a> <a href="../turus.htm"><b>12</b></a> </nobr><br><a href="../repairing_operations.htm"><b>all_faces</b></a> <br><a href="../files/salome2_sp3_transformationgui_functions.htm"><b>allowing</b></a> <br><nobr>allows <a href="../chamfer.htm"><b>1</b></a> <a href="../explode.htm"><b>2</b></a> <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>3</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>4</b></a> <a href="../newentity_blocks.htm"><b>5</b></a> <a href="../multi_rotation.htm"><b>6</b></a> <a href="../modify_the_location.htm"><b>7</b></a> <a href="../mirror_image.htm"><b>8</b></a> <a href="../suppress_holes.htm"><b>9</b></a> <a href="../sketcher.htm"><b>10</b></a> <a href="../sewing.htm"><b>11</b></a> <a href="../rotation.htm"><b>12</b></a> <a href="../translation.htm"><b>13</b></a> </nobr><br><nobr>along <a href="../chamfer.htm"><b>1</b></a> <a href="../box.htm"><b>2</b></a> <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>3</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>4</b></a> <a href="../files/salome2_sp3_generationgui_functions.htm"><b>5</b></a> <a href="../pipe_creation.htm"><b>6</b></a> <a href="../offset_surface.htm"><b>7</b></a> <a href="../multi_translation.htm"><b>8</b></a> <a href="../translation.htm"><b>9</b></a> <a href="../transformation_operations.htm"><b>10</b></a> </nobr><br><a href="../files/salome2_sp3_booleangui_functions.htm"><b>alongside</b></a> <br><a href="../groups.htm"><b>already</b></a> <br><nobr><a name="bms_AN"></a><a name="subkey_AN"></a>angle <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>1</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>2</b></a> <a href="../files/salome2_sp3_generationgui_functions.htm"><b>3</b></a> <a href="../multi_rotation.htm"><b>4</b></a> <a href="../sketcher.htm"><b>5</b></a> <a href="../shape_processing.htm"><b>6</b></a> <a href="../rotation.htm"><b>7</b></a> <a href="../revolution.htm"><b>8</b></a> <a href="../repairing_operations.htm"><b>9</b></a> <a href="../transformation_operations.htm"><b>10</b></a> </nobr><br><nobr>another <a href="../extrusion.htm"><b>1</b></a> <a href="../cut.htm"><b>2</b></a> <a href="../point.htm"><b>3</b></a> <a href="../plane.htm"><b>4</b></a> <a href="../line.htm"><b>5</b></a> <a href="../sphere.htm"><b>6</b></a> </nobr><br><nobr>any <a href="../archimede.htm"><b>1</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>2</b></a> <a href="../partition.htm"><b>3</b></a> <a href="../modify_the_location.htm"><b>4</b></a> <a href="../shape_processing.htm"><b>5</b></a> <a href="../rotation.htm"><b>6</b></a> <a href="../translation.htm"><b>7</b></a> </nobr><br><a name="bms_AP"></a><a name="subkey_AP"></a><a href="../working_with_groups.htm"><b>appear</b></a> <br><nobr>append <a href="../complex_objects.htm"><b>1</b></a> <a href="../transformation_operations.htm"><b>2</b></a> </nobr><br><nobr>applicable <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>1</b></a> <a href="../offset_surface.htm"><b>2</b></a> </nobr><br><nobr>applied <a href="../chamfer.htm"><b>1</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>2</b></a> </nobr><br><nobr>apply <a href="../files/salome2_sp3_repairgui_functions.htm"><b>1</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>2</b></a> <a href="../local_coordinate_system.htm"><b>3</b></a> <a href="../working_with_groups.htm"><b>4</b></a> <a href="../transformation_operations.htm"><b>5</b></a> </nobr><br><nobr>applying <a href="../files/salome2_sp3_repairgui_functions.htm"><b>1</b></a> <a href="../shape_processing.htm"><b>2</b></a> </nobr><br><nobr>approximation <a href="../files/salome2_sp3_repairgui_functions.htm"><b>1</b></a> <a href="../shape_processing.htm"><b>2</b></a> </nobr><br><nobr><a name="bms_AR"></a><a name="subkey_AR"></a>arc <a href="../basic_geometrical_objects.htm"><b>1</b></a> <a href="../arc.htm"><b>2</b></a> <a href="../complex_objects.htm"><b>3</b></a> <a href="../geometrical_objects.htm"><b>4</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>5</b></a> <a href="../sketcher_tui.htm"><b>6</b></a> <a href="../sketcher.htm"><b>7</b></a> <a href="../repairing_operations.htm"><b>8</b></a> <a href="../transformation_operations.htm"><b>9</b></a> </nobr><br><a href="../complex_objects.htm"><b>arc1</b></a> <br><a href="../complex_objects.htm"><b>arc2</b></a> <br><nobr>archimede <a href="../basic_operations.htm"><b>1</b></a> <a href="../archimede.htm"><b>2</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>3</b></a> </nobr><br><nobr>arcs <a href="../complex_objects.htm"><b>1</b></a> <a href="../sketcher.htm"><b>2</b></a> </nobr><br><a href="../measurement_tools.htm"><b>area</b></a> <br><nobr>argument <a href="../face.htm"><b>1</b></a> <a href="../files/salome2_sp3_booleangui_functions.htm"><b>2</b></a> <a href="../sketcher.htm"><b>3</b></a> </nobr><br><nobr>arguments <a href="../circle.htm"><b>1</b></a> <a href="../check_free_faces.htm"><b>2</b></a> <a href="../check_free_boundaries.htm"><b>3</b></a> <a href="../chamfer.htm"><b>4</b></a> <a href="../box.htm"><b>5</b></a> <a href="../archimede.htm"><b>6</b></a> <a href="../arc.htm"><b>7</b></a> <a href="../add_point_on_edge.htm"><b>8</b></a> <a href="../face.htm"><b>9</b></a> <a href="../extrusion.htm"><b>10</b></a> <a href="../explode_on_blocks.htm"><b>11</b></a> <a href="../explode.htm"><b>12</b></a> <a href="../ellipse.htm"><b>13</b></a> <a href="../edge.htm"><b>14</b></a> <a href="../cylinder.htm"><b>15</b></a> <a href="../cut.htm"><b>16</b></a> <a href="../curve.htm"><b>17</b></a> <a href="../cone.htm"><b>18</b></a> <a href="../compound.htm"><b>19</b></a> <a href="../common.htm"><b>20</b></a> <a href="../close_contour.htm"><b>21</b></a> <a href="../glue_faces.htm"><b>22</b></a> <a href="../fuse.htm"><b>23</b></a> <a href="../filling.htm"><b>24</b></a> <a href="../fillet.htm"><b>25</b></a> <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>26</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>27</b></a> <a href="../files/salome2_sp3_primitivegui_functions.htm"><b>28</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>29</b></a> <a href="../files/salome2_sp3_measuregui_functions.htm"><b>30</b></a> <a href="../files/salome2_sp3_generationgui_functions.htm"><b>31</b></a> <a href="../files/salome2_sp3_buildgui_functions.htm"><b>32</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>33</b></a> <a href="../point.htm"><b>34</b></a> <a href="../plane.htm"><b>35</b></a> <a href="../pipe_creation.htm"><b>36</b></a> <a href="../partition.htm"><b>37</b></a> <a href="../offset_surface.htm"><b>38</b></a> <a href="../newentity_blocks.htm"><b>39</b></a> <a href="../multi_translation.htm"><b>40</b></a> <a href="../multi_transformation.htm"><b>41</b></a> <a href="../multi_rotation.htm"><b>42</b></a> <a href="../modify_the_location.htm"><b>43</b></a> <a href="../mirror_image.htm"><b>44</b></a> <a href="../local_coordinate_system.htm"><b>45</b></a> <a href="../line.htm"><b>46</b></a> <a href="../isos.htm"><b>47</b></a> <a href="../suppress_holes.htm"><b>48</b></a> <a href="../suppress_faces.htm"><b>49</b></a> <a href="../sphere.htm"><b>50</b></a> <a href="../solid.htm"><b>51</b></a> <a href="../sketcher.htm"><b>52</b></a> <a href="../shell.htm"><b>53</b></a> <a href="../shape_processing.htm"><b>54</b></a> <a href="../sewing.htm"><b>55</b></a> <a href="../section.htm"><b>56</b></a> <a href="../scale_transform.htm"><b>57</b></a> <a href="../rotation.htm"><b>58</b></a> <a href="../revolution.htm"><b>59</b></a> <a href="../propagate.htm"><b>60</b></a> <a href="../working_with_groups.htm"><b>61</b></a> <a href="../working_plane.htm"><b>62</b></a> <a href="../wire.htm"><b>63</b></a> <a href="../vector.htm"><b>64</b></a> <a href="../turus.htm"><b>65</b></a> <a href="../translation.htm"><b>66</b></a> <a href="../suppress_internal_wires.htm"><b>67</b></a> </nobr><br><nobr>around <a href="../files/salome2_sp3_generationgui_functions.htm"><b>1</b></a> <a href="../multi_rotation.htm"><b>2</b></a> <a href="../revolution.htm"><b>3</b></a> <a href="../transformation_operations.htm"><b>4</b></a> </nobr><br><a name="bms_AS"></a><a name="subkey_AS"></a><a href="../files/salome2_sp3_displaygui_functions.htm"><b>associated</b></a> <br><a name="bms_AT"></a><a name="subkey_AT"></a><a href="../files/salome2_sp3_displaygui_functions.htm"><b>attributes</b></a> <br><nobr><a name="bms_AU"></a><a name="subkey_AU"></a>automatically <a href="../files/salome2_sp3_basicgui_functions.htm"><b>1</b></a> <a href="../newentity_blocks.htm"><b>2</b></a> <a href="../local_coordinate_system.htm"><b>3</b></a> </nobr><br><nobr><a name="bms_AV"></a><a name="subkey_AV"></a>available <a href="../add_point_on_edge.htm"><b>1</b></a> <a href="../close_contour.htm"><b>2</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>3</b></a> <a href="../files/salome2_sp3_geomtoolsgui_functions.htm"><b>4</b></a> <a href="../files/salome2_sp3_displaygui_functions.htm"><b>5</b></a> <a href="../newentity_blocks.htm"><b>6</b></a> <a href="../suppress_holes.htm"><b>7</b></a> <a href="../suppress_faces.htm"><b>8</b></a> <a href="../sketcher.htm"><b>9</b></a> <a href="../working_with_groups.htm"><b>10</b></a> <a href="../suppress_internal_wires.htm"><b>11</b></a> </nobr><br><nobr><a name="bms_AX"></a><a name="subkey_AX"></a>axes <a href="../box.htm"><b>1</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>2</b></a> <a href="../local_coordinate_system.htm"><b>3</b></a> <a href="../translation.htm"><b>4</b></a> </nobr><br><nobr>axis <a href="../cylinder.htm"><b>1</b></a> <a href="../cone.htm"><b>2</b></a> <a href="../complex_objects.htm"><b>3</b></a> <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>4</b></a> <a href="../files/salome2_sp3_primitivegui_functions.htm"><b>5</b></a> <a href="../files/salome2_sp3_measuregui_functions.htm"><b>6</b></a> <a href="../files/salome2_sp3_generationgui_functions.htm"><b>7</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>8</b></a> <a href="../multi_translation.htm"><b>9</b></a> <a href="../multi_rotation.htm"><b>10</b></a> <a href="../mirror_image.htm"><b>11</b></a> <a href="../local_coordinate_system.htm"><b>12</b></a> <a href="../rotation.htm"><b>13</b></a> <a href="../revolution.htm"><b>14</b></a> <a href="../transformation_operations.htm"><b>15</b></a> </nobr><br>\r
<br><br>\r
-<nobr><a name="bm_B"></a><a name="subkey_B{"></a>b <a href="../files/salome2_sp3_basicgui_functions.htm"><b>1</b></a> <a href="../curve.htm"><b>2</b></a> </nobr><br><a name="bms_BA"></a><a name="subkey_BA"></a><a href="../working_with_groups.htm"><b>background</b></a> <br><nobr>base <a href="../extrusion.htm"><b>1</b></a> <a href="../cylinder.htm"><b>2</b></a> <a href="../cone.htm"><b>3</b></a> <a href="../files/salome2_sp3_primitivegui_functions.htm"><b>4</b></a> <a href="../files/salome2_sp3_generationgui_functions.htm"><b>5</b></a> <a href="../pipe_creation.htm"><b>6</b></a> <a href="../revolution.htm"><b>7</b></a> <a href="../repairing_operations.htm"><b>8</b></a> <a href="../turus.htm"><b>9</b></a> <a href="../translation.htm"><b>10</b></a> </nobr><br><nobr>based <a href="../files/salome2_sp3_repairgui_functions.htm"><b>1</b></a> <a href="../shape_processing.htm"><b>2</b></a> </nobr><br><nobr>baseshape <a href="../files/salome2_sp3_generationgui_functions.htm"><b>1</b></a> <a href="../pipe_creation.htm"><b>2</b></a> </nobr><br><nobr>basic <a href="../circle.htm"><b>1</b></a> <a href="../basic_operations.htm"><b>2</b></a> <a href="../basic_geometrical_objects.htm"><b>3</b></a> <a href="../archimede.htm"><b>4</b></a> <a href="../arc.htm"><b>5</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>6</b></a> <a href="../files/introduction_to_geom.htm"><b>7</b></a> <a href="../ellipse.htm"><b>8</b></a> <a href="../curve.htm"><b>9</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>10</b></a> <a href="../files/salome2_sp3_measuregui_functions.htm"><b>11</b></a> <a href="../files/salome2_sp3_buildgui_functions.htm"><b>12</b></a> <a href="../point.htm"><b>13</b></a> <a href="../plane.htm"><b>14</b></a> <a href="../partition.htm"><b>15</b></a> <a href="../measurement_tools.htm"><b>16</b></a> <a href="../local_coordinate_system.htm"><b>17</b></a> <a href="../line.htm"><b>18</b></a> <a href="../sketcher.htm"><b>19</b></a> <a href="../working_plane.htm"><b>20</b></a> <a href="../vector.htm"><b>21</b></a> </nobr><br><nobr>basicproperties <a href="../files/salome2_sp3_measuregui_functions.htm"><b>1</b></a> <a href="../measurement_tools.htm"><b>2</b></a> </nobr><br><nobr>basing <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>1</b></a> <a href="../multi_rotation.htm"><b>2</b></a> <a href="../scale_transform.htm"><b>3</b></a> </nobr><br><nobr>basis <a href="../extrusion.htm"><b>1</b></a> <a href="../files/salome2_sp3_generationgui_functions.htm"><b>2</b></a> </nobr><br><a name="bms_BB"></a><a name="subkey_BB"></a><a href="../measurement_tools.htm"><b>bb</b></a> <br><br><br></p><p class="ftsbody" align="center"><a href="whlstf1.htm" target="_self" title="previous search group"><b>>></b></a>\r
+<nobr><a name="bm_B"></a><a name="subkey_B{"></a>b <a href="../basic_geometrical_objects.htm"><b>1</b></a> <a href="../curve.htm"><b>2</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>3</b></a> </nobr><br><nobr><a name="bms_BA"></a><a name="subkey_BA"></a>base <a href="../extrusion.htm"><b>1</b></a> <a href="../cylinder.htm"><b>2</b></a> <a href="../cone.htm"><b>3</b></a> <a href="../files/salome2_sp3_primitivegui_functions.htm"><b>4</b></a> <a href="../files/salome2_sp3_generationgui_functions.htm"><b>5</b></a> <a href="../pipe_creation.htm"><b>6</b></a> <a href="../revolution.htm"><b>7</b></a> <a href="../repairing_operations.htm"><b>8</b></a> <a href="../turus.htm"><b>9</b></a> <a href="../translation.htm"><b>10</b></a> </nobr><br><nobr>based <a href="../files/salome2_sp3_repairgui_functions.htm"><b>1</b></a> <a href="../shape_processing.htm"><b>2</b></a> </nobr><br><nobr>baseshape <a href="../files/salome2_sp3_generationgui_functions.htm"><b>1</b></a> <a href="../pipe_creation.htm"><b>2</b></a> </nobr><br><nobr>basic <a href="../circle.htm"><b>1</b></a> <a href="../basic_operations.htm"><b>2</b></a> <a href="../basic_geometrical_objects.htm"><b>3</b></a> <a href="../archimede.htm"><b>4</b></a> <a href="../arc.htm"><b>5</b></a> <a href="../files/introduction_to_geom.htm"><b>6</b></a> <a href="../ellipse.htm"><b>7</b></a> <a href="../curve.htm"><b>8</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>9</b></a> <a href="../files/salome2_sp3_measuregui_functions.htm"><b>10</b></a> <a href="../files/salome2_sp3_buildgui_functions.htm"><b>11</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>12</b></a> <a href="../point.htm"><b>13</b></a> <a href="../plane.htm"><b>14</b></a> <a href="../partition.htm"><b>15</b></a> <a href="../measurement_tools.htm"><b>16</b></a> <a href="../local_coordinate_system.htm"><b>17</b></a> <a href="../line.htm"><b>18</b></a> <a href="../sketcher.htm"><b>19</b></a> <a href="../working_plane.htm"><b>20</b></a> <a href="../vector.htm"><b>21</b></a> </nobr><br><nobr>basicproperties <a href="../files/salome2_sp3_measuregui_functions.htm"><b>1</b></a> <a href="../measurement_tools.htm"><b>2</b></a> </nobr><br><nobr>basing <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>1</b></a> <a href="../multi_rotation.htm"><b>2</b></a> <a href="../scale_transform.htm"><b>3</b></a> </nobr><br><nobr>basis <a href="../extrusion.htm"><b>1</b></a> <a href="../files/salome2_sp3_generationgui_functions.htm"><b>2</b></a> </nobr><br><br><br></p><p class="ftsbody" align="center"><a href="whlstf1.htm" target="_self" title="previous search group"><b>>></b></a>\r
\r
</body>\r
\r
<body marginheight="0" marginwidth="0" bgproperties="fixed">\r
<p class="ftsbody" align="center"><a href="whlstf0.htm" target="_self" title="previous search group"><b><<</b></a><br><br></p>\r
<p class="ftsbody" >\r
-<nobr><a name="bms_BE"></a><a name="subkey_BE"></a>before <a href="../files/salome2_sp3_repairgui_functions.htm"><b>1</b></a> <a href="../sketcher.htm"><b>2</b></a> <a href="../shape_processing.htm"><b>3</b></a> <a href="../repairing_operations.htm"><b>4</b></a> </nobr><br><a href="../repairing_operations.htm"><b>beginning</b></a> <br><a href="../edge.htm"><b>being</b></a> <br><a href="../newentity_blocks.htm"><b>below</b></a> <br><a href="../curve.htm"><b>besier</b></a> <br><nobr>bezier <a href="../basic_geometrical_objects.htm"><b>1</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>2</b></a> <a href="../curve.htm"><b>3</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>4</b></a> <a href="../shape_processing.htm"><b>5</b></a> </nobr><br><nobr><a name="bms_BL"></a><a name="subkey_BL"></a>block <a href="../blocks_operations.htm"><b>1</b></a> <a href="../explode_on_blocks.htm"><b>2</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>3</b></a> <a href="../files/salome2_sp3_measuregui_functions.htm"><b>4</b></a> <a href="../newentity_blocks.htm"><b>5</b></a> <a href="../multi_transformation.htm"><b>6</b></a> </nobr><br><nobr>blocks <a href="../building_by_blocks.htm"><b>1</b></a> <a href="../blocks_operations.htm"><b>2</b></a> <a href="../blocks.htm"><b>3</b></a> <a href="../explode_on_blocks.htm"><b>4</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>5</b></a> <a href="../files/salome2_sp3_measuregui_functions.htm"><b>6</b></a> <a href="../propagate.htm"><b>7</b></a> <a href="../newentity_blocks.htm"><b>8</b></a> <a href="../multi_transformation.htm"><b>9</b></a> <a href="../measurement_tools.htm"><b>10</b></a> </nobr><br><nobr><a name="bms_BO"></a><a name="subkey_BO"></a>boolean <a href="../boolean_operations.htm"><b>1</b></a> <a href="../files/introduction_to_geom.htm"><b>2</b></a> <a href="../cut.htm"><b>3</b></a> <a href="../common.htm"><b>4</b></a> <a href="../fuse.htm"><b>5</b></a> <a href="../files/salome2_sp3_measuregui_functions.htm"><b>6</b></a> <a href="../files/salome2_sp3_buildgui_functions.htm"><b>7</b></a> <a href="../files/salome2_sp3_booleangui_functions.htm"><b>8</b></a> <a href="../section.htm"><b>9</b></a> </nobr><br><nobr>both <a href="../box.htm"><b>1</b></a> <a href="../cone.htm"><b>2</b></a> <a href="../files/salome2_sp3_displaygui_functions.htm"><b>3</b></a> <a href="../multi_transformation.htm"><b>4</b></a> </nobr><br><a href="../repairing_operations.htm"><b>boudaries</b></a> <br><nobr>boundaries <a href="../check_free_boundaries.htm"><b>1</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>2</b></a> <a href="../suppress_holes.htm"><b>3</b></a> <a href="../sewing.htm"><b>4</b></a> <a href="../repairing_operations.htm"><b>5</b></a> </nobr><br><nobr>boundary <a href="../check_free_boundaries.htm"><b>1</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>2</b></a> <a href="../suppress_internal_wires.htm"><b>3</b></a> <a href="../repairing_operations.htm"><b>4</b></a> </nobr><br><nobr>bounded <a href="../building_by_blocks.htm"><b>1</b></a> <a href="../geometrical_objects.htm"><b>2</b></a> </nobr><br><nobr>bounding <a href="../files/salome2_sp3_measuregui_functions.htm"><b>1</b></a> <a href="../measurement_tools.htm"><b>2</b></a> </nobr><br><nobr>boundingbox <a href="../files/salome2_sp3_measuregui_functions.htm"><b>1</b></a> <a href="../measurement_tools.htm"><b>2</b></a> </nobr><br><nobr>box <a href="../check_free_boundaries.htm"><b>1</b></a> <a href="../changing_displaying_parameters.htm"><b>2</b></a> <a href="../changing_display_parameters.htm"><b>3</b></a> <a href="../box.htm"><b>4</b></a> <a href="../blocks_operations.htm"><b>5</b></a> <a href="../basic_operations.htm"><b>6</b></a> <a href="../add_point_on_edge.htm"><b>7</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>8</b></a> <a href="../explode_on_blocks.htm"><b>9</b></a> <a href="../cut.htm"><b>10</b></a> <a href="../close_contour.htm"><b>11</b></a> <a href="../groups.htm"><b>12</b></a> <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>13</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>14</b></a> <a href="../files/salome2_sp3_primitivegui_functions.htm"><b>15</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>16</b></a> <a href="../files/salome2_sp3_measuregui_functions.htm"><b>17</b></a> <a href="../files/salome2_sp3_geomtoolsgui_functions.htm"><b>18</b></a> <a href="../files/salome2_sp3_generationgui_functions.htm"><b>19</b></a> <a href="../files/salome2_sp3_buildgui_functions.htm"><b>20</b></a> <a href="../primitives.htm"><b>21</b></a> <a href="../newentity_blocks.htm"><b>22</b></a> <a href="../measurement_tools.htm"><b>23</b></a> <a href="../local_coordinate_system.htm"><b>24</b></a> <a href="../transformation_operations.htm"><b>25</b></a> <a href="../suppress_internal_wires.htm"><b>26</b></a> <a href="../sketcher.htm"><b>27</b></a> <a href="../shape_processing.htm"><b>28</b></a> <a href="../repairing_operations.htm"><b>29</b></a> <a href="../working_with_groups.htm"><b>30</b></a> <a href="../wire.htm"><b>31</b></a> </nobr><br><a href="../blocks_operations.htm"><b>box_tr1</b></a> <br><a href="../blocks_operations.htm"><b>box_tr2</b></a> <br><nobr>box1 <a href="../primitives.htm"><b>1</b></a> <a href="../measurement_tools.htm"><b>2</b></a> <a href="../repairing_operations.htm"><b>3</b></a> </nobr><br><nobr>box2 <a href="../primitives.htm"><b>1</b></a> <a href="../measurement_tools.htm"><b>2</b></a> <a href="../repairing_operations.htm"><b>3</b></a> </nobr><br><a href="../primitives.htm"><b>box3</b></a> <br><nobr>boxes <a href="../primitives.htm"><b>1</b></a> <a href="../measurement_tools.htm"><b>2</b></a> <a href="../repairing_operations.htm"><b>3</b></a> </nobr><br><nobr><a name="bms_BR"></a><a name="subkey_BR"></a>breaks <a href="../files/salome2_sp3_operationgui_functions.htm"><b>1</b></a> <a href="../propagate.htm"><b>2</b></a> </nobr><br><nobr>brep <a href="../files/introduction_to_geom.htm"><b>1</b></a> <a href="../files/salome2_sp3_geomtoolsgui_functions.htm"><b>2</b></a> <a href="../repairing_operations.htm"><b>3</b></a> </nobr><br><nobr>browser <a href="../chamfer.htm"><b>1</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>2</b></a> <a href="../fillet.htm"><b>3</b></a> <a href="../files/salome2_sp3_geomtoolsgui_functions.htm"><b>4</b></a> <a href="../files/salome2_sp3_displaygui_functions.htm"><b>5</b></a> <a href="../local_coordinate_system.htm"><b>6</b></a> <a href="../wire.htm"><b>7</b></a> </nobr><br><nobr><a name="bms_BS"></a><a name="subkey_BS"></a>bspline <a href="../files/salome2_sp3_repairgui_functions.htm"><b>1</b></a> <a href="../shape_processing.htm"><b>2</b></a> </nobr><br><nobr>bsplinerestriction <a href="../files/salome2_sp3_repairgui_functions.htm"><b>1</b></a> <a href="../shape_processing.htm"><b>2</b></a> </nobr><br><nobr>bsplines <a href="../files/salome2_sp3_repairgui_functions.htm"><b>1</b></a> <a href="../shape_processing.htm"><b>2</b></a> </nobr><br><nobr><a name="bms_BU"></a><a name="subkey_BU"></a>build <a href="../blocks_operations.htm"><b>1</b></a> <a href="../face.htm"><b>2</b></a> <a href="../edge.htm"><b>3</b></a> <a href="../compound.htm"><b>4</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>5</b></a> <a href="../files/salome2_sp3_buildgui_functions.htm"><b>6</b></a> <a href="../propagate.htm"><b>7</b></a> <a href="../newentity_blocks.htm"><b>8</b></a> <a href="../solid.htm"><b>9</b></a> <a href="../shell.htm"><b>10</b></a> <a href="../wire.htm"><b>11</b></a> </nobr><br><nobr>building <a href="../building_by_blocks.htm"><b>1</b></a> <a href="../blocks.htm"><b>2</b></a> <a href="../files/introduction_to_geom.htm"><b>3</b></a> <a href="../files/salome2_sp3_buildgui_functions.htm"><b>4</b></a> <a href="../newentity_blocks.htm"><b>5</b></a> </nobr><br><nobr>builds <a href="../files/salome2_sp3_operationgui_functions.htm"><b>1</b></a> <a href="../propagate.htm"><b>2</b></a> <a href="../partition.htm"><b>3</b></a> <a href="../newentity_blocks.htm"><b>4</b></a> </nobr><br><nobr>button <a href="../files/salome2_sp3_basicgui_functions.htm"><b>1</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>2</b></a> <a href="../local_coordinate_system.htm"><b>3</b></a> <a href="../suppress_holes.htm"><b>4</b></a> <a href="../sewing.htm"><b>5</b></a> <a href="../wire.htm"><b>6</b></a> </nobr><br><a name="bms_BY"></a><a name="subkey_BY"></a><a href="../newentity_blocks.htm"><b>bypassing</b></a> <br>\r
+<a name="bms_BB"></a><a name="subkey_BB"></a><a href="../measurement_tools.htm"><b>bb</b></a> <br><nobr><a name="bms_BE"></a><a name="subkey_BE"></a>before <a href="../files/salome2_sp3_repairgui_functions.htm"><b>1</b></a> <a href="../sketcher.htm"><b>2</b></a> <a href="../shape_processing.htm"><b>3</b></a> <a href="../repairing_operations.htm"><b>4</b></a> </nobr><br><a href="../repairing_operations.htm"><b>beginning</b></a> <br><a href="../edge.htm"><b>being</b></a> <br><a href="../chamfer.htm"><b>belongs</b></a> <br><nobr>below <a href="../newentity_blocks.htm"><b>1</b></a> <a href="../modify_the_location.htm"><b>2</b></a> </nobr><br><a href="../curve.htm"><b>besier</b></a> <br><nobr>bezier <a href="../basic_geometrical_objects.htm"><b>1</b></a> <a href="../curve.htm"><b>2</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>3</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>4</b></a> <a href="../shape_processing.htm"><b>5</b></a> </nobr><br><a name="bms_BI"></a><a name="subkey_BI"></a><a href="../modify_the_location.htm"><b>big</b></a> <br><nobr><a name="bms_BL"></a><a name="subkey_BL"></a>block <a href="../blocks_operations.htm"><b>1</b></a> <a href="../explode_on_blocks.htm"><b>2</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>3</b></a> <a href="../files/salome2_sp3_measuregui_functions.htm"><b>4</b></a> <a href="../newentity_blocks.htm"><b>5</b></a> <a href="../multi_transformation.htm"><b>6</b></a> </nobr><br><nobr>blocks <a href="../building_by_blocks.htm"><b>1</b></a> <a href="../blocks_operations.htm"><b>2</b></a> <a href="../blocks.htm"><b>3</b></a> <a href="../files/introduction_to_geom.htm"><b>4</b></a> <a href="../explode_on_blocks.htm"><b>5</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>6</b></a> <a href="../files/salome2_sp3_measuregui_functions.htm"><b>7</b></a> <a href="../newentity_blocks.htm"><b>8</b></a> <a href="../multi_transformation.htm"><b>9</b></a> <a href="../measurement_tools.htm"><b>10</b></a> <a href="../propagate.htm"><b>11</b></a> </nobr><br><nobr><a name="bms_BO"></a><a name="subkey_BO"></a>boolean <a href="../boolean_operations.htm"><b>1</b></a> <a href="../files/introduction_to_geom.htm"><b>2</b></a> <a href="../cut.htm"><b>3</b></a> <a href="../common.htm"><b>4</b></a> <a href="../fuse.htm"><b>5</b></a> <a href="../files/salome2_sp3_measuregui_functions.htm"><b>6</b></a> <a href="../files/salome2_sp3_buildgui_functions.htm"><b>7</b></a> <a href="../files/salome2_sp3_booleangui_functions.htm"><b>8</b></a> <a href="../section.htm"><b>9</b></a> </nobr><br><nobr>both <a href="../box.htm"><b>1</b></a> <a href="../cone.htm"><b>2</b></a> <a href="../files/salome2_sp3_displaygui_functions.htm"><b>3</b></a> <a href="../multi_transformation.htm"><b>4</b></a> </nobr><br><a href="../repairing_operations.htm"><b>boudaries</b></a> <br><nobr>boundaries <a href="../check_free_boundaries.htm"><b>1</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>2</b></a> <a href="../suppress_holes.htm"><b>3</b></a> <a href="../sewing.htm"><b>4</b></a> <a href="../repairing_operations.htm"><b>5</b></a> </nobr><br><nobr>boundary <a href="../check_free_boundaries.htm"><b>1</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>2</b></a> <a href="../repairing_operations.htm"><b>3</b></a> <a href="../suppress_internal_wires.htm"><b>4</b></a> </nobr><br><nobr>bounded <a href="../building_by_blocks.htm"><b>1</b></a> <a href="../geometrical_objects.htm"><b>2</b></a> </nobr><br><nobr>bounding <a href="../files/salome2_sp3_measuregui_functions.htm"><b>1</b></a> <a href="../measurement_tools.htm"><b>2</b></a> </nobr><br><nobr>boundingbox <a href="../files/salome2_sp3_measuregui_functions.htm"><b>1</b></a> <a href="../measurement_tools.htm"><b>2</b></a> </nobr><br><nobr>box <a href="../check_free_boundaries.htm"><b>1</b></a> <a href="../changing_displaying_parameters.htm"><b>2</b></a> <a href="../changing_display_parameters.htm"><b>3</b></a> <a href="../box.htm"><b>4</b></a> <a href="../blocks_operations.htm"><b>5</b></a> <a href="../basic_operations.htm"><b>6</b></a> <a href="../add_point_on_edge.htm"><b>7</b></a> <a href="../explode_on_blocks.htm"><b>8</b></a> <a href="../cut.htm"><b>9</b></a> <a href="../color.htm"><b>10</b></a> <a href="../close_contour.htm"><b>11</b></a> <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>12</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>13</b></a> <a href="../files/salome2_sp3_primitivegui_functions.htm"><b>14</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>15</b></a> <a href="../files/salome2_sp3_measuregui_functions.htm"><b>16</b></a> <a href="../files/salome2_sp3_geomtoolsgui_functions.htm"><b>17</b></a> <a href="../files/salome2_sp3_generationgui_functions.htm"><b>18</b></a> <a href="../files/salome2_sp3_buildgui_functions.htm"><b>19</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>20</b></a> <a href="../newentity_blocks.htm"><b>21</b></a> <a href="../measurement_tools.htm"><b>22</b></a> <a href="../groups.htm"><b>23</b></a> <a href="../sketcher.htm"><b>24</b></a> <a href="../shape_processing.htm"><b>25</b></a> <a href="../repairing_operations.htm"><b>26</b></a> <a href="../primitives.htm"><b>27</b></a> <a href="../working_with_groups.htm"><b>28</b></a> <a href="../wire.htm"><b>29</b></a> <a href="../transparency.htm"><b>30</b></a> <a href="../transformation_operations.htm"><b>31</b></a> <a href="../suppress_internal_wires.htm"><b>32</b></a> </nobr><br><a href="../blocks_operations.htm"><b>box_tr1</b></a> <br><a href="../blocks_operations.htm"><b>box_tr2</b></a> <br><nobr>box1 <a href="../measurement_tools.htm"><b>1</b></a> <a href="../repairing_operations.htm"><b>2</b></a> <a href="../primitives.htm"><b>3</b></a> </nobr><br><nobr>box2 <a href="../measurement_tools.htm"><b>1</b></a> <a href="../repairing_operations.htm"><b>2</b></a> <a href="../primitives.htm"><b>3</b></a> </nobr><br><a href="../primitives.htm"><b>box3</b></a> <br><nobr>boxes <a href="../measurement_tools.htm"><b>1</b></a> <a href="../repairing_operations.htm"><b>2</b></a> <a href="../primitives.htm"><b>3</b></a> </nobr><br><nobr><a name="bms_BR"></a><a name="subkey_BR"></a>breaks <a href="../files/salome2_sp3_operationgui_functions.htm"><b>1</b></a> <a href="../propagate.htm"><b>2</b></a> </nobr><br><nobr>brep <a href="../files/introduction_to_geom.htm"><b>1</b></a> <a href="../files/salome2_sp3_geomtoolsgui_functions.htm"><b>2</b></a> <a href="../repairing_operations.htm"><b>3</b></a> </nobr><br><nobr>browser <a href="../fillet.htm"><b>1</b></a> <a href="../files/salome2_sp3_geomtoolsgui_functions.htm"><b>2</b></a> <a href="../files/salome2_sp3_displaygui_functions.htm"><b>3</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>4</b></a> <a href="../local_coordinate_system.htm"><b>5</b></a> <a href="../wire.htm"><b>6</b></a> </nobr><br><nobr><a name="bms_BS"></a><a name="subkey_BS"></a>bspline <a href="../files/salome2_sp3_repairgui_functions.htm"><b>1</b></a> <a href="../shape_processing.htm"><b>2</b></a> </nobr><br><nobr>bsplinerestriction <a href="../files/salome2_sp3_repairgui_functions.htm"><b>1</b></a> <a href="../shape_processing.htm"><b>2</b></a> </nobr><br><nobr>bsplines <a href="../files/salome2_sp3_repairgui_functions.htm"><b>1</b></a> <a href="../shape_processing.htm"><b>2</b></a> </nobr><br><nobr><a name="bms_BU"></a><a name="subkey_BU"></a>build <a href="../blocks_operations.htm"><b>1</b></a> <a href="../face.htm"><b>2</b></a> <a href="../edge.htm"><b>3</b></a> <a href="../compound.htm"><b>4</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>5</b></a> <a href="../files/salome2_sp3_buildgui_functions.htm"><b>6</b></a> <a href="../newentity_blocks.htm"><b>7</b></a> <a href="../solid.htm"><b>8</b></a> <a href="../shell.htm"><b>9</b></a> <a href="../propagate.htm"><b>10</b></a> <a href="../wire.htm"><b>11</b></a> </nobr><br><nobr>building <a href="../building_by_blocks.htm"><b>1</b></a> <a href="../blocks.htm"><b>2</b></a> <a href="../files/introduction_to_geom.htm"><b>3</b></a> <a href="../files/salome2_sp3_buildgui_functions.htm"><b>4</b></a> <a href="../newentity_blocks.htm"><b>5</b></a> </nobr><br><nobr>builds <a href="../files/salome2_sp3_operationgui_functions.htm"><b>1</b></a> <a href="../partition.htm"><b>2</b></a> <a href="../newentity_blocks.htm"><b>3</b></a> <a href="../propagate.htm"><b>4</b></a> </nobr><br><nobr>button <a href="../files/salome2_sp3_repairgui_functions.htm"><b>1</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>2</b></a> <a href="../local_coordinate_system.htm"><b>3</b></a> <a href="../suppress_holes.htm"><b>4</b></a> <a href="../sewing.htm"><b>5</b></a> <a href="../working_with_groups.htm"><b>6</b></a> <a href="../wire.htm"><b>7</b></a> </nobr><br><a name="bms_BY"></a><a name="subkey_BY"></a><a href="../newentity_blocks.htm"><b>bypassing</b></a> <br>\r
<br><br>\r
-<nobr><a name="bm_C"></a><a name="subkey_C{"></a>c <a href="../geometrical_objects.htm"><b>1</b></a> <a href="../sketcher_tui.htm"><b>2</b></a> </nobr><br><a name="bms_CA"></a><a name="subkey_CA"></a><a href="../files/introduction_to_geom.htm"><b>cad</b></a> <br><nobr>camera <a href="../files/salome2_sp3_basicgui_functions.htm"><b>1</b></a> <a href="../working_plane.htm"><b>2</b></a> </nobr><br><nobr>case <a href="../files/salome2_sp3_basicgui_functions.htm"><b>1</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>2</b></a> <a href="../newentity_blocks.htm"><b>3</b></a> <a href="../local_coordinate_system.htm"><b>4</b></a> <a href="../suppress_internal_wires.htm"><b>5</b></a> <a href="../shape_processing.htm"><b>6</b></a> </nobr><br><a href="../multi_transformation.htm"><b>cases</b></a> <br><nobr><a name="bms_CE"></a><a name="subkey_CE"></a>center <a href="../circle.htm"><b>1</b></a> <a href="../box.htm"><b>2</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>3</b></a> <a href="../ellipse.htm"><b>4</b></a> <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>5</b></a> <a href="../files/salome2_sp3_primitivegui_functions.htm"><b>6</b></a> <a href="../files/salome2_sp3_measuregui_functions.htm"><b>7</b></a> <a href="../multi_rotation.htm"><b>8</b></a> <a href="../measurement_tools.htm"><b>9</b></a> <a href="../sphere.htm"><b>10</b></a> <a href="../sketcher.htm"><b>11</b></a> </nobr><br><nobr>centerofscale <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>1</b></a> <a href="../scale_transform.htm"><b>2</b></a> </nobr><br><a href="../explode.htm"><b>centers</b></a> <br><nobr>central <a href="../cylinder.htm"><b>1</b></a> <a href="../cone.htm"><b>2</b></a> <a href="../files/salome2_sp3_primitivegui_functions.htm"><b>3</b></a> <a href="../scale_transform.htm"><b>4</b></a> </nobr><br><nobr>centre <a href="../cone.htm"><b>1</b></a> <a href="../turus.htm"><b>2</b></a> </nobr><br><a name="bms_CH"></a><a name="subkey_CH"></a><a href="../blocks_operations.htm"><b>chain</b></a> <br><nobr>chamfer <a href="../chamfer.htm"><b>1</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>2</b></a> <a href="../transformation_operations.htm"><b>3</b></a> </nobr><br><a href="../transformation_operations.htm"><b>chamfer_all</b></a> <br><a href="../transformation_operations.htm"><b>chamfer_e</b></a> <br><a href="../transformation_operations.htm"><b>chamfer_f</b></a> <br><a href="../transformation_operations.htm"><b>chamfer_f1</b></a> <br><a href="../changing_displaying_parameters.htm"><b>change</b></a> <br><a href="../changing_displaying_parameters.htm"><b>changes</b></a> <br><nobr>changing <a href="../changing_displaying_parameters.htm"><b>1</b></a> <a href="../changing_display_parameters.htm"><b>2</b></a> </nobr><br><nobr>check <a href="../check_free_faces.htm"><b>1</b></a> <a href="../check_free_boundaries.htm"><b>2</b></a> <a href="../blocks_operations.htm"><b>3</b></a> <a href="../face.htm"><b>4</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>5</b></a> <a href="../files/salome2_sp3_measuregui_functions.htm"><b>6</b></a> <a href="../measurement_tools.htm"><b>7</b></a> <a href="../repairing_operations.htm"><b>8</b></a> </nobr><br><a href="../blocks_operations.htm"><b>check_box</b></a> <br><a href="../blocks_operations.htm"><b>checkandimprove</b></a> <br><nobr>checkbox <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>1</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>2</b></a> <a href="../multi_rotation.htm"><b>3</b></a> <a href="../modify_the_location.htm"><b>4</b></a> <a href="../mirror_image.htm"><b>5</b></a> <a href="../suppress_holes.htm"><b>6</b></a> <a href="../rotation.htm"><b>7</b></a> <a href="../translation.htm"><b>8</b></a> </nobr><br><nobr>checkcompoundofblocks <a href="../files/salome2_sp3_measuregui_functions.htm"><b>1</b></a> <a href="../measurement_tools.htm"><b>2</b></a> </nobr><br><nobr>checked <a href="../check_free_faces.htm"><b>1</b></a> <a href="../check_free_boundaries.htm"><b>2</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>3</b></a> <a href="../files/salome2_sp3_measuregui_functions.htm"><b>4</b></a> <a href="../suppress_internal_wires.htm"><b>5</b></a> </nobr><br><nobr>checking <a href="../check_free_boundaries.htm"><b>1</b></a> <a href="../explode_on_blocks.htm"><b>2</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>3</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>4</b></a> <a href="../repairing_operations.htm"><b>5</b></a> </nobr><br><a href="../files/salome2_sp3_measuregui_functions.htm"><b>checks</b></a> <br><nobr>checkshape <a href="../files/salome2_sp3_measuregui_functions.htm"><b>1</b></a> <a href="../measurement_tools.htm"><b>2</b></a> <a href="../repairing_operations.htm"><b>3</b></a> </nobr><br><a href="../curve.htm"><b>choices</b></a> <br><nobr>choose <a href="../explode_on_blocks.htm"><b>1</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>2</b></a> <a href="../files/salome2_sp3_geomtoolsgui_functions.htm"><b>3</b></a> <a href="../files/salome2_sp3_displaygui_functions.htm"><b>4</b></a> </nobr><br><nobr><a name="bms_CI"></a><a name="subkey_CI"></a>circle <a href="../circle.htm"><b>1</b></a> <a href="../basic_geometrical_objects.htm"><b>2</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>3</b></a> <a href="../vector.htm"><b>4</b></a> </nobr><br><a href="../basic_geometrical_objects.htm"><b>circle1</b></a> <br><a href="../basic_geometrical_objects.htm"><b>circle2</b></a> <br><nobr>circles <a href="../basic_geometrical_objects.htm"><b>1</b></a> <a href="../sketcher.htm"><b>2</b></a> </nobr><br><nobr><a name="bms_CL"></a><a name="subkey_CL"></a>click <a href="../changing_displaying_parameters.htm"><b>1</b></a> <a href="../files/salome2_sp3_geomtoolsgui_functions.htm"><b>2</b></a> <a href="../files/salome2_sp3_displaygui_functions.htm"><b>3</b></a> </nobr><br><nobr>close <a href="../close_contour.htm"><b>1</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>2</b></a> <a href="../repairing_operations.htm"><b>3</b></a> </nobr><br><nobr>closecontour <a href="../close_contour.htm"><b>1</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>2</b></a> <a href="../repairing_operations.htm"><b>3</b></a> </nobr><br><nobr>closed <a href="../check_free_boundaries.htm"><b>1</b></a> <a href="../close_contour.htm"><b>2</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>3</b></a> <a href="../files/salome2_sp3_buildgui_functions.htm"><b>4</b></a> <a href="../solid.htm"><b>5</b></a> <a href="../shape_processing.htm"><b>6</b></a> </nobr><br><nobr>closedwires <a href="../check_free_boundaries.htm"><b>1</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>2</b></a> <a href="../repairing_operations.htm"><b>3</b></a> </nobr><br><nobr>closes <a href="../close_contour.htm"><b>1</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>2</b></a> </nobr><br><nobr>closure <a href="../close_contour.htm"><b>1</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>2</b></a> </nobr><br><a name="bms_CM"></a><a name="subkey_CM"></a><a href="../measurement_tools.htm"><b>cm</b></a> <br><nobr><a name="bms_CO"></a><a name="subkey_CO"></a>coincident <a href="../glue_faces.htm"><b>1</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>2</b></a> </nobr><br><nobr>collinear <a href="../cylinder.htm"><b>1</b></a> <a href="../cone.htm"><b>2</b></a> </nobr><br><nobr>color <a href="../changing_displaying_parameters.htm"><b>1</b></a> <a href="../changing_display_parameters.htm"><b>2</b></a> </nobr><br><nobr>command <a href="../circle.htm"><b>1</b></a> <a href="../check_free_faces.htm"><b>2</b></a> <a href="../check_free_boundaries.htm"><b>3</b></a> <a href="../changing_displaying_parameters.htm"><b>4</b></a> <a href="../chamfer.htm"><b>5</b></a> <a href="../box.htm"><b>6</b></a> <a href="../archimede.htm"><b>7</b></a> <a href="../arc.htm"><b>8</b></a> <a href="../add_point_on_edge.htm"><b>9</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>10</b></a> <a href="../face.htm"><b>11</b></a> <a href="../extrusion.htm"><b>12</b></a> <a href="../explode_on_blocks.htm"><b>13</b></a> <a href="../ellipse.htm"><b>14</b></a> <a href="../edge.htm"><b>15</b></a> <a href="../cylinder.htm"><b>16</b></a> <a href="../cone.htm"><b>17</b></a> <a href="../compound.htm"><b>18</b></a> <a href="../common.htm"><b>19</b></a> <a href="../close_contour.htm"><b>20</b></a> <a href="../glue_faces.htm"><b>21</b></a> <a href="../fuse.htm"><b>22</b></a> <a href="../filling.htm"><b>23</b></a> <a href="../fillet.htm"><b>24</b></a> <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>25</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>26</b></a> <a href="../files/salome2_sp3_primitivegui_functions.htm"><b>27</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>28</b></a> <a href="../files/salome2_sp3_measuregui_functions.htm"><b>29</b></a> <a href="../files/salome2_sp3_generationgui_functions.htm"><b>30</b></a> <a href="../files/salome2_sp3_displaygui_functions.htm"><b>31</b></a> <a href="../files/salome2_sp3_buildgui_functions.htm"><b>32</b></a> <a href="../files/salome2_sp3_booleangui_functions.htm"><b>33</b></a> <a href="../propagate.htm"><b>34</b></a> <a href="../point.htm"><b>35</b></a> <a href="../plane.htm"><b>36</b></a> <a href="../pipe_creation.htm"><b>37</b></a> <a href="../partition.htm"><b>38</b></a> <a href="../offset_surface.htm"><b>39</b></a> <a href="../newentity_blocks.htm"><b>40</b></a> <a href="../multi_translation.htm"><b>41</b></a> <a href="../multi_transformation.htm"><b>42</b></a> <a href="../multi_rotation.htm"><b>43</b></a> <a href="../modify_the_location.htm"><b>44</b></a> <a href="../mirror_image.htm"><b>45</b></a> <a href="../local_coordinate_system.htm"><b>46</b></a> <a href="../line.htm"><b>47</b></a> <a href="../suppress_internal_wires.htm"><b>48</b></a> <a href="../suppress_holes.htm"><b>49</b></a> <a href="../suppress_faces.htm"><b>50</b></a> <a href="../sphere.htm"><b>51</b></a> <a href="../solid.htm"><b>52</b></a> <a href="../sketcher.htm"><b>53</b></a> <a href="../shell.htm"><b>54</b></a> <a href="../shape_processing.htm"><b>55</b></a> <a href="../sewing.htm"><b>56</b></a> <a href="../section.htm"><b>57</b></a> <a href="../scale_transform.htm"><b>58</b></a> <a href="../rotation.htm"><b>59</b></a> <a href="../revolution.htm"><b>60</b></a> <a href="../working_with_groups.htm"><b>61</b></a> <a href="../wire.htm"><b>62</b></a> <a href="../vector.htm"><b>63</b></a> <a href="../turus.htm"><b>64</b></a> <a href="../translation.htm"><b>65</b></a> </nobr><br><nobr>commands <a href="../box.htm"><b>1</b></a> <a href="../face.htm"><b>2</b></a> <a href="../extrusion.htm"><b>3</b></a> <a href="../explode.htm"><b>4</b></a> <a href="../curve.htm"><b>5</b></a> <a href="../files/salome2_sp3_measuregui_functions.htm"><b>6</b></a> <a href="../files/salome2_sp3_booleangui_functions.htm"><b>7</b></a> <a href="../line.htm"><b>8</b></a> <a href="../sphere.htm"><b>9</b></a> </nobr><br><nobr>common <a href="../boolean_operations.htm"><b>1</b></a> <a href="../common.htm"><b>2</b></a> <a href="../close_contour.htm"><b>3</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>4</b></a> <a href="../files/salome2_sp3_booleangui_functions.htm"><b>5</b></a> <a href="../transformation_operations.htm"><b>6</b></a> </nobr><br><nobr>complex <a href="../files/introduction_to_geom.htm"><b>1</b></a> <a href="../extrusion.htm"><b>2</b></a> <a href="../complex_objects.htm"><b>3</b></a> <a href="../filling.htm"><b>4</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>5</b></a> <a href="../files/salome2_sp3_generationgui_functions.htm"><b>6</b></a> <a href="../files/salome2_sp3_booleangui_functions.htm"><b>7</b></a> <a href="../pipe_creation.htm"><b>8</b></a> <a href="../revolution.htm"><b>9</b></a> </nobr><br><nobr>components <a href="../basic_geometrical_objects.htm"><b>1</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>2</b></a> <a href="../complex_objects.htm"><b>3</b></a> <a href="../filling.htm"><b>4</b></a> <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>5</b></a> <a href="../local_coordinate_system.htm"><b>6</b></a> <a href="../sketcher.htm"><b>7</b></a> <a href="../translation.htm"><b>8</b></a> </nobr><br><a href="../newentity_blocks.htm"><b>composed</b></a> <br><a href="../files/salome2_sp3_measuregui_functions.htm"><b>composing</b></a> <br><nobr>compound <a href="../blocks_operations.htm"><b>1</b></a> <a href="../explode_on_blocks.htm"><b>2</b></a> <a href="../explode.htm"><b>3</b></a> <a href="../cut.htm"><b>4</b></a> <a href="../compound.htm"><b>5</b></a> <a href="../complex_objects.htm"><b>6</b></a> <a href="../common.htm"><b>7</b></a> <a href="../glue_faces.htm"><b>8</b></a> <a href="../geometrical_objects.htm"><b>9</b></a> <a href="../fuse.htm"><b>10</b></a> <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>11</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>12</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>13</b></a> <a href="../files/salome2_sp3_measuregui_functions.htm"><b>14</b></a> <a href="../files/salome2_sp3_buildgui_functions.htm"><b>15</b></a> <a href="../offset_surface.htm"><b>16</b></a> <a href="../newentity_blocks.htm"><b>17</b></a> <a href="../multi_translation.htm"><b>18</b></a> <a href="../multi_rotation.htm"><b>19</b></a> <a href="../measurement_tools.htm"><b>20</b></a> <a href="../section.htm"><b>21</b></a> <a href="../repairing_operations.htm"><b>22</b></a> </nobr><br><nobr>compsolid <a href="../extrusion.htm"><b>1</b></a> <a href="../files/salome2_sp3_generationgui_functions.htm"><b>2</b></a> <a href="../pipe_creation.htm"><b>3</b></a> <a href="../revolution.htm"><b>4</b></a> </nobr><br><a href="../explode.htm"><b>compsolids</b></a> <br><nobr>compute <a href="../archimede.htm"><b>1</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>2</b></a> </nobr><br><a href="../files/salome2_sp3_measuregui_functions.htm"><b>computed</b></a> <br><a href="../files/salome2_sp3_measuregui_functions.htm"><b>concerning</b></a> <br><a href="../files/salome2_sp3_measuregui_functions.htm"><b>conditions</b></a> <br><nobr>cone <a href="../cone.htm"><b>1</b></a> <a href="../files/salome2_sp3_primitivegui_functions.htm"><b>2</b></a> <a href="../primitives.htm"><b>3</b></a> <a href="../repairing_operations.htm"><b>4</b></a> </nobr><br><a href="../primitives.htm"><b>cone1</b></a> <br><a href="../primitives.htm"><b>cone2</b></a> <br><a href="../primitives.htm"><b>cones</b></a> <br><a href="../files/salome2_sp3_geomtoolsgui_functions.htm"><b>confirm</b></a> <br><nobr>conical <a href="../files/salome2_sp3_repairgui_functions.htm"><b>1</b></a> <a href="../shape_processing.htm"><b>2</b></a> </nobr><br><nobr>connected <a href="../chamfer.htm"><b>1</b></a> <a href="../face.htm"><b>2</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>3</b></a> <a href="../files/salome2_sp3_measuregui_functions.htm"><b>4</b></a> <a href="../files/salome2_sp3_buildgui_functions.htm"><b>5</b></a> <a href="../shell.htm"><b>6</b></a> <a href="../wire.htm"><b>7</b></a> </nobr><br><a href="../files/salome2_sp3_measuregui_functions.htm"><b>connection</b></a> <br><a href="../transformation_operations.htm"><b>consequently</b></a> <br><nobr>considered <a href="../close_contour.htm"><b>1</b></a> <a href="../glue_faces.htm"><b>2</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>3</b></a> <a href="../files/salome2_sp3_measuregui_functions.htm"><b>4</b></a> </nobr><br><a href="../files/salome2_sp3_measuregui_functions.htm"><b>console</b></a> <br><a href="../newentity_blocks.htm"><b>constraints</b></a> <br><a href="../files/salome2_sp3_primitivegui_functions.htm"><b>construct</b></a> <br><nobr>constructed <a href="../files/salome2_sp3_buildgui_functions.htm"><b>1</b></a> <a href="../newentity_blocks.htm"><b>2</b></a> <a href="../solid.htm"><b>3</b></a> </nobr><br><a href="../files/salome2_sp3_primitivegui_functions.htm"><b>constructing</b></a> <br><nobr>construction <a href="../files/introduction_to_geom.htm"><b>1</b></a> <a href="../curve.htm"><b>2</b></a> <a href="../files/salome2_sp3_booleangui_functions.htm"><b>3</b></a> <a href="../pipe_creation.htm"><b>4</b></a> </nobr><br><nobr>constructor <a href="../files/salome2_sp3_basicgui_functions.htm"><b>1</b></a> <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>2</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>3</b></a> <a href="../files/salome2_sp3_primitivegui_functions.htm"><b>4</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>5</b></a> <a href="../local_coordinate_system.htm"><b>6</b></a> </nobr><br><nobr>contain <a href="../files/salome2_sp3_operationgui_functions.htm"><b>1</b></a> <a href="../propagate.htm"><b>2</b></a> </nobr><br><nobr>contained <a href="../check_free_faces.htm"><b>1</b></a> <a href="../blocks_operations.htm"><b>2</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>3</b></a> </nobr><br><nobr>contains <a href="../add_point_on_edge.htm"><b>1</b></a> <a href="../close_contour.htm"><b>2</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>3</b></a> </nobr><br><nobr>contents <a href="../groups.htm"><b>1</b></a> <a href="../files/salome2_sp3_geomtoolsgui_functions.htm"><b>2</b></a> </nobr><br><nobr>continuities <a href="../files/salome2_sp3_repairgui_functions.htm"><b>1</b></a> <a href="../shape_processing.htm"><b>2</b></a> </nobr><br><nobr>continuity <a href="../files/salome2_sp3_repairgui_functions.htm"><b>1</b></a> <a href="../shape_processing.htm"><b>2</b></a> </nobr><br><nobr>continuity2d <a href="../files/salome2_sp3_repairgui_functions.htm"><b>1</b></a> <a href="../shape_processing.htm"><b>2</b></a> </nobr><br><nobr>continuity3d <a href="../files/salome2_sp3_repairgui_functions.htm"><b>1</b></a> <a href="../shape_processing.htm"><b>2</b></a> </nobr><br><nobr>contour <a href="../close_contour.htm"><b>1</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>2</b></a> <a href="../repairing_operations.htm"><b>3</b></a> </nobr><br><nobr>conversion <a href="../files/salome2_sp3_repairgui_functions.htm"><b>1</b></a> <a href="../shape_processing.htm"><b>2</b></a> </nobr><br><nobr>coordinate <a href="../box.htm"><b>1</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>2</b></a> <a href="../cylinder.htm"><b>3</b></a> <a href="../cone.htm"><b>4</b></a> <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>5</b></a> <a href="../modify_the_location.htm"><b>6</b></a> <a href="../local_coordinate_system.htm"><b>7</b></a> <a href="../transformation_operations.htm"><b>8</b></a> <a href="../sphere.htm"><b>9</b></a> <a href="../sketcher.htm"><b>10</b></a> <a href="../working_plane.htm"><b>11</b></a> </nobr><br><nobr>coordinates <a href="../box.htm"><b>1</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>2</b></a> <a href="../explode.htm"><b>3</b></a> <a href="../cone.htm"><b>4</b></a> <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>5</b></a> <a href="../files/salome2_sp3_primitivegui_functions.htm"><b>6</b></a> <a href="../files/salome2_sp3_measuregui_functions.htm"><b>7</b></a> <a href="../point.htm"><b>8</b></a> <a href="../measurement_tools.htm"><b>9</b></a> <a href="../local_coordinate_system.htm"><b>10</b></a> <a href="../sphere.htm"><b>11</b></a> <a href="../sketcher.htm"><b>12</b></a> <a href="../vector.htm"><b>13</b></a> <a href="../turus.htm"><b>14</b></a> <a href="../translation.htm"><b>15</b></a> </nobr><br><a href="../measurement_tools.htm"><b>coords</b></a> <br><nobr>copy <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>1</b></a> <a href="../modify_the_location.htm"><b>2</b></a> <a href="../mirror_image.htm"><b>3</b></a> <a href="../rotation.htm"><b>4</b></a> <a href="../translation.htm"><b>5</b></a> </nobr><br><nobr>corners <a href="../building_by_blocks.htm"><b>1</b></a> <a href="../box.htm"><b>2</b></a> <a href="../files/salome2_sp3_primitivegui_functions.htm"><b>3</b></a> </nobr><br><nobr>correction <a href="../files/salome2_sp3_repairgui_functions.htm"><b>1</b></a> <a href="../shape_processing.htm"><b>2</b></a> </nobr><br><nobr>correspond <a href="../check_free_boundaries.htm"><b>1</b></a> <a href="../curve.htm"><b>2</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>3</b></a> </nobr><br><nobr>corresponding <a href="../archimede.htm"><b>1</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>2</b></a> <a href="../explode_on_blocks.htm"><b>3</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>4</b></a> <a href="../local_coordinate_system.htm"><b>5</b></a> </nobr><br><nobr>correspondingly <a href="../files/salome2_sp3_basicgui_functions.htm"><b>1</b></a> <a href="../explode_on_blocks.htm"><b>2</b></a> <a href="../edge.htm"><b>3</b></a> <a href="../files/salome2_sp3_primitivegui_functions.htm"><b>4</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>5</b></a> <a href="../files/salome2_sp3_generationgui_functions.htm"><b>6</b></a> <a href="../files/salome2_sp3_buildgui_functions.htm"><b>7</b></a> </nobr><br><a href="../repairing_operations.htm"><b>count</b></a> <br><a href="../sketcher.htm"><b>coupled</b></a> <br><a href="../files/salome2_sp3_booleangui_functions.htm"><b>covering</b></a> <br><br><br></p><p class="ftsbody" align="center"><a href="whlstf2.htm" target="_self" title="previous search group"><b>>></b></a>\r
+<nobr><a name="bm_C"></a><a name="subkey_C{"></a>c <a href="../geometrical_objects.htm"><b>1</b></a> <a href="../sketcher_tui.htm"><b>2</b></a> </nobr><br><a name="bms_CA"></a><a name="subkey_CA"></a><a href="../files/introduction_to_geom.htm"><b>cad</b></a> <br><nobr>camera <a href="../files/salome2_sp3_basicgui_functions.htm"><b>1</b></a> <a href="../working_plane.htm"><b>2</b></a> </nobr><br><nobr>case <a href="../files/salome2_sp3_repairgui_functions.htm"><b>1</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>2</b></a> <a href="../newentity_blocks.htm"><b>3</b></a> <a href="../local_coordinate_system.htm"><b>4</b></a> <a href="../shape_processing.htm"><b>5</b></a> <a href="../suppress_internal_wires.htm"><b>6</b></a> </nobr><br><a href="../multi_transformation.htm"><b>cases</b></a> <br><a href="../files/salome2_sp3_geomtoolsgui_functions.htm"><b>catia</b></a> <br><nobr><a name="bms_CE"></a><a name="subkey_CE"></a>center <a href="../circle.htm"><b>1</b></a> <a href="../box.htm"><b>2</b></a> <a href="../ellipse.htm"><b>3</b></a> <a href="../cone.htm"><b>4</b></a> <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>5</b></a> <a href="../files/salome2_sp3_primitivegui_functions.htm"><b>6</b></a> <a href="../files/salome2_sp3_measuregui_functions.htm"><b>7</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>8</b></a> <a href="../multi_rotation.htm"><b>9</b></a> <a href="../modify_the_location.htm"><b>10</b></a> <a href="../measurement_tools.htm"><b>11</b></a> <a href="../sphere.htm"><b>12</b></a> <a href="../sketcher.htm"><b>13</b></a> <a href="../turus.htm"><b>14</b></a> </nobr><br><nobr>centerofscale <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>1</b></a> <a href="../scale_transform.htm"><b>2</b></a> </nobr><br><a href="../explode.htm"><b>centers</b></a> <br><nobr>central <a href="../cylinder.htm"><b>1</b></a> <a href="../cone.htm"><b>2</b></a> <a href="../files/salome2_sp3_primitivegui_functions.htm"><b>3</b></a> <a href="../scale_transform.htm"><b>4</b></a> </nobr><br><a href="../working_with_groups.htm"><b>certain</b></a> <br><a name="bms_CH"></a><a name="subkey_CH"></a><a href="../blocks_operations.htm"><b>chain</b></a> <br><nobr>chamfer <a href="../chamfer.htm"><b>1</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>2</b></a> <a href="../transformation_operations.htm"><b>3</b></a> </nobr><br><a href="../transformation_operations.htm"><b>chamfer_all</b></a> <br><a href="../transformation_operations.htm"><b>chamfer_e</b></a> <br><a href="../transformation_operations.htm"><b>chamfer_f</b></a> <br><a href="../transformation_operations.htm"><b>chamfer_f1</b></a> <br><nobr>change <a href="../changing_displaying_parameters.htm"><b>1</b></a> <a href="../color.htm"><b>2</b></a> <a href="../isos.htm"><b>3</b></a> <a href="../wireframe_and_shading.htm"><b>4</b></a> <a href="../transparency.htm"><b>5</b></a> </nobr><br><nobr>changing <a href="../changing_displaying_parameters.htm"><b>1</b></a> <a href="../changing_display_parameters.htm"><b>2</b></a> <a href="../color.htm"><b>3</b></a> <a href="../wireframe_and_shading.htm"><b>4</b></a> <a href="../transparency.htm"><b>5</b></a> </nobr><br><nobr>check <a href="../check_free_faces.htm"><b>1</b></a> <a href="../check_free_boundaries.htm"><b>2</b></a> <a href="../blocks_operations.htm"><b>3</b></a> <a href="../face.htm"><b>4</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>5</b></a> <a href="../files/salome2_sp3_measuregui_functions.htm"><b>6</b></a> <a href="../measurement_tools.htm"><b>7</b></a> <a href="../repairing_operations.htm"><b>8</b></a> </nobr><br><a href="../blocks_operations.htm"><b>check_box</b></a> <br><a href="../blocks_operations.htm"><b>checkandimprove</b></a> <br><nobr>checkbox <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>1</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>2</b></a> <a href="../multi_rotation.htm"><b>3</b></a> <a href="../modify_the_location.htm"><b>4</b></a> <a href="../mirror_image.htm"><b>5</b></a> <a href="../suppress_holes.htm"><b>6</b></a> <a href="../rotation.htm"><b>7</b></a> <a href="../translation.htm"><b>8</b></a> </nobr><br><nobr>checkcompoundofblocks <a href="../files/salome2_sp3_measuregui_functions.htm"><b>1</b></a> <a href="../measurement_tools.htm"><b>2</b></a> </nobr><br><nobr>checked <a href="../check_free_faces.htm"><b>1</b></a> <a href="../check_free_boundaries.htm"><b>2</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>3</b></a> <a href="../files/salome2_sp3_measuregui_functions.htm"><b>4</b></a> <a href="../suppress_internal_wires.htm"><b>5</b></a> </nobr><br><nobr>checking <a href="../check_free_boundaries.htm"><b>1</b></a> <a href="../explode_on_blocks.htm"><b>2</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>3</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>4</b></a> <a href="../repairing_operations.htm"><b>5</b></a> </nobr><br><a href="../files/salome2_sp3_measuregui_functions.htm"><b>checks</b></a> <br><nobr>checkshape <a href="../files/salome2_sp3_measuregui_functions.htm"><b>1</b></a> <a href="../measurement_tools.htm"><b>2</b></a> <a href="../repairing_operations.htm"><b>3</b></a> </nobr><br><a href="../curve.htm"><b>choices</b></a> <br><nobr>choose <a href="../explode_on_blocks.htm"><b>1</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>2</b></a> <a href="../files/salome2_sp3_geomtoolsgui_functions.htm"><b>3</b></a> <a href="../files/salome2_sp3_displaygui_functions.htm"><b>4</b></a> <a href="../local_coordinate_system.htm"><b>5</b></a> </nobr><br><nobr><a name="bms_CI"></a><a name="subkey_CI"></a>circle <a href="../circle.htm"><b>1</b></a> <a href="../basic_geometrical_objects.htm"><b>2</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>3</b></a> </nobr><br><a href="../basic_geometrical_objects.htm"><b>circle1</b></a> <br><a href="../basic_geometrical_objects.htm"><b>circle2</b></a> <br><nobr>circles <a href="../basic_geometrical_objects.htm"><b>1</b></a> <a href="../sketcher.htm"><b>2</b></a> </nobr><br><nobr><a name="bms_CL"></a><a name="subkey_CL"></a>click <a href="../changing_displaying_parameters.htm"><b>1</b></a> <a href="../files/salome2_sp3_geomtoolsgui_functions.htm"><b>2</b></a> <a href="../files/salome2_sp3_displaygui_functions.htm"><b>3</b></a> <a href="../working_with_groups.htm"><b>4</b></a> <a href="../wireframe_and_shading.htm"><b>5</b></a> </nobr><br><nobr>clicking <a href="../color.htm"><b>1</b></a> <a href="../working_with_groups.htm"><b>2</b></a> </nobr><br><nobr>close <a href="../close_contour.htm"><b>1</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>2</b></a> <a href="../repairing_operations.htm"><b>3</b></a> <a href="../working_with_groups.htm"><b>4</b></a> </nobr><br><nobr>closecontour <a href="../close_contour.htm"><b>1</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>2</b></a> <a href="../repairing_operations.htm"><b>3</b></a> </nobr><br><nobr>closed <a href="../check_free_boundaries.htm"><b>1</b></a> <a href="../close_contour.htm"><b>2</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>3</b></a> <a href="../files/salome2_sp3_buildgui_functions.htm"><b>4</b></a> <a href="../solid.htm"><b>5</b></a> <a href="../shape_processing.htm"><b>6</b></a> </nobr><br><nobr>closedwires <a href="../check_free_boundaries.htm"><b>1</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>2</b></a> <a href="../repairing_operations.htm"><b>3</b></a> </nobr><br><nobr>closes <a href="../close_contour.htm"><b>1</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>2</b></a> <a href="../working_with_groups.htm"><b>3</b></a> </nobr><br><nobr>closure <a href="../close_contour.htm"><b>1</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>2</b></a> </nobr><br><a name="bms_CM"></a><a name="subkey_CM"></a><a href="../measurement_tools.htm"><b>cm</b></a> <br><nobr><a name="bms_CO"></a><a name="subkey_CO"></a>coincident <a href="../glue_faces.htm"><b>1</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>2</b></a> </nobr><br><a href="../modify_the_location.htm"><b>coincides</b></a> <br><nobr>collinear <a href="../cylinder.htm"><b>1</b></a> <a href="../cone.htm"><b>2</b></a> </nobr><br><nobr>color <a href="../changing_displaying_parameters.htm"><b>1</b></a> <a href="../changing_display_parameters.htm"><b>2</b></a> <a href="../color.htm"><b>3</b></a> <a href="../wireframe_and_shading.htm"><b>4</b></a> </nobr><br><nobr>command <a href="../circle.htm"><b>1</b></a> <a href="../check_free_faces.htm"><b>2</b></a> <a href="../check_free_boundaries.htm"><b>3</b></a> <a href="../changing_displaying_parameters.htm"><b>4</b></a> <a href="../chamfer.htm"><b>5</b></a> <a href="../box.htm"><b>6</b></a> <a href="../archimede.htm"><b>7</b></a> <a href="../arc.htm"><b>8</b></a> <a href="../add_point_on_edge.htm"><b>9</b></a> <a href="../face.htm"><b>10</b></a> <a href="../extrusion.htm"><b>11</b></a> <a href="../explode_on_blocks.htm"><b>12</b></a> <a href="../ellipse.htm"><b>13</b></a> <a href="../edge.htm"><b>14</b></a> <a href="../cylinder.htm"><b>15</b></a> <a href="../cone.htm"><b>16</b></a> <a href="../compound.htm"><b>17</b></a> <a href="../common.htm"><b>18</b></a> <a href="../color.htm"><b>19</b></a> <a href="../close_contour.htm"><b>20</b></a> <a href="../glue_faces.htm"><b>21</b></a> <a href="../fuse.htm"><b>22</b></a> <a href="../filling.htm"><b>23</b></a> <a href="../fillet.htm"><b>24</b></a> <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>25</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>26</b></a> <a href="../files/salome2_sp3_primitivegui_functions.htm"><b>27</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>28</b></a> <a href="../files/salome2_sp3_measuregui_functions.htm"><b>29</b></a> <a href="../files/salome2_sp3_generationgui_functions.htm"><b>30</b></a> <a href="../files/salome2_sp3_displaygui_functions.htm"><b>31</b></a> <a href="../files/salome2_sp3_buildgui_functions.htm"><b>32</b></a> <a href="../files/salome2_sp3_booleangui_functions.htm"><b>33</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>34</b></a> <a href="../point.htm"><b>35</b></a> <a href="../plane.htm"><b>36</b></a> <a href="../pipe_creation.htm"><b>37</b></a> <a href="../partition.htm"><b>38</b></a> <a href="../offset_surface.htm"><b>39</b></a> <a href="../newentity_blocks.htm"><b>40</b></a> <a href="../multi_translation.htm"><b>41</b></a> <a href="../multi_transformation.htm"><b>42</b></a> <a href="../multi_rotation.htm"><b>43</b></a> <a href="../modify_the_location.htm"><b>44</b></a> <a href="../mirror_image.htm"><b>45</b></a> <a href="../local_coordinate_system.htm"><b>46</b></a> <a href="../line.htm"><b>47</b></a> <a href="../suppress_holes.htm"><b>48</b></a> <a href="../suppress_faces.htm"><b>49</b></a> <a href="../sphere.htm"><b>50</b></a> <a href="../solid.htm"><b>51</b></a> <a href="../sketcher.htm"><b>52</b></a> <a href="../shell.htm"><b>53</b></a> <a href="../shape_processing.htm"><b>54</b></a> <a href="../sewing.htm"><b>55</b></a> <a href="../section.htm"><b>56</b></a> <a href="../scale_transform.htm"><b>57</b></a> <a href="../rotation.htm"><b>58</b></a> <a href="../revolution.htm"><b>59</b></a> <a href="../propagate.htm"><b>60</b></a> <a href="../working_with_groups.htm"><b>61</b></a> <a href="../wireframe_and_shading.htm"><b>62</b></a> <a href="../wire.htm"><b>63</b></a> <a href="../vector.htm"><b>64</b></a> <a href="../turus.htm"><b>65</b></a> <a href="../transparency.htm"><b>66</b></a> <a href="../translation.htm"><b>67</b></a> <a href="../suppress_internal_wires.htm"><b>68</b></a> </nobr><br><nobr>commands <a href="../box.htm"><b>1</b></a> <a href="../face.htm"><b>2</b></a> <a href="../extrusion.htm"><b>3</b></a> <a href="../explode.htm"><b>4</b></a> <a href="../curve.htm"><b>5</b></a> <a href="../files/salome2_sp3_measuregui_functions.htm"><b>6</b></a> <a href="../files/salome2_sp3_booleangui_functions.htm"><b>7</b></a> <a href="../line.htm"><b>8</b></a> <a href="../sphere.htm"><b>9</b></a> </nobr><br><nobr>common <a href="../chamfer.htm"><b>1</b></a> <a href="../boolean_operations.htm"><b>2</b></a> <a href="../common.htm"><b>3</b></a> <a href="../close_contour.htm"><b>4</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>5</b></a> <a href="../files/salome2_sp3_booleangui_functions.htm"><b>6</b></a> <a href="../transformation_operations.htm"><b>7</b></a> </nobr><br><nobr>complex <a href="../files/introduction_to_geom.htm"><b>1</b></a> <a href="../extrusion.htm"><b>2</b></a> <a href="../complex_objects.htm"><b>3</b></a> <a href="../filling.htm"><b>4</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>5</b></a> <a href="../files/salome2_sp3_generationgui_functions.htm"><b>6</b></a> <a href="../files/salome2_sp3_booleangui_functions.htm"><b>7</b></a> <a href="../pipe_creation.htm"><b>8</b></a> <a href="../revolution.htm"><b>9</b></a> </nobr><br><nobr>components <a href="../basic_geometrical_objects.htm"><b>1</b></a> <a href="../complex_objects.htm"><b>2</b></a> <a href="../filling.htm"><b>3</b></a> <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>4</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>5</b></a> <a href="../sketcher.htm"><b>6</b></a> <a href="../translation.htm"><b>7</b></a> </nobr><br><a href="../newentity_blocks.htm"><b>composed</b></a> <br><a href="../files/salome2_sp3_measuregui_functions.htm"><b>composing</b></a> <br><nobr>compound <a href="../blocks_operations.htm"><b>1</b></a> <a href="../explode_on_blocks.htm"><b>2</b></a> <a href="../explode.htm"><b>3</b></a> <a href="../cut.htm"><b>4</b></a> <a href="../compound.htm"><b>5</b></a> <a href="../complex_objects.htm"><b>6</b></a> <a href="../common.htm"><b>7</b></a> <a href="../glue_faces.htm"><b>8</b></a> <a href="../geometrical_objects.htm"><b>9</b></a> <a href="../fuse.htm"><b>10</b></a> <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>11</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>12</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>13</b></a> <a href="../files/salome2_sp3_measuregui_functions.htm"><b>14</b></a> <a href="../files/salome2_sp3_buildgui_functions.htm"><b>15</b></a> <a href="../offset_surface.htm"><b>16</b></a> <a href="../newentity_blocks.htm"><b>17</b></a> <a href="../multi_translation.htm"><b>18</b></a> <a href="../multi_rotation.htm"><b>19</b></a> <a href="../measurement_tools.htm"><b>20</b></a> <a href="../section.htm"><b>21</b></a> <a href="../repairing_operations.htm"><b>22</b></a> </nobr><br><nobr>compsolid <a href="../extrusion.htm"><b>1</b></a> <a href="../files/salome2_sp3_generationgui_functions.htm"><b>2</b></a> <a href="../pipe_creation.htm"><b>3</b></a> <a href="../revolution.htm"><b>4</b></a> </nobr><br><a href="../explode.htm"><b>compsolids</b></a> <br><nobr>compute <a href="../archimede.htm"><b>1</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>2</b></a> </nobr><br><a href="../files/salome2_sp3_measuregui_functions.htm"><b>computed</b></a> <br><a href="../files/salome2_sp3_measuregui_functions.htm"><b>concerning</b></a> <br><a href="../files/salome2_sp3_measuregui_functions.htm"><b>conditions</b></a> <br><nobr>cone <a href="../cone.htm"><b>1</b></a> <a href="../files/salome2_sp3_primitivegui_functions.htm"><b>2</b></a> <a href="../repairing_operations.htm"><b>3</b></a> <a href="../primitives.htm"><b>4</b></a> </nobr><br><a href="../primitives.htm"><b>cone1</b></a> <br><a href="../primitives.htm"><b>cone2</b></a> <br><a href="../primitives.htm"><b>cones</b></a> <br><nobr>confirm <a href="../files/salome2_sp3_geomtoolsgui_functions.htm"><b>1</b></a> <a href="../working_with_groups.htm"><b>2</b></a> </nobr><br><nobr>conical <a href="../files/salome2_sp3_repairgui_functions.htm"><b>1</b></a> <a href="../shape_processing.htm"><b>2</b></a> </nobr><br><nobr>connected <a href="../chamfer.htm"><b>1</b></a> <a href="../face.htm"><b>2</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>3</b></a> <a href="../files/salome2_sp3_measuregui_functions.htm"><b>4</b></a> <a href="../files/salome2_sp3_buildgui_functions.htm"><b>5</b></a> <a href="../shell.htm"><b>6</b></a> <a href="../wire.htm"><b>7</b></a> </nobr><br><a href="../files/salome2_sp3_measuregui_functions.htm"><b>connection</b></a> <br><a href="../transformation_operations.htm"><b>consequently</b></a> <br><nobr>considered <a href="../close_contour.htm"><b>1</b></a> <a href="../glue_faces.htm"><b>2</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>3</b></a> <a href="../files/salome2_sp3_measuregui_functions.htm"><b>4</b></a> </nobr><br><a href="../files/salome2_sp3_measuregui_functions.htm"><b>console</b></a> <br><a href="../newentity_blocks.htm"><b>constraints</b></a> <br><a href="../files/salome2_sp3_primitivegui_functions.htm"><b>construct</b></a> <br><nobr>constructed <a href="../files/salome2_sp3_buildgui_functions.htm"><b>1</b></a> <a href="../newentity_blocks.htm"><b>2</b></a> <a href="../solid.htm"><b>3</b></a> </nobr><br><a href="../files/salome2_sp3_primitivegui_functions.htm"><b>constructing</b></a> <br><nobr>construction <a href="../files/introduction_to_geom.htm"><b>1</b></a> <a href="../curve.htm"><b>2</b></a> <a href="../files/salome2_sp3_booleangui_functions.htm"><b>3</b></a> <a href="../pipe_creation.htm"><b>4</b></a> </nobr><br><nobr>constructor <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>1</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>2</b></a> <a href="../files/salome2_sp3_primitivegui_functions.htm"><b>3</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>4</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>5</b></a> </nobr><br><nobr>contain <a href="../files/salome2_sp3_operationgui_functions.htm"><b>1</b></a> <a href="../propagate.htm"><b>2</b></a> </nobr><br><nobr>contained <a href="../check_free_faces.htm"><b>1</b></a> <a href="../blocks_operations.htm"><b>2</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>3</b></a> </nobr><br><nobr>contains <a href="../add_point_on_edge.htm"><b>1</b></a> <a href="../close_contour.htm"><b>2</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>3</b></a> </nobr><br><nobr>contents <a href="../files/salome2_sp3_geomtoolsgui_functions.htm"><b>1</b></a> <a href="../groups.htm"><b>2</b></a> </nobr><br><nobr>continuities <a href="../files/salome2_sp3_repairgui_functions.htm"><b>1</b></a> <a href="../shape_processing.htm"><b>2</b></a> </nobr><br><nobr>continuity <a href="../files/salome2_sp3_repairgui_functions.htm"><b>1</b></a> <a href="../shape_processing.htm"><b>2</b></a> </nobr><br><nobr>continuity2d <a href="../files/salome2_sp3_repairgui_functions.htm"><b>1</b></a> <a href="../shape_processing.htm"><b>2</b></a> </nobr><br><nobr>continuity3d <a href="../files/salome2_sp3_repairgui_functions.htm"><b>1</b></a> <a href="../shape_processing.htm"><b>2</b></a> </nobr><br><nobr>contour <a href="../close_contour.htm"><b>1</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>2</b></a> <a href="../repairing_operations.htm"><b>3</b></a> </nobr><br><nobr>conversion <a href="../files/salome2_sp3_repairgui_functions.htm"><b>1</b></a> <a href="../shape_processing.htm"><b>2</b></a> </nobr><br><nobr>coordinate <a href="../box.htm"><b>1</b></a> <a href="../cylinder.htm"><b>2</b></a> <a href="../cone.htm"><b>3</b></a> <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>4</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>5</b></a> <a href="../modify_the_location.htm"><b>6</b></a> <a href="../local_coordinate_system.htm"><b>7</b></a> <a href="../sphere.htm"><b>8</b></a> <a href="../sketcher.htm"><b>9</b></a> <a href="../working_plane.htm"><b>10</b></a> <a href="../transformation_operations.htm"><b>11</b></a> </nobr><br><nobr>coordinates <a href="../box.htm"><b>1</b></a> <a href="../explode.htm"><b>2</b></a> <a href="../cone.htm"><b>3</b></a> <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>4</b></a> <a href="../files/salome2_sp3_primitivegui_functions.htm"><b>5</b></a> <a href="../files/salome2_sp3_measuregui_functions.htm"><b>6</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>7</b></a> <a href="../point.htm"><b>8</b></a> <a href="../measurement_tools.htm"><b>9</b></a> <a href="../local_coordinate_system.htm"><b>10</b></a> <a href="../sphere.htm"><b>11</b></a> <a href="../sketcher.htm"><b>12</b></a> <a href="../vector.htm"><b>13</b></a> <a href="../turus.htm"><b>14</b></a> <a href="../translation.htm"><b>15</b></a> </nobr><br><a href="../measurement_tools.htm"><b>coords</b></a> <br><nobr>copy <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>1</b></a> <a href="../modify_the_location.htm"><b>2</b></a> <a href="../mirror_image.htm"><b>3</b></a> <a href="../rotation.htm"><b>4</b></a> <a href="../translation.htm"><b>5</b></a> </nobr><br><nobr>corners <a href="../building_by_blocks.htm"><b>1</b></a> <a href="../box.htm"><b>2</b></a> <a href="../files/salome2_sp3_primitivegui_functions.htm"><b>3</b></a> </nobr><br><nobr>correction <a href="../files/salome2_sp3_repairgui_functions.htm"><b>1</b></a> <a href="../shape_processing.htm"><b>2</b></a> </nobr><br><nobr>correspond <a href="../check_free_boundaries.htm"><b>1</b></a> <a href="../curve.htm"><b>2</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>3</b></a> </nobr><br><nobr>corresponding <a href="../archimede.htm"><b>1</b></a> <a href="../explode_on_blocks.htm"><b>2</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>3</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>4</b></a> </nobr><br><nobr>correspondingly <a href="../explode_on_blocks.htm"><b>1</b></a> <a href="../edge.htm"><b>2</b></a> <a href="../files/salome2_sp3_primitivegui_functions.htm"><b>3</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>4</b></a> <a href="../files/salome2_sp3_generationgui_functions.htm"><b>5</b></a> <a href="../files/salome2_sp3_buildgui_functions.htm"><b>6</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>7</b></a> </nobr><br><a href="../repairing_operations.htm"><b>count</b></a> <br><a href="../sketcher.htm"><b>coupled</b></a> <br><a href="../files/salome2_sp3_booleangui_functions.htm"><b>covering</b></a> <br><br><br></p><p class="ftsbody" align="center"><a href="whlstf2.htm" target="_self" title="previous search group"><b>>></b></a>\r
\r
</body>\r
\r
<body marginheight="0" marginwidth="0" bgproperties="fixed">\r
<p class="ftsbody" align="center"><a href="whlstf9.htm" target="_self" title="previous search group"><b><<</b></a><br><br></p>\r
<p class="ftsbody" >\r
-<nobr><a name="bms_PZ"></a><a name="subkey_PZ"></a>pz <a href="../basic_operations.htm"><b>1</b></a> <a href="../basic_geometrical_objects.htm"><b>2</b></a> <a href="../complex_objects.htm"><b>3</b></a> <a href="../geometrical_objects.htm"><b>4</b></a> <a href="../transformation_operations.htm"><b>5</b></a> <a href="../repairing_operations.htm"><b>6</b></a> </nobr><br>\r
-<br><br>\r
-<a name="bm_Q"></a><a name="subkey_QF"></a><a href="../building_by_blocks.htm"><b>qface1</b></a> <br><a href="../building_by_blocks.htm"><b>qface2</b></a> <br><a href="../building_by_blocks.htm"><b>qface3</b></a> <br><a href="../building_by_blocks.htm"><b>qface4</b></a> <br><a href="../building_by_blocks.htm"><b>qface5</b></a> <br><a href="../building_by_blocks.htm"><b>qface6</b></a> <br><a href="../building_by_blocks.htm"><b>qface7</b></a> <br><a href="../building_by_blocks.htm"><b>qface8</b></a> <br><nobr><a name="bms_QU"></a><a name="subkey_QU"></a>quadrangle <a href="../building_by_blocks.htm"><b>1</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>2</b></a> <a href="../files/salome2_sp3_measuregui_functions.htm"><b>3</b></a> <a href="../plane.htm"><b>4</b></a> <a href="../newentity_blocks.htm"><b>5</b></a> </nobr><br>\r
-<br><br>\r
-<nobr><a name="bm_R"></a><a name="subkey_R{"></a>r <a href="../geometrical_objects.htm"><b>1</b></a> <a href="../fillet.htm"><b>2</b></a> <a href="../sketcher_tui.htm"><b>3</b></a> </nobr><br><nobr><a name="bms_RA"></a><a name="subkey_RA"></a>radians <a href="../files/salome2_sp3_repairgui_functions.htm"><b>1</b></a> <a href="../shape_processing.htm"><b>2</b></a> </nobr><br><nobr>radius <a href="../circle.htm"><b>1</b></a> <a href="../chamfer.htm"><b>2</b></a> <a href="../basic_geometrical_objects.htm"><b>3</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>4</b></a> <a href="../ellipse.htm"><b>5</b></a> <a href="../cylinder.htm"><b>6</b></a> <a href="../cone.htm"><b>7</b></a> <a href="../fillet.htm"><b>8</b></a> <a href="../files/salome2_sp3_primitivegui_functions.htm"><b>9</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>10</b></a> <a href="../transformation_operations.htm"><b>11</b></a> <a href="../sphere.htm"><b>12</b></a> <a href="../sketcher.htm"><b>13</b></a> <a href="../turus.htm"><b>14</b></a> </nobr><br><nobr>radius1 <a href="../boolean_operations.htm"><b>1</b></a> <a href="../cone.htm"><b>2</b></a> <a href="../files/salome2_sp3_primitivegui_functions.htm"><b>3</b></a> <a href="../primitives.htm"><b>4</b></a> <a href="../transformation_operations.htm"><b>5</b></a> <a href="../repairing_operations.htm"><b>6</b></a> </nobr><br><nobr>radius2 <a href="../cone.htm"><b>1</b></a> <a href="../files/salome2_sp3_primitivegui_functions.htm"><b>2</b></a> <a href="../primitives.htm"><b>3</b></a> </nobr><br><a href="../primitives.htm"><b>radius3</b></a> <br><nobr>radiuses <a href="../basic_geometrical_objects.htm"><b>1</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>2</b></a> <a href="../ellipse.htm"><b>3</b></a> <a href="../cone.htm"><b>4</b></a> <a href="../files/salome2_sp3_primitivegui_functions.htm"><b>5</b></a> <a href="../turus.htm"><b>6</b></a> </nobr><br><nobr>radiusmajor <a href="../files/salome2_sp3_basicgui_functions.htm"><b>1</b></a> <a href="../ellipse.htm"><b>2</b></a> <a href="../files/salome2_sp3_primitivegui_functions.htm"><b>3</b></a> <a href="../turus.htm"><b>4</b></a> </nobr><br><nobr>radiusminor <a href="../files/salome2_sp3_basicgui_functions.htm"><b>1</b></a> <a href="../ellipse.htm"><b>2</b></a> <a href="../files/salome2_sp3_primitivegui_functions.htm"><b>3</b></a> <a href="../turus.htm"><b>4</b></a> </nobr><br><nobr>raise <a href="../measurement_tools.htm"><b>1</b></a> <a href="../repairing_operations.htm"><b>2</b></a> </nobr><br><nobr>range <a href="../add_point_on_edge.htm"><b>1</b></a> <a href="../files/introduction_to_geom.htm"><b>2</b></a> <a href="../explode.htm"><b>3</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>4</b></a> </nobr><br><nobr><a name="bms_RE"></a><a name="subkey_RE"></a>re <a href="../files/salome2_sp3_repairgui_functions.htm"><b>1</b></a> <a href="../shape_processing.htm"><b>2</b></a> </nobr><br><a href="../files/salome2_sp3_displaygui_functions.htm"><b>reasonable</b></a> <br><nobr>reconstruction <a href="../files/salome2_sp3_operationgui_functions.htm"><b>1</b></a> <a href="../partition.htm"><b>2</b></a> </nobr><br><nobr>reference <a href="../files/salome2_sp3_basicgui_functions.htm"><b>1</b></a> <a href="../point.htm"><b>2</b></a> <a href="../local_coordinate_system.htm"><b>3</b></a> </nobr><br><nobr>regarding <a href="../files/salome2_sp3_basicgui_functions.htm"><b>1</b></a> <a href="../point.htm"><b>2</b></a> </nobr><br><a href="../sketcher.htm"><b>relative</b></a> <br><a href="../transformation_operations.htm"><b>relatively</b></a> <br><nobr>remove <a href="../groups.htm"><b>1</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>2</b></a> <a href="../suppress_internal_wires.htm"><b>3</b></a> <a href="../suppress_holes.htm"><b>4</b></a> <a href="../repairing_operations.htm"><b>5</b></a> </nobr><br><nobr>removed <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>1</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>2</b></a> <a href="../modify_the_location.htm"><b>3</b></a> <a href="../mirror_image.htm"><b>4</b></a> <a href="../suppress_internal_wires.htm"><b>5</b></a> <a href="../suppress_holes.htm"><b>6</b></a> <a href="../suppress_faces.htm"><b>7</b></a> <a href="../shape_processing.htm"><b>8</b></a> <a href="../rotation.htm"><b>9</b></a> <a href="../working_with_groups.htm"><b>10</b></a> <a href="../translation.htm"><b>11</b></a> </nobr><br><nobr>removeobject <a href="../groups.htm"><b>1</b></a> <a href="../working_with_groups.htm"><b>2</b></a> </nobr><br><nobr>removes <a href="../files/salome2_sp3_repairgui_functions.htm"><b>1</b></a> <a href="../suppress_internal_wires.htm"><b>2</b></a> <a href="../suppress_holes.htm"><b>3</b></a> </nobr><br><nobr>removewebs <a href="../files/salome2_sp3_operationgui_functions.htm"><b>1</b></a> <a href="../partition.htm"><b>2</b></a> </nobr><br><nobr>removing <a href="../groups.htm"><b>1</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>2</b></a> <a href="../shape_processing.htm"><b>3</b></a> </nobr><br><nobr>repair <a href="../check_free_faces.htm"><b>1</b></a> <a href="../check_free_boundaries.htm"><b>2</b></a> <a href="../add_point_on_edge.htm"><b>3</b></a> <a href="../close_contour.htm"><b>4</b></a> <a href="../glue_faces.htm"><b>5</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>6</b></a> <a href="../suppress_internal_wires.htm"><b>7</b></a> <a href="../suppress_holes.htm"><b>8</b></a> <a href="../suppress_faces.htm"><b>9</b></a> <a href="../shape_processing.htm"><b>10</b></a> <a href="../sewing.htm"><b>11</b></a> </nobr><br><nobr>repairing <a href="../check_free_faces.htm"><b>1</b></a> <a href="../check_free_boundaries.htm"><b>2</b></a> <a href="../add_point_on_edge.htm"><b>3</b></a> <a href="../files/introduction_to_geom.htm"><b>4</b></a> <a href="../close_contour.htm"><b>5</b></a> <a href="../glue_faces.htm"><b>6</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>7</b></a> <a href="../suppress_internal_wires.htm"><b>8</b></a> <a href="../suppress_holes.htm"><b>9</b></a> <a href="../suppress_faces.htm"><b>10</b></a> <a href="../shape_processing.htm"><b>11</b></a> <a href="../sewing.htm"><b>12</b></a> <a href="../repairing_operations.htm"><b>13</b></a> </nobr><br><nobr>repetition <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>1</b></a> <a href="../multi_translation.htm"><b>2</b></a> <a href="../multi_rotation.htm"><b>3</b></a> </nobr><br><nobr>repetitions <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>1</b></a> <a href="../multi_translation.htm"><b>2</b></a> </nobr><br><nobr>representing <a href="../files/salome2_sp3_basicgui_functions.htm"><b>1</b></a> <a href="../plane.htm"><b>2</b></a> </nobr><br><a href="../files/salome2_sp3_buildgui_functions.htm"><b>requested</b></a> <br><nobr>required <a href="../files/salome2_sp3_repairgui_functions.htm"><b>1</b></a> <a href="../files/salome2_sp3_geomtoolsgui_functions.htm"><b>2</b></a> <a href="../files/salome2_sp3_displaygui_functions.htm"><b>3</b></a> <a href="../shape_processing.htm"><b>4</b></a> </nobr><br><nobr>requireddegree <a href="../files/salome2_sp3_repairgui_functions.htm"><b>1</b></a> <a href="../shape_processing.htm"><b>2</b></a> </nobr><br><nobr>requirednbsegments <a href="../files/salome2_sp3_repairgui_functions.htm"><b>1</b></a> <a href="../shape_processing.htm"><b>2</b></a> </nobr><br><a href="../repairing_operations.htm"><b>res</b></a> <br><nobr>respect <a href="../glue_faces.htm"><b>1</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>2</b></a> <a href="../sketcher.htm"><b>3</b></a> </nobr><br><nobr>restriction <a href="../files/salome2_sp3_repairgui_functions.htm"><b>1</b></a> <a href="../shape_processing.htm"><b>2</b></a> </nobr><br><nobr>result <a href="../circle.htm"><b>1</b></a> <a href="../check_free_faces.htm"><b>2</b></a> <a href="../check_free_boundaries.htm"><b>3</b></a> <a href="../chamfer.htm"><b>4</b></a> <a href="../box.htm"><b>5</b></a> <a href="../blocks_operations.htm"><b>6</b></a> <a href="../basic_operations.htm"><b>7</b></a> <a href="../archimede.htm"><b>8</b></a> <a href="../arc.htm"><b>9</b></a> <a href="../add_point_on_edge.htm"><b>10</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>11</b></a> <a href="../face.htm"><b>12</b></a> <a href="../extrusion.htm"><b>13</b></a> <a href="../explode_on_blocks.htm"><b>14</b></a> <a href="../explode.htm"><b>15</b></a> <a href="../ellipse.htm"><b>16</b></a> <a href="../edge.htm"><b>17</b></a> <a href="../cylinder.htm"><b>18</b></a> <a href="../cut.htm"><b>19</b></a> <a href="../curve.htm"><b>20</b></a> <a href="../cone.htm"><b>21</b></a> <a href="../compound.htm"><b>22</b></a> <a href="../common.htm"><b>23</b></a> <a href="../close_contour.htm"><b>24</b></a> <a href="../glue_faces.htm"><b>25</b></a> <a href="../fuse.htm"><b>26</b></a> <a href="../filling.htm"><b>27</b></a> <a href="../fillet.htm"><b>28</b></a> <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>29</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>30</b></a> <a href="../files/salome2_sp3_primitivegui_functions.htm"><b>31</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>32</b></a> <a href="../files/salome2_sp3_measuregui_functions.htm"><b>33</b></a> <a href="../files/salome2_sp3_generationgui_functions.htm"><b>34</b></a> <a href="../files/salome2_sp3_buildgui_functions.htm"><b>35</b></a> <a href="../propagate.htm"><b>36</b></a> <a href="../point.htm"><b>37</b></a> <a href="../plane.htm"><b>38</b></a> <a href="../pipe_creation.htm"><b>39</b></a> <a href="../partition.htm"><b>40</b></a> <a href="../offset_surface.htm"><b>41</b></a> <a href="../newentity_blocks.htm"><b>42</b></a> <a href="../multi_translation.htm"><b>43</b></a> <a href="../multi_transformation.htm"><b>44</b></a> <a href="../multi_rotation.htm"><b>45</b></a> <a href="../modify_the_location.htm"><b>46</b></a> <a href="../mirror_image.htm"><b>47</b></a> <a href="../line.htm"><b>48</b></a> <a href="../transformation_operations.htm"><b>49</b></a> <a href="../suppress_internal_wires.htm"><b>50</b></a> <a href="../suppress_holes.htm"><b>51</b></a> <a href="../suppress_faces.htm"><b>52</b></a> <a href="../sphere.htm"><b>53</b></a> <a href="../solid.htm"><b>54</b></a> <a href="../sketcher.htm"><b>55</b></a> <a href="../shell.htm"><b>56</b></a> <a href="../shape_processing.htm"><b>57</b></a> <a href="../sewing.htm"><b>58</b></a> <a href="../section.htm"><b>59</b></a> <a href="../scale_transform.htm"><b>60</b></a> <a href="../rotation.htm"><b>61</b></a> <a href="../revolution.htm"><b>62</b></a> <a href="../repairing_operations.htm"><b>63</b></a> <a href="../working_with_groups.htm"><b>64</b></a> <a href="../wire.htm"><b>65</b></a> <a href="../vector.htm"><b>66</b></a> <a href="../turus.htm"><b>67</b></a> <a href="../translation.htm"><b>68</b></a> </nobr><br><nobr>resultant <a href="../files/salome2_sp3_repairgui_functions.htm"><b>1</b></a> <a href="../shape_processing.htm"><b>2</b></a> </nobr><br><nobr>resulting <a href="../face.htm"><b>1</b></a> <a href="../explode_on_blocks.htm"><b>2</b></a> <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>3</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>4</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>5</b></a> <a href="../suppress_internal_wires.htm"><b>6</b></a> <a href="../sketcher.htm"><b>7</b></a> </nobr><br><nobr>results <a href="../boolean_operations.htm"><b>1</b></a> <a href="../blocks_operations.htm"><b>2</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>3</b></a> <a href="../partition.htm"><b>4</b></a> <a href="../transformation_operations.htm"><b>5</b></a> <a href="../repairing_operations.htm"><b>6</b></a> </nobr><br><a href="../files/salome2_sp3_buildgui_functions.htm"><b>retrieved</b></a> <br><nobr>retrieves <a href="../check_free_faces.htm"><b>1</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>2</b></a> </nobr><br><a href="../files/salome2_sp3_measuregui_functions.htm"><b>return</b></a> <br><nobr>returned <a href="../files/salome2_sp3_measuregui_functions.htm"><b>1</b></a> <a href="../measurement_tools.htm"><b>2</b></a> <a href="../working_with_groups.htm"><b>3</b></a> </nobr><br><a href="../explode.htm"><b>returning</b></a> <br><nobr>returns <a href="../check_free_faces.htm"><b>1</b></a> <a href="../explode_on_blocks.htm"><b>2</b></a> <a href="../explode.htm"><b>3</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>4</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>5</b></a> <a href="../files/salome2_sp3_measuregui_functions.htm"><b>6</b></a> <a href="../files/salome2_sp3_buildgui_functions.htm"><b>7</b></a> <a href="../working_with_groups.htm"><b>8</b></a> </nobr><br><nobr>reverse <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>1</b></a> <a href="../multi_rotation.htm"><b>2</b></a> <a href="../rotation.htm"><b>3</b></a> </nobr><br><nobr>revolution <a href="../complex_objects.htm"><b>1</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>2</b></a> <a href="../files/salome2_sp3_generationgui_functions.htm"><b>3</b></a> <a href="../shape_processing.htm"><b>4</b></a> <a href="../revolution.htm"><b>5</b></a> </nobr><br><nobr><a name="bms_RI"></a><a name="subkey_RI"></a>right <a href="../changing_displaying_parameters.htm"><b>1</b></a> <a href="../files/salome2_sp3_displaygui_functions.htm"><b>2</b></a> </nobr><br><a name="bms_RO"></a><a name="subkey_RO"></a><a href="../transformation_operations.htm"><b>rot1d</b></a> <br><a href="../transformation_operations.htm"><b>rot2d</b></a> <br><nobr>rotate <a href="../files/salome2_sp3_generationgui_functions.htm"><b>1</b></a> <a href="../transformation_operations.htm"><b>2</b></a> <a href="../revolution.htm"><b>3</b></a> </nobr><br><nobr>rotated <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>1</b></a> <a href="../files/salome2_sp3_generationgui_functions.htm"><b>2</b></a> <a href="../multi_rotation.htm"><b>3</b></a> <a href="../rotation.htm"><b>4</b></a> <a href="../revolution.htm"><b>5</b></a> </nobr><br><nobr>rotates <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>1</b></a> <a href="../multi_rotation.htm"><b>2</b></a> <a href="../rotation.htm"><b>3</b></a> </nobr><br><nobr>rotation <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>1</b></a> <a href="../multi_rotation.htm"><b>2</b></a> <a href="../transformation_operations.htm"><b>3</b></a> <a href="../rotation.htm"><b>4</b></a> <a href="../repairing_operations.htm"><b>5</b></a> </nobr><br><nobr><a name="bms_RU"></a><a name="subkey_RU"></a>runtimeerror <a href="../measurement_tools.htm"><b>1</b></a> <a href="../repairing_operations.htm"><b>2</b></a> </nobr><br>\r
-<br><br>\r
-<nobr><a name="bm_S"></a><a name="subkey_S{"></a>s <a href="../circle.htm"><b>1</b></a> <a href="../check_free_boundaries.htm"><b>2</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>3</b></a> <a href="../complex_objects.htm"><b>4</b></a> <a href="../close_contour.htm"><b>5</b></a> <a href="../groups.htm"><b>6</b></a> <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>7</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>8</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>9</b></a> <a href="../files/salome2_sp3_buildgui_functions.htm"><b>10</b></a> <a href="../multi_transformation.htm"><b>11</b></a> <a href="../measurement_tools.htm"><b>12</b></a> <a href="../suppress_internal_wires.htm"><b>13</b></a> <a href="../suppress_holes.htm"><b>14</b></a> <a href="../suppress_faces.htm"><b>15</b></a> <a href="../scale_transform.htm"><b>16</b></a> <a href="../repairing_operations.htm"><b>17</b></a> <a href="../working_with_groups.htm"><b>18</b></a> </nobr><br><nobr>s1 <a href="../common.htm"><b>1</b></a> <a href="../fuse.htm"><b>2</b></a> <a href="../section.htm"><b>3</b></a> </nobr><br><nobr>s2 <a href="../common.htm"><b>1</b></a> <a href="../fuse.htm"><b>2</b></a> <a href="../section.htm"><b>3</b></a> </nobr><br><nobr><a name="bms_SA"></a><a name="subkey_SA"></a>salome <a href="../changing_display_parameters.htm"><b>1</b></a> <a href="../building_by_blocks.htm"><b>2</b></a> <a href="../boolean_operations.htm"><b>3</b></a> <a href="../blocks_operations.htm"><b>4</b></a> <a href="../basic_operations.htm"><b>5</b></a> <a href="../basic_geometrical_objects.htm"><b>6</b></a> <a href="../files/introduction_to_geom.htm"><b>7</b></a> <a href="../complex_objects.htm"><b>8</b></a> <a href="../groups.htm"><b>9</b></a> <a href="../geometrical_objects.htm"><b>10</b></a> <a href="../primitives.htm"><b>11</b></a> <a href="../measurement_tools.htm"><b>12</b></a> <a href="../transformation_operations.htm"><b>13</b></a> <a href="../sketcher_tui.htm"><b>14</b></a> <a href="../repairing_operations.htm"><b>15</b></a> <a href="../working_with_groups.htm"><b>16</b></a> </nobr><br><nobr>same <a href="../files/salome2_sp3_repairgui_functions.htm"><b>1</b></a> <a href="../multi_rotation.htm"><b>2</b></a> <a href="../transformation_operations.htm"><b>3</b></a> <a href="../sketcher.htm"><b>4</b></a> <a href="../shape_processing.htm"><b>5</b></a> </nobr><br><nobr>sameparameter <a href="../files/salome2_sp3_repairgui_functions.htm"><b>1</b></a> <a href="../shape_processing.htm"><b>2</b></a> </nobr><br><a href="../files/salome2_sp3_measuregui_functions.htm"><b>satisfy</b></a> <br><nobr><a name="bms_SC"></a><a name="subkey_SC"></a>scale <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>1</b></a> <a href="../transformation_operations.htm"><b>2</b></a> <a href="../scale_transform.htm"><b>3</b></a> </nobr><br><nobr>scaled <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>1</b></a> <a href="../scale_transform.htm"><b>2</b></a> </nobr><br><nobr>scripts <a href="../circle.htm"><b>1</b></a> <a href="../check_free_faces.htm"><b>2</b></a> <a href="../check_free_boundaries.htm"><b>3</b></a> <a href="../changing_displaying_parameters.htm"><b>4</b></a> <a href="../chamfer.htm"><b>5</b></a> <a href="../box.htm"><b>6</b></a> <a href="../archimede.htm"><b>7</b></a> <a href="../arc.htm"><b>8</b></a> <a href="../add_point_on_edge.htm"><b>9</b></a> <a href="../face.htm"><b>10</b></a> <a href="../extrusion.htm"><b>11</b></a> <a href="../explode_on_blocks.htm"><b>12</b></a> <a href="../ellipse.htm"><b>13</b></a> <a href="../edge.htm"><b>14</b></a> <a href="../cylinder.htm"><b>15</b></a> <a href="../cut.htm"><b>16</b></a> <a href="../curve.htm"><b>17</b></a> <a href="../cone.htm"><b>18</b></a> <a href="../compound.htm"><b>19</b></a> <a href="../common.htm"><b>20</b></a> <a href="../close_contour.htm"><b>21</b></a> <a href="../glue_faces.htm"><b>22</b></a> <a href="../fuse.htm"><b>23</b></a> <a href="../filling.htm"><b>24</b></a> <a href="../fillet.htm"><b>25</b></a> <a href="../files/salome2_sp3_measuregui_functions.htm"><b>26</b></a> <a href="../files/salome2_sp3_booleangui_functions.htm"><b>27</b></a> <a href="../propagate.htm"><b>28</b></a> <a href="../point.htm"><b>29</b></a> <a href="../plane.htm"><b>30</b></a> <a href="../pipe_creation.htm"><b>31</b></a> <a href="../partition.htm"><b>32</b></a> <a href="../offset_surface.htm"><b>33</b></a> <a href="../newentity_blocks.htm"><b>34</b></a> <a href="../multi_translation.htm"><b>35</b></a> <a href="../multi_transformation.htm"><b>36</b></a> <a href="../multi_rotation.htm"><b>37</b></a> <a href="../modify_the_location.htm"><b>38</b></a> <a href="../mirror_image.htm"><b>39</b></a> <a href="../line.htm"><b>40</b></a> <a href="../suppress_internal_wires.htm"><b>41</b></a> <a href="../suppress_holes.htm"><b>42</b></a> <a href="../suppress_faces.htm"><b>43</b></a> <a href="../sphere.htm"><b>44</b></a> <a href="../solid.htm"><b>45</b></a> <a href="../sketcher.htm"><b>46</b></a> <a href="../shell.htm"><b>47</b></a> <a href="../shape_processing.htm"><b>48</b></a> <a href="../sewing.htm"><b>49</b></a> <a href="../section.htm"><b>50</b></a> <a href="../scale_transform.htm"><b>51</b></a> <a href="../rotation.htm"><b>52</b></a> <a href="../revolution.htm"><b>53</b></a> <a href="../working_with_groups.htm"><b>54</b></a> <a href="../wire.htm"><b>55</b></a> <a href="../vector.htm"><b>56</b></a> <a href="../turus.htm"><b>57</b></a> <a href="../translation.htm"><b>58</b></a> </nobr><br><br><br></p><p class="ftsbody" align="center"><a href="whlstf11.htm" target="_self" title="previous search group"><b>>></b></a>\r
+<nobr><a name="bms_PA"></a><a name="subkey_PA"></a>parallel <a href="../box.htm"><b>1</b></a> <a href="../local_coordinate_system.htm"><b>2</b></a> <a href="../line.htm"><b>3</b></a> </nobr><br><nobr>parameter <a href="../add_point_on_edge.htm"><b>1</b></a> <a href="../close_contour.htm"><b>2</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>3</b></a> <a href="../files/salome2_sp3_buildgui_functions.htm"><b>4</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>5</b></a> <a href="../point.htm"><b>6</b></a> <a href="../shape_processing.htm"><b>7</b></a> </nobr><br><nobr>parameters <a href="../changing_displaying_parameters.htm"><b>1</b></a> <a href="../changing_display_parameters.htm"><b>2</b></a> <a href="../basic_operations.htm"><b>3</b></a> <a href="../color.htm"><b>4</b></a> <a href="../filling.htm"><b>5</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>6</b></a> <a href="../files/salome2_sp3_generationgui_functions.htm"><b>7</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>8</b></a> <a href="../sketcher.htm"><b>9</b></a> <a href="../shape_processing.htm"><b>10</b></a> <a href="../repairing_operations.htm"><b>11</b></a> <a href="../wireframe_and_shading.htm"><b>12</b></a> <a href="../transparency.htm"><b>13</b></a> </nobr><br><nobr>paramter <a href="../add_point_on_edge.htm"><b>1</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>2</b></a> </nobr><br><nobr>part <a href="../cone.htm"><b>1</b></a> <a href="../common.htm"><b>2</b></a> <a href="../files/salome2_sp3_primitivegui_functions.htm"><b>3</b></a> </nobr><br><nobr>partition <a href="../basic_operations.htm"><b>1</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>2</b></a> <a href="../partition.htm"><b>3</b></a> </nobr><br><a href="../basic_operations.htm"><b>partition1</b></a> <br><a href="../basic_operations.htm"><b>partition2</b></a> <br><a href="../basic_operations.htm"><b>partition3</b></a> <br><a href="../sketcher.htm"><b>passed</b></a> <br><nobr>passes <a href="../curve.htm"><b>1</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>2</b></a> <a href="../plane.htm"><b>3</b></a> <a href="../multi_rotation.htm"><b>4</b></a> <a href="../line.htm"><b>5</b></a> </nobr><br><a href="../line.htm"><b>passing</b></a> <br><nobr>path <a href="../complex_objects.htm"><b>1</b></a> <a href="../files/salome2_sp3_generationgui_functions.htm"><b>2</b></a> <a href="../pipe_creation.htm"><b>3</b></a> </nobr><br><nobr>pathshape <a href="../files/salome2_sp3_generationgui_functions.htm"><b>1</b></a> <a href="../pipe_creation.htm"><b>2</b></a> </nobr><br><a href="../files/salome2_sp3_transformationgui_functions.htm"><b>pattern</b></a> <br><nobr><a name="bms_PE"></a><a name="subkey_PE"></a>perform <a href="../basic_operations.htm"><b>1</b></a> <a href="../explode.htm"><b>2</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>3</b></a> <a href="../transformation_operations.htm"><b>4</b></a> </nobr><br><nobr>performed <a href="../files/salome2_sp3_operationgui_functions.htm"><b>1</b></a> <a href="../partition.htm"><b>2</b></a> </nobr><br><a href="../sketcher.htm"><b>perpendicular</b></a> <br><nobr><a name="bms_PI"></a><a name="subkey_PI"></a>pi <a href="../multi_rotation.htm"><b>1</b></a> <a href="../repairing_operations.htm"><b>2</b></a> <a href="../transformation_operations.htm"><b>3</b></a> </nobr><br><a href="../modify_the_location.htm"><b>picture</b></a> <br><nobr>pipe <a href="../complex_objects.htm"><b>1</b></a> <a href="../files/salome2_sp3_generationgui_functions.htm"><b>2</b></a> <a href="../pipe_creation.htm"><b>3</b></a> </nobr><br><a name="bms_PL"></a><a name="subkey_PL"></a><a href="../modify_the_location.htm"><b>place</b></a> <br><a href="../modify_the_location.htm"><b>places</b></a> <br><nobr>planar <a href="../face.htm"><b>1</b></a> <a href="../files/salome2_sp3_buildgui_functions.htm"><b>2</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>3</b></a> <a href="../sketcher_tui.htm"><b>4</b></a> <a href="../sketcher.htm"><b>5</b></a> <a href="../working_plane.htm"><b>6</b></a> <a href="../transformation_operations.htm"><b>7</b></a> </nobr><br><nobr>plane <a href="../basic_operations.htm"><b>1</b></a> <a href="../basic_geometrical_objects.htm"><b>2</b></a> <a href="../archimede.htm"><b>3</b></a> <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>4</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>5</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>6</b></a> <a href="../plane.htm"><b>7</b></a> <a href="../partition.htm"><b>8</b></a> <a href="../mirror_image.htm"><b>9</b></a> <a href="../sketcher.htm"><b>10</b></a> <a href="../working_plane.htm"><b>11</b></a> <a href="../transformation_operations.htm"><b>12</b></a> </nobr><br><a href="../basic_geometrical_objects.htm"><b>plane1</b></a> <br><a href="../basic_geometrical_objects.htm"><b>plane2</b></a> <br><a href="../basic_geometrical_objects.htm"><b>plane3</b></a> <br><nobr>planes <a href="../plane.htm"><b>1</b></a> <a href="../working_with_groups.htm"><b>2</b></a> </nobr><br><a href="../working_with_groups.htm"><b>platform</b></a> <br><a href="../files/salome2_sp3_geomtoolsgui_functions.htm"><b>plug</b></a> <br><nobr>plunged <a href="../archimede.htm"><b>1</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>2</b></a> </nobr><br><nobr><a name="bms_PO"></a><a name="subkey_PO"></a>point <a href="../circle.htm"><b>1</b></a> <a href="../box.htm"><b>2</b></a> <a href="../basic_geometrical_objects.htm"><b>3</b></a> <a href="../arc.htm"><b>4</b></a> <a href="../add_point_on_edge.htm"><b>5</b></a> <a href="../extrusion.htm"><b>6</b></a> <a href="../ellipse.htm"><b>7</b></a> <a href="../cylinder.htm"><b>8</b></a> <a href="../cone.htm"><b>9</b></a> <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>10</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>11</b></a> <a href="../files/salome2_sp3_primitivegui_functions.htm"><b>12</b></a> <a href="../files/salome2_sp3_measuregui_functions.htm"><b>13</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>14</b></a> <a href="../point.htm"><b>15</b></a> <a href="../plane.htm"><b>16</b></a> <a href="../offset_surface.htm"><b>17</b></a> <a href="../multi_rotation.htm"><b>18</b></a> <a href="../mirror_image.htm"><b>19</b></a> <a href="../measurement_tools.htm"><b>20</b></a> <a href="../local_coordinate_system.htm"><b>21</b></a> <a href="../line.htm"><b>22</b></a> <a href="../sphere.htm"><b>23</b></a> <a href="../sketcher.htm"><b>24</b></a> <a href="../scale_transform.htm"><b>25</b></a> <a href="../repairing_operations.htm"><b>26</b></a> <a href="../vector.htm"><b>27</b></a> <a href="../turus.htm"><b>28</b></a> <a href="../transformation_operations.htm"><b>29</b></a> </nobr><br><nobr>point1 <a href="../circle.htm"><b>1</b></a> <a href="../building_by_blocks.htm"><b>2</b></a> <a href="../box.htm"><b>3</b></a> <a href="../basic_geometrical_objects.htm"><b>4</b></a> <a href="../arc.htm"><b>5</b></a> <a href="../extrusion.htm"><b>6</b></a> <a href="../edge.htm"><b>7</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>8</b></a> <a href="../plane.htm"><b>9</b></a> <a href="../line.htm"><b>10</b></a> <a href="../vector.htm"><b>11</b></a> <a href="../translation.htm"><b>12</b></a> </nobr><br><nobr>point2 <a href="../circle.htm"><b>1</b></a> <a href="../building_by_blocks.htm"><b>2</b></a> <a href="../box.htm"><b>3</b></a> <a href="../basic_geometrical_objects.htm"><b>4</b></a> <a href="../arc.htm"><b>5</b></a> <a href="../extrusion.htm"><b>6</b></a> <a href="../edge.htm"><b>7</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>8</b></a> <a href="../plane.htm"><b>9</b></a> <a href="../line.htm"><b>10</b></a> <a href="../vector.htm"><b>11</b></a> <a href="../translation.htm"><b>12</b></a> </nobr><br><nobr>point3 <a href="../circle.htm"><b>1</b></a> <a href="../building_by_blocks.htm"><b>2</b></a> <a href="../basic_geometrical_objects.htm"><b>3</b></a> <a href="../arc.htm"><b>4</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>5</b></a> <a href="../plane.htm"><b>6</b></a> </nobr><br><nobr>point4 <a href="../building_by_blocks.htm"><b>1</b></a> <a href="../basic_geometrical_objects.htm"><b>2</b></a> </nobr><br><a href="../basic_geometrical_objects.htm"><b>point5</b></a> <br><nobr>pointcoordinates <a href="../files/salome2_sp3_measuregui_functions.htm"><b>1</b></a> <a href="../measurement_tools.htm"><b>2</b></a> </nobr><br><nobr>points <a href="../circle.htm"><b>1</b></a> <a href="../building_by_blocks.htm"><b>2</b></a> <a href="../box.htm"><b>3</b></a> <a href="../basic_operations.htm"><b>4</b></a> <a href="../basic_geometrical_objects.htm"><b>5</b></a> <a href="../arc.htm"><b>6</b></a> <a href="../edge.htm"><b>7</b></a> <a href="../curve.htm"><b>8</b></a> <a href="../complex_objects.htm"><b>9</b></a> <a href="../close_contour.htm"><b>10</b></a> <a href="../geometrical_objects.htm"><b>11</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>12</b></a> <a href="../files/salome2_sp3_primitivegui_functions.htm"><b>13</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>14</b></a> <a href="../plane.htm"><b>15</b></a> <a href="../newentity_blocks.htm"><b>16</b></a> <a href="../line.htm"><b>17</b></a> <a href="../groups.htm"><b>18</b></a> <a href="../sketcher_tui.htm"><b>19</b></a> <a href="../sketcher.htm"><b>20</b></a> <a href="../shape_processing.htm"><b>21</b></a> <a href="../repairing_operations.htm"><b>22</b></a> <a href="../working_with_groups.htm"><b>23</b></a> <a href="../vector.htm"><b>24</b></a> <a href="../translation.htm"><b>25</b></a> <a href="../transformation_operations.htm"><b>26</b></a> </nobr><br><nobr>polyline <a href="../basic_geometrical_objects.htm"><b>1</b></a> <a href="../curve.htm"><b>2</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>3</b></a> </nobr><br><nobr>pop <a href="../changing_displaying_parameters.htm"><b>1</b></a> <a href="../color.htm"><b>2</b></a> <a href="../files/salome2_sp3_displaygui_functions.htm"><b>3</b></a> <a href="../wireframe_and_shading.htm"><b>4</b></a> </nobr><br><nobr>position <a href="../add_point_on_edge.htm"><b>1</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>2</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>3</b></a> <a href="../point.htm"><b>4</b></a> <a href="../working_plane.htm"><b>5</b></a> <a href="../transformation_operations.htm"><b>6</b></a> </nobr><br><a href="../face.htm"><b>possibilities</b></a> <br><nobr>possibility <a href="../files/salome2_sp3_repairgui_functions.htm"><b>1</b></a> <a href="../shape_processing.htm"><b>2</b></a> </nobr><br><nobr>possible <a href="../blocks_operations.htm"><b>1</b></a> <a href="../curve.htm"><b>2</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>3</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>4</b></a> <a href="../files/salome2_sp3_measuregui_functions.htm"><b>5</b></a> <a href="../files/salome2_sp3_displaygui_functions.htm"><b>6</b></a> <a href="../shape_processing.htm"><b>7</b></a> <a href="../propagate.htm"><b>8</b></a> </nobr><br><nobr><a name="bms_PR"></a><a name="subkey_PR"></a>precision <a href="../files/salome2_sp3_repairgui_functions.htm"><b>1</b></a> <a href="../sewing.htm"><b>2</b></a> <a href="../repairing_operations.htm"><b>3</b></a> </nobr><br><a href="../sketcher.htm"><b>predefined</b></a> <br><a href="../local_coordinate_system.htm"><b>press</b></a> <br><a href="../files/salome2_sp3_basicgui_functions.htm"><b>presses</b></a> <br><a href="../local_coordinate_system.htm"><b>presumes</b></a> <br><a href="../files/salome2_sp3_basicgui_functions.htm"><b>preview</b></a> <br><a href="../sketcher.htm"><b>previous</b></a> <br><a href="../files/salome2_sp3_primitivegui_functions.htm"><b>primitive</b></a> <br><nobr>primitives <a href="../box.htm"><b>1</b></a> <a href="../files/introduction_to_geom.htm"><b>2</b></a> <a href="../cylinder.htm"><b>3</b></a> <a href="../cone.htm"><b>4</b></a> <a href="../files/salome2_sp3_primitivegui_functions.htm"><b>5</b></a> <a href="../sphere.htm"><b>6</b></a> <a href="../primitives.htm"><b>7</b></a> <a href="../turus.htm"><b>8</b></a> </nobr><br><nobr>print <a href="../measurement_tools.htm"><b>1</b></a> <a href="../repairing_operations.htm"><b>2</b></a> </nobr><br><a href="../files/salome2_sp3_measuregui_functions.htm"><b>printed</b></a> <br><nobr>prism <a href="../extrusion.htm"><b>1</b></a> <a href="../complex_objects.htm"><b>2</b></a> <a href="../geometrical_objects.htm"><b>3</b></a> <a href="../files/salome2_sp3_generationgui_functions.htm"><b>4</b></a> <a href="../repairing_operations.htm"><b>5</b></a> <a href="../transformation_operations.htm"><b>6</b></a> </nobr><br><a href="../transformation_operations.htm"><b>prism_edges</b></a> <br><nobr>prism_faces <a href="../geometrical_objects.htm"><b>1</b></a> <a href="../transformation_operations.htm"><b>2</b></a> </nobr><br><a href="../complex_objects.htm"><b>prism1</b></a> <br><a href="../complex_objects.htm"><b>prism2</b></a> <br><nobr>prisms <a href="../extrusion.htm"><b>1</b></a> <a href="../complex_objects.htm"><b>2</b></a> </nobr><br><nobr>problems <a href="../files/salome2_sp3_repairgui_functions.htm"><b>1</b></a> <a href="../shape_processing.htm"><b>2</b></a> </nobr><br><a href="../repairing_operations.htm"><b>process</b></a> <br><nobr>processed <a href="../close_contour.htm"><b>1</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>2</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>3</b></a> <a href="../suppress_faces.htm"><b>4</b></a> <a href="../shape_processing.htm"><b>5</b></a> <a href="../repairing_operations.htm"><b>6</b></a> </nobr><br><nobr>processes <a href="../files/salome2_sp3_repairgui_functions.htm"><b>1</b></a> <a href="../shape_processing.htm"><b>2</b></a> </nobr><br><nobr>processing <a href="../files/salome2_sp3_repairgui_functions.htm"><b>1</b></a> <a href="../shape_processing.htm"><b>2</b></a> <a href="../repairing_operations.htm"><b>3</b></a> </nobr><br><nobr>processshape <a href="../files/salome2_sp3_repairgui_functions.htm"><b>1</b></a> <a href="../shape_processing.htm"><b>2</b></a> <a href="../repairing_operations.htm"><b>3</b></a> </nobr><br><nobr>produce <a href="../chamfer.htm"><b>1</b></a> <a href="../archimede.htm"><b>2</b></a> <a href="../explode_on_blocks.htm"><b>3</b></a> <a href="../cut.htm"><b>4</b></a> <a href="../common.htm"><b>5</b></a> <a href="../close_contour.htm"><b>6</b></a> <a href="../fuse.htm"><b>7</b></a> <a href="../fillet.htm"><b>8</b></a> <a href="../partition.htm"><b>9</b></a> <a href="../offset_surface.htm"><b>10</b></a> <a href="../multi_translation.htm"><b>11</b></a> <a href="../multi_transformation.htm"><b>12</b></a> <a href="../multi_rotation.htm"><b>13</b></a> <a href="../mirror_image.htm"><b>14</b></a> <a href="../suppress_faces.htm"><b>15</b></a> <a href="../shape_processing.htm"><b>16</b></a> <a href="../sewing.htm"><b>17</b></a> <a href="../section.htm"><b>18</b></a> <a href="../scale_transform.htm"><b>19</b></a> <a href="../rotation.htm"><b>20</b></a> <a href="../propagate.htm"><b>21</b></a> <a href="../translation.htm"><b>22</b></a> <a href="../transformation_operations.htm"><b>23</b></a> </nobr><br><a href="../groups.htm"><b>program</b></a> <br><a href="../multi_rotation.htm"><b>projection</b></a> <br><a href="../working_plane.htm"><b>projections</b></a> <br><nobr>propagate <a href="../blocks_operations.htm"><b>1</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>2</b></a> <a href="../propagate.htm"><b>3</b></a> </nobr><br><nobr>propagation <a href="../blocks_operations.htm"><b>1</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>2</b></a> <a href="../propagate.htm"><b>3</b></a> </nobr><br><nobr>properties <a href="../changing_displaying_parameters.htm"><b>1</b></a> <a href="../files/salome2_sp3_measuregui_functions.htm"><b>2</b></a> <a href="../measurement_tools.htm"><b>3</b></a> </nobr><br><a href="../measurement_tools.htm"><b>props</b></a> <br><nobr>provide <a href="../circle.htm"><b>1</b></a> <a href="../check_free_faces.htm"><b>2</b></a> <a href="../check_free_boundaries.htm"><b>3</b></a> <a href="../chamfer.htm"><b>4</b></a> <a href="../box.htm"><b>5</b></a> <a href="../archimede.htm"><b>6</b></a> <a href="../arc.htm"><b>7</b></a> <a href="../add_point_on_edge.htm"><b>8</b></a> <a href="../face.htm"><b>9</b></a> <a href="../extrusion.htm"><b>10</b></a> <a href="../explode_on_blocks.htm"><b>11</b></a> <a href="../ellipse.htm"><b>12</b></a> <a href="../edge.htm"><b>13</b></a> <a href="../cylinder.htm"><b>14</b></a> <a href="../cut.htm"><b>15</b></a> <a href="../curve.htm"><b>16</b></a> <a href="../cone.htm"><b>17</b></a> <a href="../compound.htm"><b>18</b></a> <a href="../common.htm"><b>19</b></a> <a href="../color.htm"><b>20</b></a> <a href="../close_contour.htm"><b>21</b></a> <a href="../glue_faces.htm"><b>22</b></a> <a href="../fuse.htm"><b>23</b></a> <a href="../filling.htm"><b>24</b></a> <a href="../fillet.htm"><b>25</b></a> <a href="../files/salome2_sp3_booleangui_functions.htm"><b>26</b></a> <a href="../point.htm"><b>27</b></a> <a href="../plane.htm"><b>28</b></a> <a href="../pipe_creation.htm"><b>29</b></a> <a href="../partition.htm"><b>30</b></a> <a href="../offset_surface.htm"><b>31</b></a> <a href="../newentity_blocks.htm"><b>32</b></a> <a href="../multi_translation.htm"><b>33</b></a> <a href="../multi_transformation.htm"><b>34</b></a> <a href="../multi_rotation.htm"><b>35</b></a> <a href="../modify_the_location.htm"><b>36</b></a> <a href="../mirror_image.htm"><b>37</b></a> <a href="../line.htm"><b>38</b></a> <a href="../suppress_holes.htm"><b>39</b></a> <a href="../suppress_faces.htm"><b>40</b></a> <a href="../sphere.htm"><b>41</b></a> <a href="../solid.htm"><b>42</b></a> <a href="../sketcher.htm"><b>43</b></a> <a href="../shell.htm"><b>44</b></a> <a href="../shape_processing.htm"><b>45</b></a> <a href="../sewing.htm"><b>46</b></a> <a href="../section.htm"><b>47</b></a> <a href="../scale_transform.htm"><b>48</b></a> <a href="../rotation.htm"><b>49</b></a> <a href="../revolution.htm"><b>50</b></a> <a href="../propagate.htm"><b>51</b></a> <a href="../working_with_groups.htm"><b>52</b></a> <a href="../wireframe_and_shading.htm"><b>53</b></a> <a href="../wire.htm"><b>54</b></a> <a href="../vector.htm"><b>55</b></a> <a href="../turus.htm"><b>56</b></a> <a href="../transparency.htm"><b>57</b></a> <a href="../translation.htm"><b>58</b></a> <a href="../suppress_internal_wires.htm"><b>59</b></a> </nobr><br><a name="bms_PS"></a><a name="subkey_PS"></a><a href="../repairing_operations.htm"><b>ps</b></a> <br><nobr><a name="bms_PU"></a><a name="subkey_PU"></a>put <a href="../archimede.htm"><b>1</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>2</b></a> </nobr><br><nobr><a name="bms_PX"></a><a name="subkey_PX"></a>px <a href="../basic_geometrical_objects.htm"><b>1</b></a> <a href="../complex_objects.htm"><b>2</b></a> <a href="../geometrical_objects.htm"><b>3</b></a> <a href="../repairing_operations.htm"><b>4</b></a> <a href="../transformation_operations.htm"><b>5</b></a> </nobr><br><a href="../transformation_operations.htm"><b>pxy</b></a> <br><nobr>pxyz <a href="../complex_objects.htm"><b>1</b></a> <a href="../geometrical_objects.htm"><b>2</b></a> <a href="../transformation_operations.htm"><b>3</b></a> </nobr><br><br><br></p><p class="ftsbody" align="center"><a href="whlstf11.htm" target="_self" title="previous search group"><b>>></b></a>\r
\r
</body>\r
\r
<body marginheight="0" marginwidth="0" bgproperties="fixed">\r
<p class="ftsbody" align="center"><a href="whlstf10.htm" target="_self" title="previous search group"><b><<</b></a><br><br></p>\r
<p class="ftsbody" >\r
-<a name="bms_SE"></a><a name="subkey_SE"></a><a href="../files/salome2_sp3_geomtoolsgui_functions.htm"><b>search</b></a> <br><nobr>second <a href="../cone.htm"><b>1</b></a> <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>2</b></a> <a href="../files/salome2_sp3_primitivegui_functions.htm"><b>3</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>4</b></a> <a href="../files/salome2_sp3_booleangui_functions.htm"><b>5</b></a> <a href="../partition.htm"><b>6</b></a> <a href="../multi_translation.htm"><b>7</b></a> <a href="../multi_transformation.htm"><b>8</b></a> <a href="../sketcher_tui.htm"><b>9</b></a> </nobr><br><nobr>secondly <a href="../circle.htm"><b>1</b></a> <a href="../box.htm"><b>2</b></a> <a href="../cylinder.htm"><b>3</b></a> <a href="../cone.htm"><b>4</b></a> <a href="../point.htm"><b>5</b></a> <a href="../plane.htm"><b>6</b></a> <a href="../mirror_image.htm"><b>7</b></a> <a href="../sphere.htm"><b>8</b></a> <a href="../working_plane.htm"><b>9</b></a> <a href="../vector.htm"><b>10</b></a> <a href="../turus.htm"><b>11</b></a> <a href="../translation.htm"><b>12</b></a> </nobr><br><nobr>section <a href="../boolean_operations.htm"><b>1</b></a> <a href="../archimede.htm"><b>2</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>3</b></a> <a href="../files/salome2_sp3_booleangui_functions.htm"><b>4</b></a> <a href="../section.htm"><b>5</b></a> </nobr><br><nobr>see <a href="../files/salome2_sp3_measuregui_functions.htm"><b>1</b></a> <a href="../files/salome2_sp3_geomtoolsgui_functions.htm"><b>2</b></a> </nobr><br><a href="../repairing_operations.htm"><b>seems</b></a> <br><a href="../sketcher.htm"><b>segment</b></a> <br><nobr>segments <a href="../files/salome2_sp3_repairgui_functions.htm"><b>1</b></a> <a href="../sketcher.htm"><b>2</b></a> <a href="../shape_processing.htm"><b>3</b></a> </nobr><br><nobr>select <a href="../circle.htm"><b>1</b></a> <a href="../check_free_faces.htm"><b>2</b></a> <a href="../check_free_boundaries.htm"><b>3</b></a> <a href="../changing_displaying_parameters.htm"><b>4</b></a> <a href="../chamfer.htm"><b>5</b></a> <a href="../box.htm"><b>6</b></a> <a href="../blocks.htm"><b>7</b></a> <a href="../archimede.htm"><b>8</b></a> <a href="../arc.htm"><b>9</b></a> <a href="../add_point_on_edge.htm"><b>10</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>11</b></a> <a href="../face.htm"><b>12</b></a> <a href="../extrusion.htm"><b>13</b></a> <a href="../explode_on_blocks.htm"><b>14</b></a> <a href="../explode.htm"><b>15</b></a> <a href="../ellipse.htm"><b>16</b></a> <a href="../edge.htm"><b>17</b></a> <a href="../cylinder.htm"><b>18</b></a> <a href="../cut.htm"><b>19</b></a> <a href="../curve.htm"><b>20</b></a> <a href="../cone.htm"><b>21</b></a> <a href="../compound.htm"><b>22</b></a> <a href="../common.htm"><b>23</b></a> <a href="../close_contour.htm"><b>24</b></a> <a href="../glue_faces.htm"><b>25</b></a> <a href="../fuse.htm"><b>26</b></a> <a href="../filling.htm"><b>27</b></a> <a href="../fillet.htm"><b>28</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>29</b></a> <a href="../files/salome2_sp3_primitivegui_functions.htm"><b>30</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>31</b></a> <a href="../files/salome2_sp3_measuregui_functions.htm"><b>32</b></a> <a href="../files/salome2_sp3_geomtoolsgui_functions.htm"><b>33</b></a> <a href="../files/salome2_sp3_generationgui_functions.htm"><b>34</b></a> <a href="../files/salome2_sp3_displaygui_functions.htm"><b>35</b></a> <a href="../files/salome2_sp3_buildgui_functions.htm"><b>36</b></a> <a href="../propagate.htm"><b>37</b></a> <a href="../point.htm"><b>38</b></a> <a href="../plane.htm"><b>39</b></a> <a href="../pipe_creation.htm"><b>40</b></a> <a href="../partition.htm"><b>41</b></a> <a href="../offset_surface.htm"><b>42</b></a> <a href="../multi_translation.htm"><b>43</b></a> <a href="../multi_transformation.htm"><b>44</b></a> <a href="../multi_rotation.htm"><b>45</b></a> <a href="../modify_the_location.htm"><b>46</b></a> <a href="../mirror_image.htm"><b>47</b></a> <a href="../local_coordinate_system.htm"><b>48</b></a> <a href="../line.htm"><b>49</b></a> <a href="../suppress_internal_wires.htm"><b>50</b></a> <a href="../suppress_holes.htm"><b>51</b></a> <a href="../suppress_faces.htm"><b>52</b></a> <a href="../sphere.htm"><b>53</b></a> <a href="../solid.htm"><b>54</b></a> <a href="../sketcher.htm"><b>55</b></a> <a href="../shell.htm"><b>56</b></a> <a href="../shape_processing.htm"><b>57</b></a> <a href="../sewing.htm"><b>58</b></a> <a href="../section.htm"><b>59</b></a> <a href="../scale_transform.htm"><b>60</b></a> <a href="../rotation.htm"><b>61</b></a> <a href="../revolution.htm"><b>62</b></a> <a href="../working_with_groups.htm"><b>63</b></a> <a href="../working_plane.htm"><b>64</b></a> <a href="../wire.htm"><b>65</b></a> <a href="../vector.htm"><b>66</b></a> <a href="../turus.htm"><b>67</b></a> <a href="../translation.htm"><b>68</b></a> </nobr><br><nobr>selected <a href="../changing_displaying_parameters.htm"><b>1</b></a> <a href="../add_point_on_edge.htm"><b>2</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>3</b></a> <a href="../explode.htm"><b>4</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>5</b></a> <a href="../files/salome2_sp3_displaygui_functions.htm"><b>6</b></a> <a href="../local_coordinate_system.htm"><b>7</b></a> <a href="../suppress_holes.htm"><b>8</b></a> <a href="../repairing_operations.htm"><b>9</b></a> </nobr><br><a href="../wire.htm"><b>selecting</b></a> <br><nobr>selection <a href="../files/salome2_sp3_basicgui_functions.htm"><b>1</b></a> <a href="../fillet.htm"><b>2</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>3</b></a> <a href="../plane.htm"><b>4</b></a> <a href="../sketcher.htm"><b>5</b></a> <a href="../working_plane.htm"><b>6</b></a> </nobr><br><nobr>sense <a href="../files/salome2_sp3_operationgui_functions.htm"><b>1</b></a> <a href="../partition.htm"><b>2</b></a> </nobr><br><a href="../files/salome2_sp3_booleangui_functions.htm"><b>separate</b></a> <br><nobr>serve <a href="../files/salome2_sp3_basicgui_functions.htm"><b>1</b></a> <a href="../curve.htm"><b>2</b></a> </nobr><br><nobr>serving <a href="../extrusion.htm"><b>1</b></a> <a href="../files/salome2_sp3_generationgui_functions.htm"><b>2</b></a> <a href="../pipe_creation.htm"><b>3</b></a> <a href="../revolution.htm"><b>4</b></a> </nobr><br><nobr>set <a href="../changing_displaying_parameters.htm"><b>1</b></a> <a href="../face.htm"><b>2</b></a> <a href="../close_contour.htm"><b>3</b></a> <a href="../geometrical_objects.htm"><b>4</b></a> <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>5</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>6</b></a> <a href="../offset_surface.htm"><b>7</b></a> <a href="../multi_rotation.htm"><b>8</b></a> <a href="../working_plane.htm"><b>9</b></a> </nobr><br><nobr>setcolor <a href="../changing_displaying_parameters.htm"><b>1</b></a> <a href="../changing_display_parameters.htm"><b>2</b></a> </nobr><br><nobr>setdisplaymode <a href="../changing_displaying_parameters.htm"><b>1</b></a> <a href="../changing_display_parameters.htm"><b>2</b></a> <a href="../building_by_blocks.htm"><b>3</b></a> <a href="../boolean_operations.htm"><b>4</b></a> <a href="../blocks_operations.htm"><b>5</b></a> <a href="../basic_operations.htm"><b>6</b></a> <a href="../basic_geometrical_objects.htm"><b>7</b></a> <a href="../complex_objects.htm"><b>8</b></a> <a href="../geometrical_objects.htm"><b>9</b></a> <a href="../primitives.htm"><b>10</b></a> <a href="../transformation_operations.htm"><b>11</b></a> <a href="../sketcher_tui.htm"><b>12</b></a> <a href="../repairing_operations.htm"><b>13</b></a> </nobr><br><a href="../files/salome2_sp3_basicgui_functions.htm"><b>sets</b></a> <br><nobr>setting <a href="../add_point_on_edge.htm"><b>1</b></a> <a href="../explode_on_blocks.htm"><b>2</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>3</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>4</b></a> <a href="../point.htm"><b>5</b></a> </nobr><br><nobr>settransparency <a href="../changing_displaying_parameters.htm"><b>1</b></a> <a href="../changing_display_parameters.htm"><b>2</b></a> <a href="../basic_geometrical_objects.htm"><b>3</b></a> <a href="../geometrical_objects.htm"><b>4</b></a> <a href="../sketcher_tui.htm"><b>5</b></a> </nobr><br><nobr>sew <a href="../files/salome2_sp3_repairgui_functions.htm"><b>1</b></a> <a href="../sewing.htm"><b>2</b></a> </nobr><br><nobr>sewed <a href="../files/salome2_sp3_repairgui_functions.htm"><b>1</b></a> <a href="../sewing.htm"><b>2</b></a> </nobr><br><nobr>sewing <a href="../files/salome2_sp3_repairgui_functions.htm"><b>1</b></a> <a href="../sewing.htm"><b>2</b></a> <a href="../repairing_operations.htm"><b>3</b></a> </nobr><br><nobr><a name="bms_SG"></a><a name="subkey_SG"></a>sg <a href="../blocks_operations.htm"><b>1</b></a> <a href="../groups.htm"><b>2</b></a> <a href="../files/salome2_sp3_displaygui_functions.htm"><b>3</b></a> <a href="../repairing_operations.htm"><b>4</b></a> </nobr><br><a name="bms_SH"></a><a name="subkey_SH"></a><a href="../changing_displaying_parameters.htm"><b>shading</b></a> <br><nobr>shape <a href="../check_free_faces.htm"><b>1</b></a> <a href="../check_free_boundaries.htm"><b>2</b></a> <a href="../changing_displaying_parameters.htm"><b>3</b></a> <a href="../chamfer.htm"><b>4</b></a> <a href="../basic_operations.htm"><b>5</b></a> <a href="../archimede.htm"><b>6</b></a> <a href="../add_point_on_edge.htm"><b>7</b></a> <a href="../extrusion.htm"><b>8</b></a> <a href="../explode.htm"><b>9</b></a> <a href="../cut.htm"><b>10</b></a> <a href="../close_contour.htm"><b>11</b></a> <a href="../fuse.htm"><b>12</b></a> <a href="../filling.htm"><b>13</b></a> <a href="../fillet.htm"><b>14</b></a> <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>15</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>16</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>17</b></a> <a href="../files/salome2_sp3_measuregui_functions.htm"><b>18</b></a> <a href="../files/salome2_sp3_generationgui_functions.htm"><b>19</b></a> <a href="../files/salome2_sp3_displaygui_functions.htm"><b>20</b></a> <a href="../files/salome2_sp3_buildgui_functions.htm"><b>21</b></a> <a href="../propagate.htm"><b>22</b></a> <a href="../pipe_creation.htm"><b>23</b></a> <a href="../partition.htm"><b>24</b></a> <a href="../offset_surface.htm"><b>25</b></a> <a href="../multi_translation.htm"><b>26</b></a> <a href="../multi_rotation.htm"><b>27</b></a> <a href="../modify_the_location.htm"><b>28</b></a> <a href="../mirror_image.htm"><b>29</b></a> <a href="../measurement_tools.htm"><b>30</b></a> <a href="../transformation_operations.htm"><b>31</b></a> <a href="../suppress_internal_wires.htm"><b>32</b></a> <a href="../suppress_holes.htm"><b>33</b></a> <a href="../suppress_faces.htm"><b>34</b></a> <a href="../shape_processing.htm"><b>35</b></a> <a href="../sewing.htm"><b>36</b></a> <a href="../scale_transform.htm"><b>37</b></a> <a href="../rotation.htm"><b>38</b></a> <a href="../revolution.htm"><b>39</b></a> <a href="../repairing_operations.htm"><b>40</b></a> <a href="../working_with_groups.htm"><b>41</b></a> <a href="../translation.htm"><b>42</b></a> </nobr><br><nobr>shape1 <a href="../files/salome2_sp3_measuregui_functions.htm"><b>1</b></a> <a href="../files/salome2_sp3_booleangui_functions.htm"><b>2</b></a> </nobr><br><nobr>shape2 <a href="../files/salome2_sp3_measuregui_functions.htm"><b>1</b></a> <a href="../files/salome2_sp3_booleangui_functions.htm"><b>2</b></a> </nobr><br><a href="../complex_objects.htm"><b>shapelistcompound</b></a> <br><nobr>shapes <a href="../files/introduction_to_geom.htm"><b>1</b></a> <a href="../explode.htm"><b>2</b></a> <a href="../cut.htm"><b>3</b></a> <a href="../compound.htm"><b>4</b></a> <a href="../common.htm"><b>5</b></a> <a href="../groups.htm"><b>6</b></a> <a href="../fuse.htm"><b>7</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>8</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>9</b></a> <a href="../files/salome2_sp3_measuregui_functions.htm"><b>10</b></a> <a href="../files/salome2_sp3_displaygui_functions.htm"><b>11</b></a> <a href="../files/salome2_sp3_buildgui_functions.htm"><b>12</b></a> <a href="../partition.htm"><b>13</b></a> <a href="../suppress_holes.htm"><b>14</b></a> <a href="../shape_processing.htm"><b>15</b></a> <a href="../sewing.htm"><b>16</b></a> <a href="../section.htm"><b>17</b></a> <a href="../repairing_operations.htm"><b>18</b></a> <a href="../working_with_groups.htm"><b>19</b></a> </nobr><br><a href="../explode.htm"><b>shapes_of_given_type</b></a> <br><nobr>shapesto <a href="../glue_faces.htm"><b>1</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>2</b></a> </nobr><br><nobr>shapetype <a href="../groups.htm"><b>1</b></a> <a href="../geometrical_objects.htm"><b>2</b></a> <a href="../fillet.htm"><b>3</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>4</b></a> <a href="../transformation_operations.htm"><b>5</b></a> <a href="../repairing_operations.htm"><b>6</b></a> <a href="../working_with_groups.htm"><b>7</b></a> </nobr><br><a href="../transformation_operations.htm"><b>shapetypeedge</b></a> <br><a href="../transformation_operations.htm"><b>shapetypeface</b></a> <br><nobr>shared <a href="../check_free_faces.htm"><b>1</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>2</b></a> </nobr><br><nobr>shell <a href="../extrusion.htm"><b>1</b></a> <a href="../geometrical_objects.htm"><b>2</b></a> <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>3</b></a> <a href="../files/salome2_sp3_generationgui_functions.htm"><b>4</b></a> <a href="../files/salome2_sp3_buildgui_functions.htm"><b>5</b></a> <a href="../pipe_creation.htm"><b>6</b></a> <a href="../offset_surface.htm"><b>7</b></a> <a href="../newentity_blocks.htm"><b>8</b></a> <a href="../solid.htm"><b>9</b></a> <a href="../shell.htm"><b>10</b></a> <a href="../revolution.htm"><b>11</b></a> </nobr><br><nobr>shells <a href="../check_free_faces.htm"><b>1</b></a> <a href="../compound.htm"><b>2</b></a> <a href="../geometrical_objects.htm"><b>3</b></a> <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>4</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>5</b></a> <a href="../files/salome2_sp3_buildgui_functions.htm"><b>6</b></a> <a href="../offset_surface.htm"><b>7</b></a> <a href="../solid.htm"><b>8</b></a> <a href="../shell.htm"><b>9</b></a> </nobr><br><nobr>shift <a href="../point.htm"><b>1</b></a> <a href="../wire.htm"><b>2</b></a> </nobr><br><a href="../changing_displaying_parameters.htm"><b>short</b></a> <br><a href="../face.htm"><b>shortcut</b></a> <br><nobr>should <a href="../extrusion.htm"><b>1</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>2</b></a> <a href="../files/salome2_sp3_measuregui_functions.htm"><b>3</b></a> <a href="../line.htm"><b>4</b></a> <a href="../suppress_holes.htm"><b>5</b></a> <a href="../suppress_faces.htm"><b>6</b></a> </nobr><br><a href="../files/salome2_sp3_measuregui_functions.htm"><b>show</b></a> <br><nobr>shown <a href="../files/salome2_sp3_basicgui_functions.htm"><b>1</b></a> <a href="../local_coordinate_system.htm"><b>2</b></a> </nobr><br><nobr><a name="bms_SI"></a><a name="subkey_SI"></a>side <a href="../files/salome2_sp3_basicgui_functions.htm"><b>1</b></a> <a href="../plane.htm"><b>2</b></a> </nobr><br><nobr>signed <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>1</b></a> <a href="../offset_surface.htm"><b>2</b></a> </nobr><br><a href="../plane.htm"><b>similar</b></a> <br><nobr>simple <a href="../multi_translation.htm"><b>1</b></a> <a href="../multi_transformation.htm"><b>2</b></a> <a href="../multi_rotation.htm"><b>3</b></a> </nobr><br><a href="../face.htm"><b>single</b></a> <br><nobr>six <a href="../building_by_blocks.htm"><b>1</b></a> <a href="../newentity_blocks.htm"><b>2</b></a> </nobr><br><nobr>size <a href="../chamfer.htm"><b>1</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>2</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>3</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>4</b></a> <a href="../plane.htm"><b>5</b></a> <a href="../shape_processing.htm"><b>6</b></a> </nobr><br><a name="bms_SK"></a><a name="subkey_SK"></a><a href="../sketcher.htm"><b>sketch</b></a> <br><nobr>sketcher <a href="../geometrical_objects.htm"><b>1</b></a> <a href="../sketcher_tui.htm"><b>2</b></a> <a href="../sketcher.htm"><b>3</b></a> </nobr><br><nobr>sketcher1 <a href="../geometrical_objects.htm"><b>1</b></a> <a href="../sketcher_tui.htm"><b>2</b></a> </nobr><br><nobr>sketcher2 <a href="../geometrical_objects.htm"><b>1</b></a> <a href="../sketcher_tui.htm"><b>2</b></a> </nobr><br><a href="../geometrical_objects.htm"><b>sketcher3</b></a> <br><a href="../geometrical_objects.htm"><b>sketchers</b></a> <br><nobr><a name="bms_SM"></a><a name="subkey_SM"></a>small <a href="../files/salome2_sp3_basicgui_functions.htm"><b>1</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>2</b></a> <a href="../local_coordinate_system.htm"><b>3</b></a> <a href="../shape_processing.htm"><b>4</b></a> </nobr><br><a name="bms_SO"></a><a name="subkey_SO"></a><a href="../face.htm"><b>so</b></a> <br><nobr>solid <a href="../building_by_blocks.htm"><b>1</b></a> <a href="../box.htm"><b>2</b></a> <a href="../extrusion.htm"><b>3</b></a> <a href="../cylinder.htm"><b>4</b></a> <a href="../cone.htm"><b>5</b></a> <a href="../geometrical_objects.htm"><b>6</b></a> <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>7</b></a> <a href="../files/salome2_sp3_primitivegui_functions.htm"><b>8</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>9</b></a> <a href="../files/salome2_sp3_generationgui_functions.htm"><b>10</b></a> <a href="../files/salome2_sp3_buildgui_functions.htm"><b>11</b></a> <a href="../pipe_creation.htm"><b>12</b></a> <a href="../offset_surface.htm"><b>13</b></a> <a href="../newentity_blocks.htm"><b>14</b></a> <a href="../multi_transformation.htm"><b>15</b></a> <a href="../sphere.htm"><b>16</b></a> <a href="../solid.htm"><b>17</b></a> <a href="../revolution.htm"><b>18</b></a> <a href="../turus.htm"><b>19</b></a> </nobr><br><a href="../building_by_blocks.htm"><b>solid1</b></a> <br><a href="../building_by_blocks.htm"><b>solid2</b></a> <br><nobr>solids <a href="../building_by_blocks.htm"><b>1</b></a> <a href="../explode.htm"><b>2</b></a> <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>3</b></a> <a href="../offset_surface.htm"><b>4</b></a> </nobr><br><nobr>soon <a href="../files/salome2_sp3_basicgui_functions.htm"><b>1</b></a> <a href="../local_coordinate_system.htm"><b>2</b></a> </nobr><br><a href="../explode.htm"><b>sorted</b></a> <br><a href="../explode.htm"><b>sorts</b></a> <br><a href="../revolution.htm"><b>source</b></a> <br><nobr><a name="bms_SP"></a><a name="subkey_SP"></a>space <a href="../circle.htm"><b>1</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>2</b></a> <a href="../curve.htm"><b>3</b></a> <a href="../files/salome2_sp3_measuregui_functions.htm"><b>4</b></a> <a href="../point.htm"><b>5</b></a> <a href="../plane.htm"><b>6</b></a> <a href="../vector.htm"><b>7</b></a> </nobr><br><a href="../newentity_blocks.htm"><b>specific</b></a> <br><nobr>specified <a href="../chamfer.htm"><b>1</b></a> <a href="../building_by_blocks.htm"><b>2</b></a> <a href="../box.htm"><b>3</b></a> <a href="../add_point_on_edge.htm"><b>4</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>5</b></a> <a href="../close_contour.htm"><b>6</b></a> <a href="../fillet.htm"><b>7</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>8</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>9</b></a> <a href="../multi_transformation.htm"><b>10</b></a> <a href="../local_coordinate_system.htm"><b>11</b></a> <a href="../transformation_operations.htm"><b>12</b></a> <a href="../suppress_internal_wires.htm"><b>13</b></a> <a href="../shape_processing.htm"><b>14</b></a> <a href="../repairing_operations.htm"><b>15</b></a> </nobr><br><nobr>specifies <a href="../files/salome2_sp3_basicgui_functions.htm"><b>1</b></a> <a href="../local_coordinate_system.htm"><b>2</b></a> </nobr><br><nobr>specify <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>1</b></a> <a href="../rotation.htm"><b>2</b></a> </nobr><br><nobr>specifying <a href="../add_point_on_edge.htm"><b>1</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>2</b></a> </nobr><br><nobr>sphere <a href="../changing_display_parameters.htm"><b>1</b></a> <a href="../boolean_operations.htm"><b>2</b></a> <a href="../blocks_operations.htm"><b>3</b></a> <a href="../files/salome2_sp3_primitivegui_functions.htm"><b>4</b></a> <a href="../primitives.htm"><b>5</b></a> <a href="../transformation_operations.htm"><b>6</b></a> <a href="../sphere.htm"><b>7</b></a> </nobr><br><a href="../primitives.htm"><b>sphere1</b></a> <br><a href="../primitives.htm"><b>sphere2</b></a> <br><a href="../primitives.htm"><b>sphere3</b></a> <br><a href="../primitives.htm"><b>spheres</b></a> <br><nobr>spline <a href="../files/salome2_sp3_basicgui_functions.htm"><b>1</b></a> <a href="../curve.htm"><b>2</b></a> </nobr><br><nobr>splitangle <a href="../files/salome2_sp3_repairgui_functions.htm"><b>1</b></a> <a href="../shape_processing.htm"><b>2</b></a> </nobr><br><nobr>splitclosedfaces <a href="../files/salome2_sp3_repairgui_functions.htm"><b>1</b></a> <a href="../shape_processing.htm"><b>2</b></a> </nobr><br><nobr>splitcontinuity <a href="../files/salome2_sp3_repairgui_functions.htm"><b>1</b></a> <a href="../shape_processing.htm"><b>2</b></a> </nobr><br><nobr>splits <a href="../add_point_on_edge.htm"><b>1</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>2</b></a> </nobr><br><nobr>splitting <a href="../files/salome2_sp3_repairgui_functions.htm"><b>1</b></a> <a href="../shape_processing.htm"><b>2</b></a> </nobr><br><nobr>spot <a href="../files/salome2_sp3_repairgui_functions.htm"><b>1</b></a> <a href="../shape_processing.htm"><b>2</b></a> </nobr><br><br><br></p><p class="ftsbody" align="center"><a href="whlstf12.htm" target="_self" title="previous search group"><b>>></b></a>\r
+<nobr><a name="bms_PY"></a><a name="subkey_PY"></a>py <a href="../basic_geometrical_objects.htm"><b>1</b></a> <a href="../complex_objects.htm"><b>2</b></a> <a href="../geometrical_objects.htm"><b>3</b></a> <a href="../repairing_operations.htm"><b>4</b></a> <a href="../transformation_operations.htm"><b>5</b></a> </nobr><br><a href="../repairing_operations.htm"><b>py1</b></a> <br><a href="../files/salome2_sp3_measuregui_functions.htm"><b>python</b></a> <br><nobr><a name="bms_PZ"></a><a name="subkey_PZ"></a>pz <a href="../basic_operations.htm"><b>1</b></a> <a href="../basic_geometrical_objects.htm"><b>2</b></a> <a href="../complex_objects.htm"><b>3</b></a> <a href="../geometrical_objects.htm"><b>4</b></a> <a href="../repairing_operations.htm"><b>5</b></a> <a href="../transformation_operations.htm"><b>6</b></a> </nobr><br>\r
+<br><br>\r
+<a name="bm_Q"></a><a name="subkey_QF"></a><a href="../building_by_blocks.htm"><b>qface1</b></a> <br><a href="../building_by_blocks.htm"><b>qface2</b></a> <br><a href="../building_by_blocks.htm"><b>qface3</b></a> <br><a href="../building_by_blocks.htm"><b>qface4</b></a> <br><a href="../building_by_blocks.htm"><b>qface5</b></a> <br><a href="../building_by_blocks.htm"><b>qface6</b></a> <br><a href="../building_by_blocks.htm"><b>qface7</b></a> <br><a href="../building_by_blocks.htm"><b>qface8</b></a> <br><nobr><a name="bms_QU"></a><a name="subkey_QU"></a>quadrangle <a href="../building_by_blocks.htm"><b>1</b></a> <a href="../files/salome2_sp3_measuregui_functions.htm"><b>2</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>3</b></a> <a href="../plane.htm"><b>4</b></a> <a href="../newentity_blocks.htm"><b>5</b></a> </nobr><br>\r
+<br><br>\r
+<nobr><a name="bm_R"></a><a name="subkey_R{"></a>r <a href="../geometrical_objects.htm"><b>1</b></a> <a href="../fillet.htm"><b>2</b></a> <a href="../sketcher_tui.htm"><b>3</b></a> </nobr><br><nobr><a name="bms_RA"></a><a name="subkey_RA"></a>radians <a href="../files/salome2_sp3_repairgui_functions.htm"><b>1</b></a> <a href="../shape_processing.htm"><b>2</b></a> </nobr><br><a href="../working_with_groups.htm"><b>radio</b></a> <br><nobr>radius <a href="../circle.htm"><b>1</b></a> <a href="../chamfer.htm"><b>2</b></a> <a href="../basic_geometrical_objects.htm"><b>3</b></a> <a href="../ellipse.htm"><b>4</b></a> <a href="../cylinder.htm"><b>5</b></a> <a href="../cone.htm"><b>6</b></a> <a href="../fillet.htm"><b>7</b></a> <a href="../files/salome2_sp3_primitivegui_functions.htm"><b>8</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>9</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>10</b></a> <a href="../sphere.htm"><b>11</b></a> <a href="../sketcher.htm"><b>12</b></a> <a href="../turus.htm"><b>13</b></a> <a href="../transformation_operations.htm"><b>14</b></a> </nobr><br><nobr>radius1 <a href="../boolean_operations.htm"><b>1</b></a> <a href="../cone.htm"><b>2</b></a> <a href="../files/salome2_sp3_primitivegui_functions.htm"><b>3</b></a> <a href="../repairing_operations.htm"><b>4</b></a> <a href="../primitives.htm"><b>5</b></a> <a href="../transformation_operations.htm"><b>6</b></a> </nobr><br><nobr>radius2 <a href="../cone.htm"><b>1</b></a> <a href="../files/salome2_sp3_primitivegui_functions.htm"><b>2</b></a> <a href="../primitives.htm"><b>3</b></a> </nobr><br><a href="../primitives.htm"><b>radius3</b></a> <br><nobr>radiuses <a href="../basic_geometrical_objects.htm"><b>1</b></a> <a href="../ellipse.htm"><b>2</b></a> <a href="../cone.htm"><b>3</b></a> <a href="../files/salome2_sp3_primitivegui_functions.htm"><b>4</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>5</b></a> <a href="../turus.htm"><b>6</b></a> </nobr><br><nobr>radiusmajor <a href="../ellipse.htm"><b>1</b></a> <a href="../files/salome2_sp3_primitivegui_functions.htm"><b>2</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>3</b></a> <a href="../turus.htm"><b>4</b></a> </nobr><br><nobr>radiusminor <a href="../ellipse.htm"><b>1</b></a> <a href="../files/salome2_sp3_primitivegui_functions.htm"><b>2</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>3</b></a> <a href="../turus.htm"><b>4</b></a> </nobr><br><nobr>raise <a href="../measurement_tools.htm"><b>1</b></a> <a href="../groups.htm"><b>2</b></a> <a href="../repairing_operations.htm"><b>3</b></a> </nobr><br><nobr>range <a href="../add_point_on_edge.htm"><b>1</b></a> <a href="../files/introduction_to_geom.htm"><b>2</b></a> <a href="../explode.htm"><b>3</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>4</b></a> <a href="../files/salome2_sp3_geomtoolsgui_functions.htm"><b>5</b></a> <a href="../transparency.htm"><b>6</b></a> </nobr><br><nobr><a name="bms_RE"></a><a name="subkey_RE"></a>re <a href="../files/salome2_sp3_repairgui_functions.htm"><b>1</b></a> <a href="../shape_processing.htm"><b>2</b></a> </nobr><br><a href="../files/salome2_sp3_displaygui_functions.htm"><b>reasonable</b></a> <br><nobr>reconstruction <a href="../files/salome2_sp3_operationgui_functions.htm"><b>1</b></a> <a href="../partition.htm"><b>2</b></a> </nobr><br><nobr>reference <a href="../files/salome2_sp3_basicgui_functions.htm"><b>1</b></a> <a href="../point.htm"><b>2</b></a> <a href="../local_coordinate_system.htm"><b>3</b></a> </nobr><br><nobr>regarding <a href="../files/salome2_sp3_basicgui_functions.htm"><b>1</b></a> <a href="../point.htm"><b>2</b></a> </nobr><br><a href="../sketcher.htm"><b>relative</b></a> <br><a href="../transformation_operations.htm"><b>relatively</b></a> <br><nobr>relevant <a href="../changing_displaying_parameters.htm"><b>1</b></a> <a href="../wireframe_and_shading.htm"><b>2</b></a> </nobr><br><a href="../wireframe_and_shading.htm"><b>remain</b></a> <br><nobr>remove <a href="../files/salome2_sp3_repairgui_functions.htm"><b>1</b></a> <a href="../groups.htm"><b>2</b></a> <a href="../suppress_holes.htm"><b>3</b></a> <a href="../repairing_operations.htm"><b>4</b></a> <a href="../working_with_groups.htm"><b>5</b></a> <a href="../suppress_internal_wires.htm"><b>6</b></a> </nobr><br><nobr>removed <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>1</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>2</b></a> <a href="../modify_the_location.htm"><b>3</b></a> <a href="../mirror_image.htm"><b>4</b></a> <a href="../suppress_holes.htm"><b>5</b></a> <a href="../suppress_faces.htm"><b>6</b></a> <a href="../shape_processing.htm"><b>7</b></a> <a href="../rotation.htm"><b>8</b></a> <a href="../working_with_groups.htm"><b>9</b></a> <a href="../translation.htm"><b>10</b></a> <a href="../suppress_internal_wires.htm"><b>11</b></a> </nobr><br><nobr>removeobject <a href="../groups.htm"><b>1</b></a> <a href="../working_with_groups.htm"><b>2</b></a> </nobr><br><nobr>removes <a href="../files/salome2_sp3_repairgui_functions.htm"><b>1</b></a> <a href="../suppress_holes.htm"><b>2</b></a> <a href="../suppress_internal_wires.htm"><b>3</b></a> </nobr><br><nobr>removewebs <a href="../files/salome2_sp3_operationgui_functions.htm"><b>1</b></a> <a href="../partition.htm"><b>2</b></a> </nobr><br><nobr>removing <a href="../files/salome2_sp3_repairgui_functions.htm"><b>1</b></a> <a href="../groups.htm"><b>2</b></a> <a href="../shape_processing.htm"><b>3</b></a> </nobr><br><nobr>repair <a href="../check_free_faces.htm"><b>1</b></a> <a href="../check_free_boundaries.htm"><b>2</b></a> <a href="../add_point_on_edge.htm"><b>3</b></a> <a href="../close_contour.htm"><b>4</b></a> <a href="../glue_faces.htm"><b>5</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>6</b></a> <a href="../suppress_holes.htm"><b>7</b></a> <a href="../suppress_faces.htm"><b>8</b></a> <a href="../shape_processing.htm"><b>9</b></a> <a href="../sewing.htm"><b>10</b></a> <a href="../suppress_internal_wires.htm"><b>11</b></a> </nobr><br><nobr>repairing <a href="../check_free_faces.htm"><b>1</b></a> <a href="../check_free_boundaries.htm"><b>2</b></a> <a href="../add_point_on_edge.htm"><b>3</b></a> <a href="../files/introduction_to_geom.htm"><b>4</b></a> <a href="../close_contour.htm"><b>5</b></a> <a href="../glue_faces.htm"><b>6</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>7</b></a> <a href="../suppress_holes.htm"><b>8</b></a> <a href="../suppress_faces.htm"><b>9</b></a> <a href="../shape_processing.htm"><b>10</b></a> <a href="../sewing.htm"><b>11</b></a> <a href="../repairing_operations.htm"><b>12</b></a> <a href="../suppress_internal_wires.htm"><b>13</b></a> </nobr><br><nobr>repetition <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>1</b></a> <a href="../multi_translation.htm"><b>2</b></a> <a href="../multi_rotation.htm"><b>3</b></a> </nobr><br><nobr>repetitions <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>1</b></a> <a href="../multi_translation.htm"><b>2</b></a> </nobr><br><nobr>representing <a href="../files/salome2_sp3_basicgui_functions.htm"><b>1</b></a> <a href="../plane.htm"><b>2</b></a> </nobr><br><a href="../files/salome2_sp3_buildgui_functions.htm"><b>requested</b></a> <br><nobr>required <a href="../files/salome2_sp3_repairgui_functions.htm"><b>1</b></a> <a href="../files/salome2_sp3_geomtoolsgui_functions.htm"><b>2</b></a> <a href="../files/salome2_sp3_displaygui_functions.htm"><b>3</b></a> <a href="../shape_processing.htm"><b>4</b></a> </nobr><br><nobr>requireddegree <a href="../files/salome2_sp3_repairgui_functions.htm"><b>1</b></a> <a href="../shape_processing.htm"><b>2</b></a> </nobr><br><nobr>requirednbsegments <a href="../files/salome2_sp3_repairgui_functions.htm"><b>1</b></a> <a href="../shape_processing.htm"><b>2</b></a> </nobr><br><a href="../repairing_operations.htm"><b>res</b></a> <br><nobr>respect <a href="../glue_faces.htm"><b>1</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>2</b></a> <a href="../sketcher.htm"><b>3</b></a> </nobr><br><nobr>restriction <a href="../files/salome2_sp3_repairgui_functions.htm"><b>1</b></a> <a href="../shape_processing.htm"><b>2</b></a> </nobr><br><nobr>result <a href="../circle.htm"><b>1</b></a> <a href="../check_free_faces.htm"><b>2</b></a> <a href="../check_free_boundaries.htm"><b>3</b></a> <a href="../chamfer.htm"><b>4</b></a> <a href="../box.htm"><b>5</b></a> <a href="../blocks_operations.htm"><b>6</b></a> <a href="../basic_operations.htm"><b>7</b></a> <a href="../archimede.htm"><b>8</b></a> <a href="../arc.htm"><b>9</b></a> <a href="../add_point_on_edge.htm"><b>10</b></a> <a href="../face.htm"><b>11</b></a> <a href="../extrusion.htm"><b>12</b></a> <a href="../explode_on_blocks.htm"><b>13</b></a> <a href="../explode.htm"><b>14</b></a> <a href="../ellipse.htm"><b>15</b></a> <a href="../edge.htm"><b>16</b></a> <a href="../cylinder.htm"><b>17</b></a> <a href="../cut.htm"><b>18</b></a> <a href="../curve.htm"><b>19</b></a> <a href="../cone.htm"><b>20</b></a> <a href="../compound.htm"><b>21</b></a> <a href="../common.htm"><b>22</b></a> <a href="../close_contour.htm"><b>23</b></a> <a href="../glue_faces.htm"><b>24</b></a> <a href="../fuse.htm"><b>25</b></a> <a href="../filling.htm"><b>26</b></a> <a href="../fillet.htm"><b>27</b></a> <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>28</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>29</b></a> <a href="../files/salome2_sp3_primitivegui_functions.htm"><b>30</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>31</b></a> <a href="../files/salome2_sp3_measuregui_functions.htm"><b>32</b></a> <a href="../files/salome2_sp3_generationgui_functions.htm"><b>33</b></a> <a href="../files/salome2_sp3_buildgui_functions.htm"><b>34</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>35</b></a> <a href="../point.htm"><b>36</b></a> <a href="../plane.htm"><b>37</b></a> <a href="../pipe_creation.htm"><b>38</b></a> <a href="../partition.htm"><b>39</b></a> <a href="../offset_surface.htm"><b>40</b></a> <a href="../newentity_blocks.htm"><b>41</b></a> <a href="../multi_translation.htm"><b>42</b></a> <a href="../multi_transformation.htm"><b>43</b></a> <a href="../multi_rotation.htm"><b>44</b></a> <a href="../modify_the_location.htm"><b>45</b></a> <a href="../mirror_image.htm"><b>46</b></a> <a href="../line.htm"><b>47</b></a> <a href="../suppress_holes.htm"><b>48</b></a> <a href="../suppress_faces.htm"><b>49</b></a> <a href="../sphere.htm"><b>50</b></a> <a href="../solid.htm"><b>51</b></a> <a href="../sketcher.htm"><b>52</b></a> <a href="../shell.htm"><b>53</b></a> <a href="../shape_processing.htm"><b>54</b></a> <a href="../sewing.htm"><b>55</b></a> <a href="../section.htm"><b>56</b></a> <a href="../scale_transform.htm"><b>57</b></a> <a href="../rotation.htm"><b>58</b></a> <a href="../revolution.htm"><b>59</b></a> <a href="../repairing_operations.htm"><b>60</b></a> <a href="../propagate.htm"><b>61</b></a> <a href="../working_with_groups.htm"><b>62</b></a> <a href="../wire.htm"><b>63</b></a> <a href="../vector.htm"><b>64</b></a> <a href="../turus.htm"><b>65</b></a> <a href="../translation.htm"><b>66</b></a> <a href="../transformation_operations.htm"><b>67</b></a> <a href="../suppress_internal_wires.htm"><b>68</b></a> </nobr><br><nobr>resultant <a href="../files/salome2_sp3_repairgui_functions.htm"><b>1</b></a> <a href="../shape_processing.htm"><b>2</b></a> </nobr><br><nobr>resulting <a href="../face.htm"><b>1</b></a> <a href="../explode_on_blocks.htm"><b>2</b></a> <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>3</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>4</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>5</b></a> <a href="../sketcher.htm"><b>6</b></a> <a href="../suppress_internal_wires.htm"><b>7</b></a> </nobr><br><nobr>results <a href="../boolean_operations.htm"><b>1</b></a> <a href="../blocks_operations.htm"><b>2</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>3</b></a> <a href="../partition.htm"><b>4</b></a> <a href="../repairing_operations.htm"><b>5</b></a> <a href="../transformation_operations.htm"><b>6</b></a> </nobr><br><a href="../files/salome2_sp3_buildgui_functions.htm"><b>retrieved</b></a> <br><nobr>retrieves <a href="../check_free_faces.htm"><b>1</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>2</b></a> </nobr><br><a href="../files/salome2_sp3_measuregui_functions.htm"><b>return</b></a> <br><nobr>returned <a href="../files/salome2_sp3_measuregui_functions.htm"><b>1</b></a> <a href="../measurement_tools.htm"><b>2</b></a> <a href="../working_with_groups.htm"><b>3</b></a> </nobr><br><a href="../explode.htm"><b>returning</b></a> <br><nobr>returns <a href="../check_free_faces.htm"><b>1</b></a> <a href="../explode_on_blocks.htm"><b>2</b></a> <a href="../explode.htm"><b>3</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>4</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>5</b></a> <a href="../files/salome2_sp3_measuregui_functions.htm"><b>6</b></a> <a href="../files/salome2_sp3_buildgui_functions.htm"><b>7</b></a> <a href="../working_with_groups.htm"><b>8</b></a> </nobr><br><nobr>reverse <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>1</b></a> <a href="../multi_rotation.htm"><b>2</b></a> <a href="../rotation.htm"><b>3</b></a> </nobr><br><nobr>revolution <a href="../complex_objects.htm"><b>1</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>2</b></a> <a href="../files/salome2_sp3_generationgui_functions.htm"><b>3</b></a> <a href="../shape_processing.htm"><b>4</b></a> <a href="../revolution.htm"><b>5</b></a> </nobr><br><nobr><a name="bms_RI"></a><a name="subkey_RI"></a>right <a href="../changing_displaying_parameters.htm"><b>1</b></a> <a href="../color.htm"><b>2</b></a> <a href="../files/salome2_sp3_displaygui_functions.htm"><b>3</b></a> <a href="../modify_the_location.htm"><b>4</b></a> <a href="../wireframe_and_shading.htm"><b>5</b></a> </nobr><br><a name="bms_RO"></a><a name="subkey_RO"></a><a href="../transformation_operations.htm"><b>rot1d</b></a> <br><a href="../transformation_operations.htm"><b>rot2d</b></a> <br><nobr>rotate <a href="../files/salome2_sp3_generationgui_functions.htm"><b>1</b></a> <a href="../revolution.htm"><b>2</b></a> <a href="../transformation_operations.htm"><b>3</b></a> </nobr><br><nobr>rotated <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>1</b></a> <a href="../files/salome2_sp3_generationgui_functions.htm"><b>2</b></a> <a href="../multi_rotation.htm"><b>3</b></a> <a href="../rotation.htm"><b>4</b></a> <a href="../revolution.htm"><b>5</b></a> </nobr><br><nobr>rotates <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>1</b></a> <a href="../multi_rotation.htm"><b>2</b></a> <a href="../rotation.htm"><b>3</b></a> </nobr><br><nobr>rotation <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>1</b></a> <a href="../multi_rotation.htm"><b>2</b></a> <a href="../rotation.htm"><b>3</b></a> <a href="../repairing_operations.htm"><b>4</b></a> <a href="../transformation_operations.htm"><b>5</b></a> </nobr><br><nobr><a name="bms_RU"></a><a name="subkey_RU"></a>runtimeerror <a href="../measurement_tools.htm"><b>1</b></a> <a href="../repairing_operations.htm"><b>2</b></a> </nobr><br>\r
+<br><br>\r
+<nobr><a name="bm_S"></a><a name="subkey_S{"></a>s <a href="../circle.htm"><b>1</b></a> <a href="../check_free_boundaries.htm"><b>2</b></a> <a href="../complex_objects.htm"><b>3</b></a> <a href="../close_contour.htm"><b>4</b></a> <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>5</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>6</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>7</b></a> <a href="../files/salome2_sp3_buildgui_functions.htm"><b>8</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>9</b></a> <a href="../multi_transformation.htm"><b>10</b></a> <a href="../suppress_holes.htm"><b>11</b></a> <a href="../suppress_faces.htm"><b>12</b></a> <a href="../scale_transform.htm"><b>13</b></a> <a href="../repairing_operations.htm"><b>14</b></a> <a href="../working_with_groups.htm"><b>15</b></a> <a href="../suppress_internal_wires.htm"><b>16</b></a> </nobr><br><nobr>s1 <a href="../common.htm"><b>1</b></a> <a href="../fuse.htm"><b>2</b></a> <a href="../section.htm"><b>3</b></a> </nobr><br><nobr>s2 <a href="../common.htm"><b>1</b></a> <a href="../fuse.htm"><b>2</b></a> <a href="../section.htm"><b>3</b></a> </nobr><br><nobr><a name="bms_SA"></a><a name="subkey_SA"></a>salome <a href="../changing_display_parameters.htm"><b>1</b></a> <a href="../building_by_blocks.htm"><b>2</b></a> <a href="../boolean_operations.htm"><b>3</b></a> <a href="../blocks_operations.htm"><b>4</b></a> <a href="../basic_operations.htm"><b>5</b></a> <a href="../basic_geometrical_objects.htm"><b>6</b></a> <a href="../files/introduction_to_geom.htm"><b>7</b></a> <a href="../complex_objects.htm"><b>8</b></a> <a href="../geometrical_objects.htm"><b>9</b></a> <a href="../measurement_tools.htm"><b>10</b></a> <a href="../groups.htm"><b>11</b></a> <a href="../sketcher_tui.htm"><b>12</b></a> <a href="../repairing_operations.htm"><b>13</b></a> <a href="../primitives.htm"><b>14</b></a> <a href="../working_with_groups.htm"><b>15</b></a> <a href="../transformation_operations.htm"><b>16</b></a> </nobr><br><nobr>same <a href="../files/salome2_sp3_repairgui_functions.htm"><b>1</b></a> <a href="../multi_rotation.htm"><b>2</b></a> <a href="../sketcher.htm"><b>3</b></a> <a href="../shape_processing.htm"><b>4</b></a> <a href="../working_with_groups.htm"><b>5</b></a> <a href="../transformation_operations.htm"><b>6</b></a> </nobr><br><nobr>sameparameter <a href="../files/salome2_sp3_repairgui_functions.htm"><b>1</b></a> <a href="../shape_processing.htm"><b>2</b></a> </nobr><br><a href="../files/salome2_sp3_measuregui_functions.htm"><b>satisfy</b></a> <br><a href="../files/salome2_sp3_geomtoolsgui_functions.htm"><b>save</b></a> <br><nobr><a name="bms_SC"></a><a name="subkey_SC"></a>scale <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>1</b></a> <a href="../scale_transform.htm"><b>2</b></a> <a href="../transformation_operations.htm"><b>3</b></a> </nobr><br><nobr>scaled <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>1</b></a> <a href="../scale_transform.htm"><b>2</b></a> </nobr><br><nobr>scripts <a href="../circle.htm"><b>1</b></a> <a href="../check_free_faces.htm"><b>2</b></a> <a href="../check_free_boundaries.htm"><b>3</b></a> <a href="../chamfer.htm"><b>4</b></a> <a href="../box.htm"><b>5</b></a> <a href="../archimede.htm"><b>6</b></a> <a href="../arc.htm"><b>7</b></a> <a href="../add_point_on_edge.htm"><b>8</b></a> <a href="../face.htm"><b>9</b></a> <a href="../extrusion.htm"><b>10</b></a> <a href="../explode_on_blocks.htm"><b>11</b></a> <a href="../ellipse.htm"><b>12</b></a> <a href="../edge.htm"><b>13</b></a> <a href="../cylinder.htm"><b>14</b></a> <a href="../cut.htm"><b>15</b></a> <a href="../curve.htm"><b>16</b></a> <a href="../cone.htm"><b>17</b></a> <a href="../compound.htm"><b>18</b></a> <a href="../common.htm"><b>19</b></a> <a href="../color.htm"><b>20</b></a> <a href="../close_contour.htm"><b>21</b></a> <a href="../glue_faces.htm"><b>22</b></a> <a href="../fuse.htm"><b>23</b></a> <a href="../filling.htm"><b>24</b></a> <a href="../fillet.htm"><b>25</b></a> <a href="../files/salome2_sp3_measuregui_functions.htm"><b>26</b></a> <a href="../files/salome2_sp3_booleangui_functions.htm"><b>27</b></a> <a href="../point.htm"><b>28</b></a> <a href="../plane.htm"><b>29</b></a> <a href="../pipe_creation.htm"><b>30</b></a> <a href="../partition.htm"><b>31</b></a> <a href="../offset_surface.htm"><b>32</b></a> <a href="../newentity_blocks.htm"><b>33</b></a> <a href="../multi_translation.htm"><b>34</b></a> <a href="../multi_transformation.htm"><b>35</b></a> <a href="../multi_rotation.htm"><b>36</b></a> <a href="../modify_the_location.htm"><b>37</b></a> <a href="../mirror_image.htm"><b>38</b></a> <a href="../line.htm"><b>39</b></a> <a href="../suppress_holes.htm"><b>40</b></a> <a href="../suppress_faces.htm"><b>41</b></a> <a href="../sphere.htm"><b>42</b></a> <a href="../solid.htm"><b>43</b></a> <a href="../sketcher.htm"><b>44</b></a> <a href="../shell.htm"><b>45</b></a> <a href="../shape_processing.htm"><b>46</b></a> <a href="../sewing.htm"><b>47</b></a> <a href="../section.htm"><b>48</b></a> <a href="../scale_transform.htm"><b>49</b></a> <a href="../rotation.htm"><b>50</b></a> <a href="../revolution.htm"><b>51</b></a> <a href="../propagate.htm"><b>52</b></a> <a href="../working_with_groups.htm"><b>53</b></a> <a href="../wireframe_and_shading.htm"><b>54</b></a> <a href="../wire.htm"><b>55</b></a> <a href="../vector.htm"><b>56</b></a> <a href="../turus.htm"><b>57</b></a> <a href="../transparency.htm"><b>58</b></a> <a href="../translation.htm"><b>59</b></a> <a href="../suppress_internal_wires.htm"><b>60</b></a> </nobr><br><br><br></p><p class="ftsbody" align="center"><a href="whlstf12.htm" target="_self" title="previous search group"><b>>></b></a>\r
\r
</body>\r
\r
<body marginheight="0" marginwidth="0" bgproperties="fixed">\r
<p class="ftsbody" align="center"><a href="whlstf11.htm" target="_self" title="previous search group"><b><<</b></a><br><br></p>\r
<p class="ftsbody" >\r
-<a name="bms_SQ"></a><a name="subkey_SQ"></a><a href="../measurement_tools.htm"><b>sqrt</b></a> <br><a name="bms_ST"></a><a name="subkey_ST"></a><a href="../newentity_blocks.htm"><b>stage</b></a> <br><a href="../files/salome2_sp3_geomtoolsgui_functions.htm"><b>standard</b></a> <br><nobr>start <a href="../extrusion.htm"><b>1</b></a> <a href="../vector.htm"><b>2</b></a> <a href="../translation.htm"><b>3</b></a> </nobr><br><a href="../sketcher.htm"><b>started</b></a> <br><nobr>starting <a href="../arc.htm"><b>1</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>2</b></a> <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>3</b></a> <a href="../modify_the_location.htm"><b>4</b></a> <a href="../sketcher.htm"><b>5</b></a> <a href="../vector.htm"><b>6</b></a> </nobr><br><nobr>step <a href="../files/introduction_to_geom.htm"><b>1</b></a> <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>2</b></a> <a href="../files/salome2_sp3_geomtoolsgui_functions.htm"><b>3</b></a> <a href="../multi_translation.htm"><b>4</b></a> <a href="../multi_rotation.htm"><b>5</b></a> </nobr><br><nobr>step1 <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>1</b></a> <a href="../multi_translation.htm"><b>2</b></a> </nobr><br><nobr>step2 <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>1</b></a> <a href="../multi_translation.htm"><b>2</b></a> </nobr><br><a href="../sketcher.htm"><b>string</b></a> <br><nobr>strip <a href="../files/salome2_sp3_repairgui_functions.htm"><b>1</b></a> <a href="../shape_processing.htm"><b>2</b></a> </nobr><br><nobr>study <a href="../building_by_blocks.htm"><b>1</b></a> <a href="../boolean_operations.htm"><b>2</b></a> <a href="../blocks_operations.htm"><b>3</b></a> <a href="../basic_operations.htm"><b>4</b></a> <a href="../basic_geometrical_objects.htm"><b>5</b></a> <a href="../complex_objects.htm"><b>6</b></a> <a href="../geometrical_objects.htm"><b>7</b></a> <a href="../files/salome2_sp3_displaygui_functions.htm"><b>8</b></a> <a href="../primitives.htm"><b>9</b></a> <a href="../transformation_operations.htm"><b>10</b></a> <a href="../sketcher_tui.htm"><b>11</b></a> <a href="../repairing_operations.htm"><b>12</b></a> </nobr><br><nobr><a name="bms_SU"></a><a name="subkey_SU"></a>sub <a href="../explode.htm"><b>1</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>2</b></a> <a href="../files/salome2_sp3_buildgui_functions.htm"><b>3</b></a> <a href="../suppress_holes.htm"><b>4</b></a> <a href="../repairing_operations.htm"><b>5</b></a> <a href="../working_with_groups.htm"><b>6</b></a> </nobr><br><a href="../repairing_operations.htm"><b>sub_shape_id</b></a> <br><a href="../groups.htm"><b>subfacelist</b></a> <br><nobr>submenu <a href="../blocks.htm"><b>1</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>2</b></a> <a href="../files/salome2_sp3_measuregui_functions.htm"><b>3</b></a> <a href="../files/salome2_sp3_buildgui_functions.htm"><b>4</b></a> </nobr><br><nobr>subshape <a href="../explode.htm"><b>1</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>2</b></a> <a href="../files/salome2_sp3_buildgui_functions.htm"><b>3</b></a> <a href="../working_with_groups.htm"><b>4</b></a> </nobr><br><nobr>subshapeall <a href="../explode.htm"><b>1</b></a> <a href="../files/salome2_sp3_buildgui_functions.htm"><b>2</b></a> </nobr><br><a href="../explode.htm"><b>subshapeallids</b></a> <br><nobr>subshapeallsorted <a href="../explode.htm"><b>1</b></a> <a href="../groups.htm"><b>2</b></a> <a href="../geometrical_objects.htm"><b>3</b></a> <a href="../transformation_operations.htm"><b>4</b></a> <a href="../repairing_operations.htm"><b>5</b></a> </nobr><br><a href="../explode.htm"><b>subshapeallsortedids</b></a> <br><a href="../working_with_groups.htm"><b>subshapeid</b></a> <br><nobr>subshapes <a href="../explode.htm"><b>1</b></a> <a href="../files/salome2_sp3_buildgui_functions.htm"><b>2</b></a> <a href="../working_with_groups.htm"><b>3</b></a> </nobr><br><a href="../explode.htm"><b>subshapesorted</b></a> <br><a href="../measurement_tools.htm"><b>successfully</b></a> <br><a href="../repairing_operations.htm"><b>sup_faces</b></a> <br><nobr>suppress <a href="../files/salome2_sp3_repairgui_functions.htm"><b>1</b></a> <a href="../suppress_internal_wires.htm"><b>2</b></a> <a href="../suppress_holes.htm"><b>3</b></a> <a href="../suppress_faces.htm"><b>4</b></a> <a href="../repairing_operations.htm"><b>5</b></a> </nobr><br><nobr>suppresses <a href="../files/salome2_sp3_repairgui_functions.htm"><b>1</b></a> <a href="../suppress_faces.htm"><b>2</b></a> </nobr><br><nobr>suppressfaces <a href="../files/salome2_sp3_repairgui_functions.htm"><b>1</b></a> <a href="../suppress_faces.htm"><b>2</b></a> <a href="../repairing_operations.htm"><b>3</b></a> </nobr><br><nobr>suppressholes <a href="../files/salome2_sp3_repairgui_functions.htm"><b>1</b></a> <a href="../suppress_holes.htm"><b>2</b></a> <a href="../repairing_operations.htm"><b>3</b></a> </nobr><br><nobr>suppressinternalwires <a href="../files/salome2_sp3_repairgui_functions.htm"><b>1</b></a> <a href="../suppress_internal_wires.htm"><b>2</b></a> <a href="../repairing_operations.htm"><b>3</b></a> </nobr><br><nobr>surface <a href="../face.htm"><b>1</b></a> <a href="../filling.htm"><b>2</b></a> <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>3</b></a> <a href="../files/salome2_sp3_measuregui_functions.htm"><b>4</b></a> <a href="../offset_surface.htm"><b>5</b></a> <a href="../measurement_tools.htm"><b>6</b></a> <a href="../transformation_operations.htm"><b>7</b></a> </nobr><br><nobr>surfacecontinuity <a href="../files/salome2_sp3_repairgui_functions.htm"><b>1</b></a> <a href="../shape_processing.htm"><b>2</b></a> </nobr><br><nobr>surfacemode <a href="../files/salome2_sp3_repairgui_functions.htm"><b>1</b></a> <a href="../shape_processing.htm"><b>2</b></a> </nobr><br><nobr>surfaces <a href="../files/salome2_sp3_repairgui_functions.htm"><b>1</b></a> <a href="../shape_processing.htm"><b>2</b></a> </nobr><br><a name="bms_SY"></a><a name="subkey_SY"></a><a href="../transformation_operations.htm"><b>symmetric</b></a> <br><nobr>symmetrical <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>1</b></a> <a href="../mirror_image.htm"><b>2</b></a> <a href="../transformation_operations.htm"><b>3</b></a> </nobr><br><nobr>symmetry <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>1</b></a> <a href="../files/salome2_sp3_primitivegui_functions.htm"><b>2</b></a> <a href="../mirror_image.htm"><b>3</b></a> </nobr><br><nobr>system <a href="../files/salome2_sp3_basicgui_functions.htm"><b>1</b></a> <a href="../cylinder.htm"><b>2</b></a> <a href="../cone.htm"><b>3</b></a> <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>4</b></a> <a href="../modify_the_location.htm"><b>5</b></a> <a href="../local_coordinate_system.htm"><b>6</b></a> <a href="../transformation_operations.htm"><b>7</b></a> <a href="../sphere.htm"><b>8</b></a> <a href="../working_plane.htm"><b>9</b></a> </nobr><br><a href="../transformation_operations.htm"><b>systems</b></a> <br>\r
-<br><br>\r
-<nobr><a name="bm_T"></a><a name="subkey_T{"></a>t <a href="../box.htm"><b>1</b></a> <a href="../extrusion.htm"><b>2</b></a> <a href="../sphere.htm"><b>3</b></a> </nobr><br><a name="bms_TA"></a><a name="subkey_TA"></a><a href="../sketcher.htm"><b>tangent</b></a> <br><nobr>target <a href="../explode_on_blocks.htm"><b>1</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>2</b></a> <a href="../sketcher.htm"><b>3</b></a> </nobr><br><a name="bms_TE"></a><a name="subkey_TE"></a><a href="../newentity_blocks.htm"><b>tetrahedral</b></a> <br><nobr>textual <a href="../sketcher_tui.htm"><b>1</b></a> <a href="../sketcher.htm"><b>2</b></a> </nobr><br><nobr><a name="bms_TH"></a><a name="subkey_TH"></a>theendlcs <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>1</b></a> <a href="../modify_the_location.htm"><b>2</b></a> </nobr><br><nobr>them <a href="../box.htm"><b>1</b></a> <a href="../explode.htm"><b>2</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>3</b></a> <a href="../suppress_faces.htm"><b>4</b></a> <a href="../shape_processing.htm"><b>5</b></a> <a href="../wire.htm"><b>6</b></a> </nobr><br><nobr>theobject <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>1</b></a> <a href="../modify_the_location.htm"><b>2</b></a> </nobr><br><a href="../sketcher.htm"><b>therefore</b></a> <br><nobr>theshape <a href="../glue_faces.htm"><b>1</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>2</b></a> <a href="../repairing_operations.htm"><b>3</b></a> </nobr><br><nobr>thestartlcs <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>1</b></a> <a href="../modify_the_location.htm"><b>2</b></a> </nobr><br><nobr>thetolerance <a href="../glue_faces.htm"><b>1</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>2</b></a> </nobr><br><a href="../box.htm"><b>third</b></a> <br><nobr>three <a href="../circle.htm"><b>1</b></a> <a href="../basic_geometrical_objects.htm"><b>2</b></a> <a href="../arc.htm"><b>3</b></a> <a href="../curve.htm"><b>4</b></a> <a href="../complex_objects.htm"><b>5</b></a> <a href="../geometrical_objects.htm"><b>6</b></a> <a href="../point.htm"><b>7</b></a> <a href="../plane.htm"><b>8</b></a> <a href="../mirror_image.htm"><b>9</b></a> <a href="../transformation_operations.htm"><b>10</b></a> <a href="../sketcher_tui.htm"><b>11</b></a> <a href="../working_plane.htm"><b>12</b></a> </nobr><br><nobr><a name="bms_TI"></a><a name="subkey_TI"></a>time <a href="../curve.htm"><b>1</b></a> <a href="../point.htm"><b>2</b></a> </nobr><br><nobr>times <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>1</b></a> <a href="../multi_translation.htm"><b>2</b></a> <a href="../multi_rotation.htm"><b>3</b></a> <a href="../transformation_operations.htm"><b>4</b></a> </nobr><br><a name="bms_TM"></a><a name="subkey_TM"></a><a href="../repairing_operations.htm"><b>tmp</b></a> <br><nobr><a name="bms_TO"></a><a name="subkey_TO"></a>tobezier <a href="../files/salome2_sp3_repairgui_functions.htm"><b>1</b></a> <a href="../shape_processing.htm"><b>2</b></a> </nobr><br><a href="../working_with_groups.htm"><b>toggle</b></a> <br><nobr>tol2d <a href="../complex_objects.htm"><b>1</b></a> <a href="../filling.htm"><b>2</b></a> <a href="../files/salome2_sp3_generationgui_functions.htm"><b>3</b></a> </nobr><br><nobr>tol3d <a href="../complex_objects.htm"><b>1</b></a> <a href="../filling.htm"><b>2</b></a> <a href="../files/salome2_sp3_generationgui_functions.htm"><b>3</b></a> </nobr><br><a href="../measurement_tools.htm"><b>toler</b></a> <br><nobr>tolerance <a href="../close_contour.htm"><b>1</b></a> <a href="../glue_faces.htm"><b>2</b></a> <a href="../filling.htm"><b>3</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>4</b></a> <a href="../files/salome2_sp3_measuregui_functions.htm"><b>5</b></a> <a href="../files/salome2_sp3_generationgui_functions.htm"><b>6</b></a> <a href="../measurement_tools.htm"><b>7</b></a> <a href="../shape_processing.htm"><b>8</b></a> </nobr><br><nobr>tolerance2d <a href="../files/salome2_sp3_repairgui_functions.htm"><b>1</b></a> <a href="../shape_processing.htm"><b>2</b></a> </nobr><br><nobr>tolerance3d <a href="../files/salome2_sp3_repairgui_functions.htm"><b>1</b></a> <a href="../shape_processing.htm"><b>2</b></a> <a href="../repairing_operations.htm"><b>3</b></a> </nobr><br><a href="../files/salome2_sp3_measuregui_functions.htm"><b>tolerances</b></a> <br><a href="../partition.htm"><b>tool</b></a> <br><nobr>tools <a href="../files/salome2_sp3_measuregui_functions.htm"><b>1</b></a> <a href="../measurement_tools.htm"><b>2</b></a> </nobr><br><a href="../blocks_operations.htm"><b>top_face</b></a> <br><a href="../blocks_operations.htm"><b>top_face_ind</b></a> <br><nobr>torus <a href="../cone.htm"><b>1</b></a> <a href="../files/salome2_sp3_primitivegui_functions.htm"><b>2</b></a> <a href="../primitives.htm"><b>3</b></a> <a href="../turus.htm"><b>4</b></a> </nobr><br><a href="../primitives.htm"><b>torus1</b></a> <br><a href="../primitives.htm"><b>torus2</b></a> <br><a href="../primitives.htm"><b>toruses</b></a> <br><a name="bms_TR"></a><a name="subkey_TR"></a><a href="../transformation_operations.htm"><b>tr1d</b></a> <br><a href="../transformation_operations.htm"><b>tr2d</b></a> <br><nobr>transform <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>1</b></a> <a href="../transformation_operations.htm"><b>2</b></a> <a href="../scale_transform.htm"><b>3</b></a> </nobr><br><a href="../blocks_operations.htm"><b>transformate</b></a> <br><nobr>transformation <a href="../chamfer.htm"><b>1</b></a> <a href="../blocks_operations.htm"><b>2</b></a> <a href="../blocks.htm"><b>3</b></a> <a href="../fillet.htm"><b>4</b></a> <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>5</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>6</b></a> <a href="../offset_surface.htm"><b>7</b></a> <a href="../multi_translation.htm"><b>8</b></a> <a href="../multi_transformation.htm"><b>9</b></a> <a href="../multi_rotation.htm"><b>10</b></a> <a href="../modify_the_location.htm"><b>11</b></a> <a href="../mirror_image.htm"><b>12</b></a> <a href="../transformation_operations.htm"><b>13</b></a> <a href="../scale_transform.htm"><b>14</b></a> <a href="../rotation.htm"><b>15</b></a> <a href="../translation.htm"><b>16</b></a> </nobr><br><nobr>transformations <a href="../files/introduction_to_geom.htm"><b>1</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>2</b></a> <a href="../multi_transformation.htm"><b>3</b></a> </nobr><br><nobr>transformed <a href="../blocks_operations.htm"><b>1</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>2</b></a> <a href="../multi_transformation.htm"><b>3</b></a> </nobr><br><a href="../common.htm"><b>transforms</b></a> <br><nobr>translate <a href="../transformation_operations.htm"><b>1</b></a> <a href="../translation.htm"><b>2</b></a> </nobr><br><nobr>translated <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>1</b></a> <a href="../multi_translation.htm"><b>2</b></a> <a href="../translation.htm"><b>3</b></a> </nobr><br><nobr>translates <a href="../offset_surface.htm"><b>1</b></a> <a href="../multi_rotation.htm"><b>2</b></a> </nobr><br><nobr>translation <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>1</b></a> <a href="../multi_translation.htm"><b>2</b></a> <a href="../multi_transformation.htm"><b>3</b></a> <a href="../multi_rotation.htm"><b>4</b></a> <a href="../transformation_operations.htm"><b>5</b></a> <a href="../translation.htm"><b>6</b></a> </nobr><br><a href="../transformation_operations.htm"><b>translation1</b></a> <br><a href="../transformation_operations.htm"><b>translation2</b></a> <br><a href="../transformation_operations.htm"><b>translation3</b></a> <br><nobr>translations <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>1</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>2</b></a> <a href="../multi_translation.htm"><b>3</b></a> <a href="../multi_transformation.htm"><b>4</b></a> <a href="../transformation_operations.htm"><b>5</b></a> </nobr><br><nobr>transparency <a href="../changing_displaying_parameters.htm"><b>1</b></a> <a href="../changing_display_parameters.htm"><b>2</b></a> </nobr><br><nobr>trihedron <a href="../files/salome2_sp3_basicgui_functions.htm"><b>1</b></a> <a href="../local_coordinate_system.htm"><b>2</b></a> </nobr><br><nobr>trimsize <a href="../basic_operations.htm"><b>1</b></a> <a href="../basic_geometrical_objects.htm"><b>2</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>3</b></a> <a href="../plane.htm"><b>4</b></a> </nobr><br><nobr>true <a href="../add_point_on_edge.htm"><b>1</b></a> <a href="../close_contour.htm"><b>2</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>3</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>4</b></a> <a href="../files/salome2_sp3_measuregui_functions.htm"><b>5</b></a> <a href="../partition.htm"><b>6</b></a> <a href="../repairing_operations.htm"><b>7</b></a> </nobr><br><a href="../cone.htm"><b>truncated</b></a> <br><a href="../face.htm"><b>try</b></a> <br><nobr><a name="bms_TT"></a><a name="subkey_TT"></a>tt <a href="../geometrical_objects.htm"><b>1</b></a> <a href="../sketcher_tui.htm"><b>2</b></a> </nobr><br><br><br></p><p class="ftsbody" align="center"><a href="whlstf13.htm" target="_self" title="previous search group"><b>>></b></a>\r
+<a name="bms_SE"></a><a name="subkey_SE"></a><a href="../files/salome2_sp3_geomtoolsgui_functions.htm"><b>search</b></a> <br><nobr>second <a href="../cone.htm"><b>1</b></a> <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>2</b></a> <a href="../files/salome2_sp3_primitivegui_functions.htm"><b>3</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>4</b></a> <a href="../files/salome2_sp3_booleangui_functions.htm"><b>5</b></a> <a href="../partition.htm"><b>6</b></a> <a href="../multi_translation.htm"><b>7</b></a> <a href="../multi_transformation.htm"><b>8</b></a> <a href="../modify_the_location.htm"><b>9</b></a> <a href="../sketcher_tui.htm"><b>10</b></a> </nobr><br><nobr>secondly <a href="../circle.htm"><b>1</b></a> <a href="../box.htm"><b>2</b></a> <a href="../cylinder.htm"><b>3</b></a> <a href="../cone.htm"><b>4</b></a> <a href="../point.htm"><b>5</b></a> <a href="../plane.htm"><b>6</b></a> <a href="../mirror_image.htm"><b>7</b></a> <a href="../local_coordinate_system.htm"><b>8</b></a> <a href="../sphere.htm"><b>9</b></a> <a href="../working_plane.htm"><b>10</b></a> <a href="../vector.htm"><b>11</b></a> <a href="../turus.htm"><b>12</b></a> <a href="../translation.htm"><b>13</b></a> </nobr><br><nobr>section <a href="../boolean_operations.htm"><b>1</b></a> <a href="../archimede.htm"><b>2</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>3</b></a> <a href="../files/salome2_sp3_booleangui_functions.htm"><b>4</b></a> <a href="../section.htm"><b>5</b></a> </nobr><br><a href="../wireframe_and_shading.htm"><b>see</b></a> <br><a href="../repairing_operations.htm"><b>seems</b></a> <br><a href="../sketcher.htm"><b>segment</b></a> <br><nobr>segments <a href="../files/salome2_sp3_repairgui_functions.htm"><b>1</b></a> <a href="../sketcher.htm"><b>2</b></a> <a href="../shape_processing.htm"><b>3</b></a> </nobr><br><nobr>select <a href="../circle.htm"><b>1</b></a> <a href="../check_free_faces.htm"><b>2</b></a> <a href="../check_free_boundaries.htm"><b>3</b></a> <a href="../changing_displaying_parameters.htm"><b>4</b></a> <a href="../chamfer.htm"><b>5</b></a> <a href="../box.htm"><b>6</b></a> <a href="../blocks.htm"><b>7</b></a> <a href="../archimede.htm"><b>8</b></a> <a href="../arc.htm"><b>9</b></a> <a href="../add_point_on_edge.htm"><b>10</b></a> <a href="../face.htm"><b>11</b></a> <a href="../extrusion.htm"><b>12</b></a> <a href="../explode_on_blocks.htm"><b>13</b></a> <a href="../explode.htm"><b>14</b></a> <a href="../ellipse.htm"><b>15</b></a> <a href="../edge.htm"><b>16</b></a> <a href="../cylinder.htm"><b>17</b></a> <a href="../cut.htm"><b>18</b></a> <a href="../curve.htm"><b>19</b></a> <a href="../cone.htm"><b>20</b></a> <a href="../compound.htm"><b>21</b></a> <a href="../common.htm"><b>22</b></a> <a href="../color.htm"><b>23</b></a> <a href="../close_contour.htm"><b>24</b></a> <a href="../glue_faces.htm"><b>25</b></a> <a href="../fuse.htm"><b>26</b></a> <a href="../filling.htm"><b>27</b></a> <a href="../fillet.htm"><b>28</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>29</b></a> <a href="../files/salome2_sp3_primitivegui_functions.htm"><b>30</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>31</b></a> <a href="../files/salome2_sp3_measuregui_functions.htm"><b>32</b></a> <a href="../files/salome2_sp3_geomtoolsgui_functions.htm"><b>33</b></a> <a href="../files/salome2_sp3_generationgui_functions.htm"><b>34</b></a> <a href="../files/salome2_sp3_displaygui_functions.htm"><b>35</b></a> <a href="../files/salome2_sp3_buildgui_functions.htm"><b>36</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>37</b></a> <a href="../point.htm"><b>38</b></a> <a href="../plane.htm"><b>39</b></a> <a href="../pipe_creation.htm"><b>40</b></a> <a href="../partition.htm"><b>41</b></a> <a href="../offset_surface.htm"><b>42</b></a> <a href="../multi_translation.htm"><b>43</b></a> <a href="../multi_transformation.htm"><b>44</b></a> <a href="../multi_rotation.htm"><b>45</b></a> <a href="../modify_the_location.htm"><b>46</b></a> <a href="../mirror_image.htm"><b>47</b></a> <a href="../local_coordinate_system.htm"><b>48</b></a> <a href="../line.htm"><b>49</b></a> <a href="../suppress_holes.htm"><b>50</b></a> <a href="../suppress_faces.htm"><b>51</b></a> <a href="../sphere.htm"><b>52</b></a> <a href="../solid.htm"><b>53</b></a> <a href="../sketcher.htm"><b>54</b></a> <a href="../shell.htm"><b>55</b></a> <a href="../shape_processing.htm"><b>56</b></a> <a href="../sewing.htm"><b>57</b></a> <a href="../section.htm"><b>58</b></a> <a href="../scale_transform.htm"><b>59</b></a> <a href="../rotation.htm"><b>60</b></a> <a href="../revolution.htm"><b>61</b></a> <a href="../propagate.htm"><b>62</b></a> <a href="../working_with_groups.htm"><b>63</b></a> <a href="../working_plane.htm"><b>64</b></a> <a href="../wireframe_and_shading.htm"><b>65</b></a> <a href="../wire.htm"><b>66</b></a> <a href="../vector.htm"><b>67</b></a> <a href="../turus.htm"><b>68</b></a> <a href="../translation.htm"><b>69</b></a> <a href="../suppress_internal_wires.htm"><b>70</b></a> </nobr><br><nobr>selected <a href="../changing_displaying_parameters.htm"><b>1</b></a> <a href="../basic_operations.htm"><b>2</b></a> <a href="../add_point_on_edge.htm"><b>3</b></a> <a href="../explode.htm"><b>4</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>5</b></a> <a href="../files/salome2_sp3_displaygui_functions.htm"><b>6</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>7</b></a> <a href="../local_coordinate_system.htm"><b>8</b></a> <a href="../groups.htm"><b>9</b></a> <a href="../suppress_holes.htm"><b>10</b></a> <a href="../repairing_operations.htm"><b>11</b></a> <a href="../working_with_groups.htm"><b>12</b></a> </nobr><br><nobr>selecting <a href="../color.htm"><b>1</b></a> <a href="../wire.htm"><b>2</b></a> </nobr><br><nobr>selection <a href="../fillet.htm"><b>1</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>2</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>3</b></a> <a href="../sketcher.htm"><b>4</b></a> <a href="../working_with_groups.htm"><b>5</b></a> <a href="../working_plane.htm"><b>6</b></a> </nobr><br><nobr>sense <a href="../files/salome2_sp3_operationgui_functions.htm"><b>1</b></a> <a href="../partition.htm"><b>2</b></a> </nobr><br><a href="../files/salome2_sp3_booleangui_functions.htm"><b>separate</b></a> <br><nobr>serve <a href="../curve.htm"><b>1</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>2</b></a> </nobr><br><nobr>serving <a href="../extrusion.htm"><b>1</b></a> <a href="../files/salome2_sp3_generationgui_functions.htm"><b>2</b></a> <a href="../pipe_creation.htm"><b>3</b></a> <a href="../revolution.htm"><b>4</b></a> </nobr><br><nobr>set <a href="../changing_displaying_parameters.htm"><b>1</b></a> <a href="../face.htm"><b>2</b></a> <a href="../close_contour.htm"><b>3</b></a> <a href="../geometrical_objects.htm"><b>4</b></a> <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>5</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>6</b></a> <a href="../offset_surface.htm"><b>7</b></a> <a href="../multi_rotation.htm"><b>8</b></a> <a href="../working_plane.htm"><b>9</b></a> </nobr><br><nobr>setcolor <a href="../changing_displaying_parameters.htm"><b>1</b></a> <a href="../changing_display_parameters.htm"><b>2</b></a> <a href="../color.htm"><b>3</b></a> </nobr><br><nobr>setdisplaymode <a href="../changing_displaying_parameters.htm"><b>1</b></a> <a href="../changing_display_parameters.htm"><b>2</b></a> <a href="../building_by_blocks.htm"><b>3</b></a> <a href="../boolean_operations.htm"><b>4</b></a> <a href="../blocks_operations.htm"><b>5</b></a> <a href="../basic_operations.htm"><b>6</b></a> <a href="../basic_geometrical_objects.htm"><b>7</b></a> <a href="../complex_objects.htm"><b>8</b></a> <a href="../geometrical_objects.htm"><b>9</b></a> <a href="../sketcher_tui.htm"><b>10</b></a> <a href="../repairing_operations.htm"><b>11</b></a> <a href="../primitives.htm"><b>12</b></a> <a href="../wireframe_and_shading.htm"><b>13</b></a> <a href="../transformation_operations.htm"><b>14</b></a> </nobr><br><a href="../files/salome2_sp3_basicgui_functions.htm"><b>sets</b></a> <br><nobr>setting <a href="../add_point_on_edge.htm"><b>1</b></a> <a href="../explode_on_blocks.htm"><b>2</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>3</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>4</b></a> <a href="../point.htm"><b>5</b></a> </nobr><br><nobr>settransparency <a href="../changing_displaying_parameters.htm"><b>1</b></a> <a href="../changing_display_parameters.htm"><b>2</b></a> <a href="../basic_geometrical_objects.htm"><b>3</b></a> <a href="../geometrical_objects.htm"><b>4</b></a> <a href="../sketcher_tui.htm"><b>5</b></a> <a href="../transparency.htm"><b>6</b></a> </nobr><br><nobr>sew <a href="../files/salome2_sp3_repairgui_functions.htm"><b>1</b></a> <a href="../sewing.htm"><b>2</b></a> </nobr><br><nobr>sewed <a href="../files/salome2_sp3_repairgui_functions.htm"><b>1</b></a> <a href="../sewing.htm"><b>2</b></a> </nobr><br><nobr>sewing <a href="../files/salome2_sp3_repairgui_functions.htm"><b>1</b></a> <a href="../sewing.htm"><b>2</b></a> <a href="../repairing_operations.htm"><b>3</b></a> </nobr><br><nobr><a name="bms_SG"></a><a name="subkey_SG"></a>sg <a href="../blocks_operations.htm"><b>1</b></a> <a href="../files/salome2_sp3_displaygui_functions.htm"><b>2</b></a> <a href="../groups.htm"><b>3</b></a> <a href="../repairing_operations.htm"><b>4</b></a> </nobr><br><nobr><a name="bms_SH"></a><a name="subkey_SH"></a>shading <a href="../changing_displaying_parameters.htm"><b>1</b></a> <a href="../wireframe_and_shading.htm"><b>2</b></a> </nobr><br><nobr>shape <a href="../check_free_faces.htm"><b>1</b></a> <a href="../check_free_boundaries.htm"><b>2</b></a> <a href="../changing_displaying_parameters.htm"><b>3</b></a> <a href="../chamfer.htm"><b>4</b></a> <a href="../basic_operations.htm"><b>5</b></a> <a href="../archimede.htm"><b>6</b></a> <a href="../add_point_on_edge.htm"><b>7</b></a> <a href="../extrusion.htm"><b>8</b></a> <a href="../explode.htm"><b>9</b></a> <a href="../cut.htm"><b>10</b></a> <a href="../close_contour.htm"><b>11</b></a> <a href="../fuse.htm"><b>12</b></a> <a href="../filling.htm"><b>13</b></a> <a href="../fillet.htm"><b>14</b></a> <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>15</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>16</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>17</b></a> <a href="../files/salome2_sp3_measuregui_functions.htm"><b>18</b></a> <a href="../files/salome2_sp3_generationgui_functions.htm"><b>19</b></a> <a href="../files/salome2_sp3_displaygui_functions.htm"><b>20</b></a> <a href="../files/salome2_sp3_buildgui_functions.htm"><b>21</b></a> <a href="../pipe_creation.htm"><b>22</b></a> <a href="../partition.htm"><b>23</b></a> <a href="../offset_surface.htm"><b>24</b></a> <a href="../multi_translation.htm"><b>25</b></a> <a href="../multi_rotation.htm"><b>26</b></a> <a href="../modify_the_location.htm"><b>27</b></a> <a href="../mirror_image.htm"><b>28</b></a> <a href="../measurement_tools.htm"><b>29</b></a> <a href="../isos.htm"><b>30</b></a> <a href="../suppress_holes.htm"><b>31</b></a> <a href="../suppress_faces.htm"><b>32</b></a> <a href="../shape_processing.htm"><b>33</b></a> <a href="../sewing.htm"><b>34</b></a> <a href="../scale_transform.htm"><b>35</b></a> <a href="../rotation.htm"><b>36</b></a> <a href="../revolution.htm"><b>37</b></a> <a href="../repairing_operations.htm"><b>38</b></a> <a href="../propagate.htm"><b>39</b></a> <a href="../working_with_groups.htm"><b>40</b></a> <a href="../transparency.htm"><b>41</b></a> <a href="../translation.htm"><b>42</b></a> <a href="../transformation_operations.htm"><b>43</b></a> <a href="../suppress_internal_wires.htm"><b>44</b></a> </nobr><br><nobr>shape1 <a href="../files/salome2_sp3_measuregui_functions.htm"><b>1</b></a> <a href="../files/salome2_sp3_booleangui_functions.htm"><b>2</b></a> </nobr><br><nobr>shape2 <a href="../files/salome2_sp3_measuregui_functions.htm"><b>1</b></a> <a href="../files/salome2_sp3_booleangui_functions.htm"><b>2</b></a> </nobr><br><a href="../complex_objects.htm"><b>shapelistcompound</b></a> <br><nobr>shapes <a href="../files/introduction_to_geom.htm"><b>1</b></a> <a href="../explode.htm"><b>2</b></a> <a href="../cut.htm"><b>3</b></a> <a href="../compound.htm"><b>4</b></a> <a href="../common.htm"><b>5</b></a> <a href="../glue_faces.htm"><b>6</b></a> <a href="../fuse.htm"><b>7</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>8</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>9</b></a> <a href="../files/salome2_sp3_measuregui_functions.htm"><b>10</b></a> <a href="../files/salome2_sp3_displaygui_functions.htm"><b>11</b></a> <a href="../files/salome2_sp3_buildgui_functions.htm"><b>12</b></a> <a href="../partition.htm"><b>13</b></a> <a href="../groups.htm"><b>14</b></a> <a href="../suppress_holes.htm"><b>15</b></a> <a href="../shape_processing.htm"><b>16</b></a> <a href="../sewing.htm"><b>17</b></a> <a href="../section.htm"><b>18</b></a> <a href="../repairing_operations.htm"><b>19</b></a> <a href="../working_with_groups.htm"><b>20</b></a> </nobr><br><a href="../explode.htm"><b>shapes_of_given_type</b></a> <br><a href="../files/salome2_sp3_repairgui_functions.htm"><b>shapesto</b></a> <br><nobr>shapetype <a href="../geometrical_objects.htm"><b>1</b></a> <a href="../fillet.htm"><b>2</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>3</b></a> <a href="../groups.htm"><b>4</b></a> <a href="../repairing_operations.htm"><b>5</b></a> <a href="../working_with_groups.htm"><b>6</b></a> <a href="../transformation_operations.htm"><b>7</b></a> </nobr><br><a href="../transformation_operations.htm"><b>shapetypeedge</b></a> <br><a href="../transformation_operations.htm"><b>shapetypeface</b></a> <br><nobr>shared <a href="../check_free_faces.htm"><b>1</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>2</b></a> </nobr><br><nobr>shell <a href="../extrusion.htm"><b>1</b></a> <a href="../geometrical_objects.htm"><b>2</b></a> <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>3</b></a> <a href="../files/salome2_sp3_generationgui_functions.htm"><b>4</b></a> <a href="../files/salome2_sp3_buildgui_functions.htm"><b>5</b></a> <a href="../pipe_creation.htm"><b>6</b></a> <a href="../offset_surface.htm"><b>7</b></a> <a href="../newentity_blocks.htm"><b>8</b></a> <a href="../solid.htm"><b>9</b></a> <a href="../shell.htm"><b>10</b></a> <a href="../revolution.htm"><b>11</b></a> </nobr><br><nobr>shells <a href="../check_free_faces.htm"><b>1</b></a> <a href="../compound.htm"><b>2</b></a> <a href="../geometrical_objects.htm"><b>3</b></a> <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>4</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>5</b></a> <a href="../files/salome2_sp3_buildgui_functions.htm"><b>6</b></a> <a href="../offset_surface.htm"><b>7</b></a> <a href="../solid.htm"><b>8</b></a> <a href="../shell.htm"><b>9</b></a> <a href="../wireframe_and_shading.htm"><b>10</b></a> </nobr><br><nobr>shift <a href="../point.htm"><b>1</b></a> <a href="../working_with_groups.htm"><b>2</b></a> <a href="../wire.htm"><b>3</b></a> </nobr><br><nobr>short <a href="../changing_displaying_parameters.htm"><b>1</b></a> <a href="../color.htm"><b>2</b></a> <a href="../wireframe_and_shading.htm"><b>3</b></a> </nobr><br><a href="../face.htm"><b>shortcut</b></a> <br><nobr>should <a href="../extrusion.htm"><b>1</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>2</b></a> <a href="../files/salome2_sp3_measuregui_functions.htm"><b>3</b></a> <a href="../line.htm"><b>4</b></a> <a href="../suppress_holes.htm"><b>5</b></a> <a href="../suppress_faces.htm"><b>6</b></a> </nobr><br><a href="../files/salome2_sp3_measuregui_functions.htm"><b>show</b></a> <br><nobr>shown <a href="../files/salome2_sp3_basicgui_functions.htm"><b>1</b></a> <a href="../local_coordinate_system.htm"><b>2</b></a> </nobr><br><nobr><a name="bms_SI"></a><a name="subkey_SI"></a>side <a href="../files/salome2_sp3_basicgui_functions.htm"><b>1</b></a> <a href="../plane.htm"><b>2</b></a> </nobr><br><nobr>signed <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>1</b></a> <a href="../offset_surface.htm"><b>2</b></a> </nobr><br><a href="../plane.htm"><b>similar</b></a> <br><nobr>simple <a href="../multi_translation.htm"><b>1</b></a> <a href="../multi_transformation.htm"><b>2</b></a> <a href="../multi_rotation.htm"><b>3</b></a> </nobr><br><a href="../local_coordinate_system.htm"><b>simply</b></a> <br><a href="../face.htm"><b>single</b></a> <br><nobr>six <a href="../building_by_blocks.htm"><b>1</b></a> <a href="../newentity_blocks.htm"><b>2</b></a> </nobr><br><nobr>size <a href="../chamfer.htm"><b>1</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>2</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>3</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>4</b></a> <a href="../plane.htm"><b>5</b></a> <a href="../shape_processing.htm"><b>6</b></a> </nobr><br><a name="bms_SK"></a><a name="subkey_SK"></a><a href="../sketcher.htm"><b>sketch</b></a> <br><nobr>sketcher <a href="../geometrical_objects.htm"><b>1</b></a> <a href="../sketcher_tui.htm"><b>2</b></a> <a href="../sketcher.htm"><b>3</b></a> </nobr><br><nobr>sketcher1 <a href="../geometrical_objects.htm"><b>1</b></a> <a href="../sketcher_tui.htm"><b>2</b></a> </nobr><br><nobr>sketcher2 <a href="../geometrical_objects.htm"><b>1</b></a> <a href="../sketcher_tui.htm"><b>2</b></a> </nobr><br><a href="../geometrical_objects.htm"><b>sketcher3</b></a> <br><a href="../geometrical_objects.htm"><b>sketchers</b></a> <br><a href="../working_with_groups.htm"><b>skip</b></a> <br><nobr><a name="bms_SM"></a><a name="subkey_SM"></a>small <a href="../files/salome2_sp3_repairgui_functions.htm"><b>1</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>2</b></a> <a href="../shape_processing.htm"><b>3</b></a> </nobr><br><nobr><a name="bms_SO"></a><a name="subkey_SO"></a>so <a href="../face.htm"><b>1</b></a> <a href="../modify_the_location.htm"><b>2</b></a> </nobr><br><nobr>solid <a href="../building_by_blocks.htm"><b>1</b></a> <a href="../box.htm"><b>2</b></a> <a href="../extrusion.htm"><b>3</b></a> <a href="../cylinder.htm"><b>4</b></a> <a href="../cone.htm"><b>5</b></a> <a href="../geometrical_objects.htm"><b>6</b></a> <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>7</b></a> <a href="../files/salome2_sp3_primitivegui_functions.htm"><b>8</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>9</b></a> <a href="../files/salome2_sp3_generationgui_functions.htm"><b>10</b></a> <a href="../files/salome2_sp3_buildgui_functions.htm"><b>11</b></a> <a href="../pipe_creation.htm"><b>12</b></a> <a href="../offset_surface.htm"><b>13</b></a> <a href="../newentity_blocks.htm"><b>14</b></a> <a href="../multi_transformation.htm"><b>15</b></a> <a href="../sphere.htm"><b>16</b></a> <a href="../solid.htm"><b>17</b></a> <a href="../revolution.htm"><b>18</b></a> <a href="../turus.htm"><b>19</b></a> </nobr><br><a href="../building_by_blocks.htm"><b>solid1</b></a> <br><a href="../building_by_blocks.htm"><b>solid2</b></a> <br><nobr>solids <a href="../building_by_blocks.htm"><b>1</b></a> <a href="../explode.htm"><b>2</b></a> <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>3</b></a> <a href="../offset_surface.htm"><b>4</b></a> </nobr><br><a href="../files/salome2_sp3_basicgui_functions.htm"><b>soon</b></a> <br><a href="../explode.htm"><b>sorted</b></a> <br><a href="../explode.htm"><b>sorts</b></a> <br><a href="../revolution.htm"><b>source</b></a> <br><br><br></p><p class="ftsbody" align="center"><a href="whlstf13.htm" target="_self" title="previous search group"><b>>></b></a>\r
\r
</body>\r
\r
<body marginheight="0" marginwidth="0" bgproperties="fixed">\r
<p class="ftsbody" align="center"><a href="whlstf12.htm" target="_self" title="previous search group"><b><<</b></a><br><br></p>\r
<p class="ftsbody" >\r
-<nobr><a name="bms_TU"></a><a name="subkey_TU"></a>tui <a href="../circle.htm"><b>1</b></a> <a href="../check_free_faces.htm"><b>2</b></a> <a href="../check_free_boundaries.htm"><b>3</b></a> <a href="../changing_displaying_parameters.htm"><b>4</b></a> <a href="../chamfer.htm"><b>5</b></a> <a href="../box.htm"><b>6</b></a> <a href="../archimede.htm"><b>7</b></a> <a href="../arc.htm"><b>8</b></a> <a href="../add_point_on_edge.htm"><b>9</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>10</b></a> <a href="../face.htm"><b>11</b></a> <a href="../extrusion.htm"><b>12</b></a> <a href="../explode_on_blocks.htm"><b>13</b></a> <a href="../explode.htm"><b>14</b></a> <a href="../ellipse.htm"><b>15</b></a> <a href="../edge.htm"><b>16</b></a> <a href="../cylinder.htm"><b>17</b></a> <a href="../cut.htm"><b>18</b></a> <a href="../curve.htm"><b>19</b></a> <a href="../cone.htm"><b>20</b></a> <a href="../compound.htm"><b>21</b></a> <a href="../common.htm"><b>22</b></a> <a href="../close_contour.htm"><b>23</b></a> <a href="../glue_faces.htm"><b>24</b></a> <a href="../fuse.htm"><b>25</b></a> <a href="../filling.htm"><b>26</b></a> <a href="../fillet.htm"><b>27</b></a> <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>28</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>29</b></a> <a href="../files/salome2_sp3_primitivegui_functions.htm"><b>30</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>31</b></a> <a href="../files/salome2_sp3_measuregui_functions.htm"><b>32</b></a> <a href="../files/salome2_sp3_generationgui_functions.htm"><b>33</b></a> <a href="../files/salome2_sp3_displaygui_functions.htm"><b>34</b></a> <a href="../files/salome2_sp3_buildgui_functions.htm"><b>35</b></a> <a href="../files/salome2_sp3_booleangui_functions.htm"><b>36</b></a> <a href="../propagate.htm"><b>37</b></a> <a href="../point.htm"><b>38</b></a> <a href="../plane.htm"><b>39</b></a> <a href="../pipe_creation.htm"><b>40</b></a> <a href="../partition.htm"><b>41</b></a> <a href="../offset_surface.htm"><b>42</b></a> <a href="../newentity_blocks.htm"><b>43</b></a> <a href="../multi_translation.htm"><b>44</b></a> <a href="../multi_transformation.htm"><b>45</b></a> <a href="../multi_rotation.htm"><b>46</b></a> <a href="../modify_the_location.htm"><b>47</b></a> <a href="../mirror_image.htm"><b>48</b></a> <a href="../local_coordinate_system.htm"><b>49</b></a> <a href="../line.htm"><b>50</b></a> <a href="../suppress_internal_wires.htm"><b>51</b></a> <a href="../suppress_holes.htm"><b>52</b></a> <a href="../suppress_faces.htm"><b>53</b></a> <a href="../sphere.htm"><b>54</b></a> <a href="../solid.htm"><b>55</b></a> <a href="../sketcher.htm"><b>56</b></a> <a href="../shell.htm"><b>57</b></a> <a href="../shape_processing.htm"><b>58</b></a> <a href="../sewing.htm"><b>59</b></a> <a href="../section.htm"><b>60</b></a> <a href="../scale_transform.htm"><b>61</b></a> <a href="../rotation.htm"><b>62</b></a> <a href="../revolution.htm"><b>63</b></a> <a href="../working_with_groups.htm"><b>64</b></a> <a href="../wire.htm"><b>65</b></a> <a href="../vector.htm"><b>66</b></a> <a href="../turus.htm"><b>67</b></a> <a href="../translation.htm"><b>68</b></a> </nobr><br><a href="../files/salome2_sp3_measuregui_functions.htm"><b>tuple</b></a> <br><nobr><a name="bms_TW"></a><a name="subkey_TW"></a>two <a href="../check_free_faces.htm"><b>1</b></a> <a href="../chamfer.htm"><b>2</b></a> <a href="../building_by_blocks.htm"><b>3</b></a> <a href="../box.htm"><b>4</b></a> <a href="../basic_operations.htm"><b>5</b></a> <a href="../basic_geometrical_objects.htm"><b>6</b></a> <a href="../add_point_on_edge.htm"><b>7</b></a> <a href="../edge.htm"><b>8</b></a> <a href="../cone.htm"><b>9</b></a> <a href="../complex_objects.htm"><b>10</b></a> <a href="../common.htm"><b>11</b></a> <a href="../groups.htm"><b>12</b></a> <a href="../glue_faces.htm"><b>13</b></a> <a href="../geometrical_objects.htm"><b>14</b></a> <a href="../fuse.htm"><b>15</b></a> <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>16</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>17</b></a> <a href="../files/salome2_sp3_primitivegui_functions.htm"><b>18</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>19</b></a> <a href="../files/salome2_sp3_measuregui_functions.htm"><b>20</b></a> <a href="../partition.htm"><b>21</b></a> <a href="../newentity_blocks.htm"><b>22</b></a> <a href="../multi_translation.htm"><b>23</b></a> <a href="../multi_transformation.htm"><b>24</b></a> <a href="../multi_rotation.htm"><b>25</b></a> <a href="../transformation_operations.htm"><b>26</b></a> <a href="../sphere.htm"><b>27</b></a> <a href="../sketcher_tui.htm"><b>28</b></a> <a href="../working_plane.htm"><b>29</b></a> <a href="../turus.htm"><b>30</b></a> </nobr><br><nobr><a name="bms_TY"></a><a name="subkey_TY"></a>type <a href="../explode_on_blocks.htm"><b>1</b></a> <a href="../explode.htm"><b>2</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>3</b></a> <a href="../files/salome2_sp3_measuregui_functions.htm"><b>4</b></a> <a href="../files/salome2_sp3_buildgui_functions.htm"><b>5</b></a> <a href="../files/salome2_sp3_booleangui_functions.htm"><b>6</b></a> <a href="../partition.htm"><b>7</b></a> <a href="../sketcher.htm"><b>8</b></a> <a href="../working_with_groups.htm"><b>9</b></a> </nobr><br><a href="../files/salome2_sp3_buildgui_functions.htm"><b>typeofshape</b></a> <br><nobr>types <a href="../curve.htm"><b>1</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>2</b></a> <a href="../files/salome2_sp3_primitivegui_functions.htm"><b>3</b></a> <a href="../sketcher.htm"><b>4</b></a> <a href="../shape_processing.htm"><b>5</b></a> </nobr><br>\r
+<nobr><a name="bms_SP"></a><a name="subkey_SP"></a>space <a href="../circle.htm"><b>1</b></a> <a href="../curve.htm"><b>2</b></a> <a href="../files/salome2_sp3_measuregui_functions.htm"><b>3</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>4</b></a> <a href="../point.htm"><b>5</b></a> <a href="../plane.htm"><b>6</b></a> <a href="../vector.htm"><b>7</b></a> </nobr><br><a href="../newentity_blocks.htm"><b>specific</b></a> <br><nobr>specified <a href="../chamfer.htm"><b>1</b></a> <a href="../box.htm"><b>2</b></a> <a href="../add_point_on_edge.htm"><b>3</b></a> <a href="../close_contour.htm"><b>4</b></a> <a href="../fillet.htm"><b>5</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>6</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>7</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>8</b></a> <a href="../multi_transformation.htm"><b>9</b></a> <a href="../local_coordinate_system.htm"><b>10</b></a> <a href="../shape_processing.htm"><b>11</b></a> <a href="../repairing_operations.htm"><b>12</b></a> <a href="../transformation_operations.htm"><b>13</b></a> <a href="../suppress_internal_wires.htm"><b>14</b></a> </nobr><br><a href="../files/salome2_sp3_basicgui_functions.htm"><b>specifies</b></a> <br><nobr>specify <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>1</b></a> <a href="../rotation.htm"><b>2</b></a> </nobr><br><nobr>specifying <a href="../add_point_on_edge.htm"><b>1</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>2</b></a> </nobr><br><nobr>sphere <a href="../changing_display_parameters.htm"><b>1</b></a> <a href="../boolean_operations.htm"><b>2</b></a> <a href="../blocks_operations.htm"><b>3</b></a> <a href="../files/salome2_sp3_primitivegui_functions.htm"><b>4</b></a> <a href="../sphere.htm"><b>5</b></a> <a href="../primitives.htm"><b>6</b></a> <a href="../transformation_operations.htm"><b>7</b></a> </nobr><br><a href="../primitives.htm"><b>sphere1</b></a> <br><a href="../primitives.htm"><b>sphere2</b></a> <br><a href="../primitives.htm"><b>sphere3</b></a> <br><a href="../primitives.htm"><b>spheres</b></a> <br><nobr>spline <a href="../basic_geometrical_objects.htm"><b>1</b></a> <a href="../curve.htm"><b>2</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>3</b></a> </nobr><br><nobr>splitangle <a href="../files/salome2_sp3_repairgui_functions.htm"><b>1</b></a> <a href="../shape_processing.htm"><b>2</b></a> </nobr><br><nobr>splitclosedfaces <a href="../files/salome2_sp3_repairgui_functions.htm"><b>1</b></a> <a href="../shape_processing.htm"><b>2</b></a> </nobr><br><nobr>splitcontinuity <a href="../files/salome2_sp3_repairgui_functions.htm"><b>1</b></a> <a href="../shape_processing.htm"><b>2</b></a> </nobr><br><nobr>splits <a href="../add_point_on_edge.htm"><b>1</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>2</b></a> </nobr><br><nobr>splitting <a href="../files/salome2_sp3_repairgui_functions.htm"><b>1</b></a> <a href="../shape_processing.htm"><b>2</b></a> </nobr><br><nobr>spot <a href="../files/salome2_sp3_repairgui_functions.htm"><b>1</b></a> <a href="../shape_processing.htm"><b>2</b></a> </nobr><br><a name="bms_SQ"></a><a name="subkey_SQ"></a><a href="../measurement_tools.htm"><b>sqrt</b></a> <br><a name="bms_ST"></a><a name="subkey_ST"></a><a href="../newentity_blocks.htm"><b>stage</b></a> <br><a href="../color.htm"><b>standard</b></a> <br><nobr>start <a href="../extrusion.htm"><b>1</b></a> <a href="../modify_the_location.htm"><b>2</b></a> <a href="../vector.htm"><b>3</b></a> <a href="../translation.htm"><b>4</b></a> </nobr><br><a href="../sketcher.htm"><b>started</b></a> <br><nobr>starting <a href="../arc.htm"><b>1</b></a> <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>2</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>3</b></a> <a href="../sketcher.htm"><b>4</b></a> <a href="../vector.htm"><b>5</b></a> </nobr><br><nobr>step <a href="../files/introduction_to_geom.htm"><b>1</b></a> <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>2</b></a> <a href="../files/salome2_sp3_geomtoolsgui_functions.htm"><b>3</b></a> <a href="../multi_translation.htm"><b>4</b></a> <a href="../multi_rotation.htm"><b>5</b></a> </nobr><br><nobr>step1 <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>1</b></a> <a href="../multi_translation.htm"><b>2</b></a> </nobr><br><nobr>step2 <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>1</b></a> <a href="../multi_translation.htm"><b>2</b></a> </nobr><br><a href="../sketcher.htm"><b>string</b></a> <br><nobr>strip <a href="../files/salome2_sp3_repairgui_functions.htm"><b>1</b></a> <a href="../shape_processing.htm"><b>2</b></a> </nobr><br><nobr>study <a href="../building_by_blocks.htm"><b>1</b></a> <a href="../boolean_operations.htm"><b>2</b></a> <a href="../blocks_operations.htm"><b>3</b></a> <a href="../basic_operations.htm"><b>4</b></a> <a href="../basic_geometrical_objects.htm"><b>5</b></a> <a href="../complex_objects.htm"><b>6</b></a> <a href="../geometrical_objects.htm"><b>7</b></a> <a href="../files/salome2_sp3_displaygui_functions.htm"><b>8</b></a> <a href="../sketcher_tui.htm"><b>9</b></a> <a href="../repairing_operations.htm"><b>10</b></a> <a href="../primitives.htm"><b>11</b></a> <a href="../transformation_operations.htm"><b>12</b></a> </nobr><br><nobr><a name="bms_SU"></a><a name="subkey_SU"></a>sub <a href="../explode.htm"><b>1</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>2</b></a> <a href="../files/salome2_sp3_buildgui_functions.htm"><b>3</b></a> <a href="../suppress_holes.htm"><b>4</b></a> <a href="../repairing_operations.htm"><b>5</b></a> <a href="../working_with_groups.htm"><b>6</b></a> </nobr><br><a href="../repairing_operations.htm"><b>sub_shape_id</b></a> <br><a href="../groups.htm"><b>subfacelist</b></a> <br><nobr>submenu <a href="../blocks.htm"><b>1</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>2</b></a> <a href="../files/salome2_sp3_measuregui_functions.htm"><b>3</b></a> <a href="../files/salome2_sp3_buildgui_functions.htm"><b>4</b></a> </nobr><br><nobr>subshape <a href="../explode.htm"><b>1</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>2</b></a> <a href="../files/salome2_sp3_buildgui_functions.htm"><b>3</b></a> <a href="../working_with_groups.htm"><b>4</b></a> </nobr><br><nobr>subshapeall <a href="../explode.htm"><b>1</b></a> <a href="../files/salome2_sp3_buildgui_functions.htm"><b>2</b></a> </nobr><br><a href="../explode.htm"><b>subshapeallids</b></a> <br><nobr>subshapeallsorted <a href="../explode.htm"><b>1</b></a> <a href="../geometrical_objects.htm"><b>2</b></a> <a href="../groups.htm"><b>3</b></a> <a href="../repairing_operations.htm"><b>4</b></a> <a href="../transformation_operations.htm"><b>5</b></a> </nobr><br><a href="../explode.htm"><b>subshapeallsortedids</b></a> <br><a href="../working_with_groups.htm"><b>subshapeid</b></a> <br><nobr>subshapes <a href="../explode.htm"><b>1</b></a> <a href="../files/salome2_sp3_buildgui_functions.htm"><b>2</b></a> <a href="../working_with_groups.htm"><b>3</b></a> </nobr><br><a href="../explode.htm"><b>subshapesorted</b></a> <br><a href="../measurement_tools.htm"><b>successfully</b></a> <br><a href="../repairing_operations.htm"><b>sup_faces</b></a> <br><nobr>suppress <a href="../files/salome2_sp3_repairgui_functions.htm"><b>1</b></a> <a href="../suppress_holes.htm"><b>2</b></a> <a href="../suppress_faces.htm"><b>3</b></a> <a href="../repairing_operations.htm"><b>4</b></a> <a href="../suppress_internal_wires.htm"><b>5</b></a> </nobr><br><nobr>suppresses <a href="../files/salome2_sp3_repairgui_functions.htm"><b>1</b></a> <a href="../suppress_faces.htm"><b>2</b></a> </nobr><br><nobr>suppressfaces <a href="../files/salome2_sp3_repairgui_functions.htm"><b>1</b></a> <a href="../suppress_faces.htm"><b>2</b></a> <a href="../repairing_operations.htm"><b>3</b></a> </nobr><br><nobr>suppressholes <a href="../files/salome2_sp3_repairgui_functions.htm"><b>1</b></a> <a href="../suppress_holes.htm"><b>2</b></a> <a href="../repairing_operations.htm"><b>3</b></a> </nobr><br><nobr>suppressinternalwires <a href="../files/salome2_sp3_repairgui_functions.htm"><b>1</b></a> <a href="../repairing_operations.htm"><b>2</b></a> <a href="../suppress_internal_wires.htm"><b>3</b></a> </nobr><br><nobr>surface <a href="../face.htm"><b>1</b></a> <a href="../filling.htm"><b>2</b></a> <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>3</b></a> <a href="../files/salome2_sp3_measuregui_functions.htm"><b>4</b></a> <a href="../offset_surface.htm"><b>5</b></a> <a href="../measurement_tools.htm"><b>6</b></a> <a href="../transformation_operations.htm"><b>7</b></a> </nobr><br><nobr>surfacecontinuity <a href="../files/salome2_sp3_repairgui_functions.htm"><b>1</b></a> <a href="../shape_processing.htm"><b>2</b></a> </nobr><br><nobr>surfacemode <a href="../files/salome2_sp3_repairgui_functions.htm"><b>1</b></a> <a href="../shape_processing.htm"><b>2</b></a> </nobr><br><nobr>surfaces <a href="../files/salome2_sp3_repairgui_functions.htm"><b>1</b></a> <a href="../shape_processing.htm"><b>2</b></a> </nobr><br><a name="bms_SY"></a><a name="subkey_SY"></a><a href="../transformation_operations.htm"><b>symmetric</b></a> <br><nobr>symmetrical <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>1</b></a> <a href="../mirror_image.htm"><b>2</b></a> <a href="../transformation_operations.htm"><b>3</b></a> </nobr><br><nobr>symmetry <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>1</b></a> <a href="../files/salome2_sp3_primitivegui_functions.htm"><b>2</b></a> <a href="../mirror_image.htm"><b>3</b></a> </nobr><br><nobr>system <a href="../cylinder.htm"><b>1</b></a> <a href="../cone.htm"><b>2</b></a> <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>3</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>4</b></a> <a href="../modify_the_location.htm"><b>5</b></a> <a href="../local_coordinate_system.htm"><b>6</b></a> <a href="../sphere.htm"><b>7</b></a> <a href="../working_plane.htm"><b>8</b></a> <a href="../transformation_operations.htm"><b>9</b></a> </nobr><br><nobr>systems <a href="../modify_the_location.htm"><b>1</b></a> <a href="../transformation_operations.htm"><b>2</b></a> </nobr><br>\r
<br><br>\r
-<nobr><a name="bm_U"></a><a name="subkey_UN"></a>underlying <a href="../close_contour.htm"><b>1</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>2</b></a> </nobr><br><a href="../groups.htm"><b>unionlist</b></a> <br><nobr><a name="bms_UP"></a><a name="subkey_UP"></a>up <a href="../changing_displaying_parameters.htm"><b>1</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>2</b></a> <a href="../files/salome2_sp3_displaygui_functions.htm"><b>3</b></a> </nobr><br><nobr>updated <a href="../files/salome2_sp3_basicgui_functions.htm"><b>1</b></a> <a href="../local_coordinate_system.htm"><b>2</b></a> </nobr><br><nobr>updateobjbrowser <a href="../blocks_operations.htm"><b>1</b></a> <a href="../groups.htm"><b>2</b></a> <a href="../repairing_operations.htm"><b>3</b></a> </nobr><br><nobr>upper <a href="../cone.htm"><b>1</b></a> <a href="../files/salome2_sp3_primitivegui_functions.htm"><b>2</b></a> </nobr><br><nobr><a name="bms_US"></a><a name="subkey_US"></a>used <a href="../files/salome2_sp3_repairgui_functions.htm"><b>1</b></a> <a href="../files/salome2_sp3_generationgui_functions.htm"><b>2</b></a> <a href="../files/salome2_sp3_booleangui_functions.htm"><b>3</b></a> <a href="../sketcher.htm"><b>4</b></a> <a href="../working_with_groups.htm"><b>5</b></a> </nobr><br><nobr>useful <a href="../circle.htm"><b>1</b></a> <a href="../check_free_faces.htm"><b>2</b></a> <a href="../check_free_boundaries.htm"><b>3</b></a> <a href="../changing_displaying_parameters.htm"><b>4</b></a> <a href="../chamfer.htm"><b>5</b></a> <a href="../box.htm"><b>6</b></a> <a href="../archimede.htm"><b>7</b></a> <a href="../arc.htm"><b>8</b></a> <a href="../add_point_on_edge.htm"><b>9</b></a> <a href="../face.htm"><b>10</b></a> <a href="../extrusion.htm"><b>11</b></a> <a href="../explode_on_blocks.htm"><b>12</b></a> <a href="../ellipse.htm"><b>13</b></a> <a href="../edge.htm"><b>14</b></a> <a href="../cylinder.htm"><b>15</b></a> <a href="../cut.htm"><b>16</b></a> <a href="../curve.htm"><b>17</b></a> <a href="../cone.htm"><b>18</b></a> <a href="../compound.htm"><b>19</b></a> <a href="../common.htm"><b>20</b></a> <a href="../close_contour.htm"><b>21</b></a> <a href="../glue_faces.htm"><b>22</b></a> <a href="../fuse.htm"><b>23</b></a> <a href="../filling.htm"><b>24</b></a> <a href="../fillet.htm"><b>25</b></a> <a href="../files/salome2_sp3_booleangui_functions.htm"><b>26</b></a> <a href="../propagate.htm"><b>27</b></a> <a href="../point.htm"><b>28</b></a> <a href="../plane.htm"><b>29</b></a> <a href="../pipe_creation.htm"><b>30</b></a> <a href="../partition.htm"><b>31</b></a> <a href="../offset_surface.htm"><b>32</b></a> <a href="../newentity_blocks.htm"><b>33</b></a> <a href="../multi_translation.htm"><b>34</b></a> <a href="../multi_transformation.htm"><b>35</b></a> <a href="../multi_rotation.htm"><b>36</b></a> <a href="../modify_the_location.htm"><b>37</b></a> <a href="../mirror_image.htm"><b>38</b></a> <a href="../line.htm"><b>39</b></a> <a href="../suppress_internal_wires.htm"><b>40</b></a> <a href="../suppress_holes.htm"><b>41</b></a> <a href="../suppress_faces.htm"><b>42</b></a> <a href="../sphere.htm"><b>43</b></a> <a href="../solid.htm"><b>44</b></a> <a href="../sketcher.htm"><b>45</b></a> <a href="../shell.htm"><b>46</b></a> <a href="../shape_processing.htm"><b>47</b></a> <a href="../sewing.htm"><b>48</b></a> <a href="../section.htm"><b>49</b></a> <a href="../scale_transform.htm"><b>50</b></a> <a href="../rotation.htm"><b>51</b></a> <a href="../revolution.htm"><b>52</b></a> <a href="../working_with_groups.htm"><b>53</b></a> <a href="../wire.htm"><b>54</b></a> <a href="../vector.htm"><b>55</b></a> <a href="../turus.htm"><b>56</b></a> <a href="../translation.htm"><b>57</b></a> </nobr><br><nobr>user <a href="../files/salome2_sp3_basicgui_functions.htm"><b>1</b></a> <a href="../explode_on_blocks.htm"><b>2</b></a> <a href="../close_contour.htm"><b>3</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>4</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>5</b></a> <a href="../multi_transformation.htm"><b>6</b></a> <a href="../local_coordinate_system.htm"><b>7</b></a> <a href="../suppress_internal_wires.htm"><b>8</b></a> </nobr><br><nobr>using <a href="../archimede.htm"><b>1</b></a> <a href="../files/introduction_to_geom.htm"><b>2</b></a> <a href="../explode.htm"><b>3</b></a> <a href="../filling.htm"><b>4</b></a> <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>5</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>6</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>7</b></a> <a href="../files/salome2_sp3_measuregui_functions.htm"><b>8</b></a> <a href="../files/salome2_sp3_generationgui_functions.htm"><b>9</b></a> <a href="../files/salome2_sp3_displaygui_functions.htm"><b>10</b></a> <a href="../files/salome2_sp3_buildgui_functions.htm"><b>11</b></a> <a href="../files/salome2_sp3_booleangui_functions.htm"><b>12</b></a> <a href="../newentity_blocks.htm"><b>13</b></a> <a href="../shape_processing.htm"><b>14</b></a> </nobr><br>\r
-<br><br>\r
-<nobr><a name="bm_V"></a><a name="subkey_V{"></a>v <a href="../boolean_operations.htm"><b>1</b></a> <a href="../primitives.htm"><b>2</b></a> <a href="../transformation_operations.htm"><b>3</b></a> <a href="../repairing_operations.htm"><b>4</b></a> </nobr><br><a href="../newentity_blocks.htm"><b>v1</b></a> <br><a href="../newentity_blocks.htm"><b>v2</b></a> <br><a href="../newentity_blocks.htm"><b>v3</b></a> <br><a href="../newentity_blocks.htm"><b>v4</b></a> <br><nobr><a name="bms_VA"></a><a name="subkey_VA"></a>val <a href="../add_point_on_edge.htm"><b>1</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>2</b></a> </nobr><br><nobr>valid <a href="../files/salome2_sp3_measuregui_functions.htm"><b>1</b></a> <a href="../measurement_tools.htm"><b>2</b></a> <a href="../repairing_operations.htm"><b>3</b></a> </nobr><br><a href="../files/salome2_sp3_measuregui_functions.htm"><b>validity</b></a> <br><nobr>value <a href="../chamfer.htm"><b>1</b></a> <a href="../add_point_on_edge.htm"><b>2</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>3</b></a> <a href="../extrusion.htm"><b>4</b></a> <a href="../close_contour.htm"><b>5</b></a> <a href="../glue_faces.htm"><b>6</b></a> <a href="../fillet.htm"><b>7</b></a> <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>8</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>9</b></a> <a href="../files/salome2_sp3_primitivegui_functions.htm"><b>10</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>11</b></a> <a href="../files/salome2_sp3_generationgui_functions.htm"><b>12</b></a> <a href="../plane.htm"><b>13</b></a> <a href="../offset_surface.htm"><b>14</b></a> <a href="../multi_translation.htm"><b>15</b></a> <a href="../multi_rotation.htm"><b>16</b></a> <a href="../sphere.htm"><b>17</b></a> <a href="../sketcher.htm"><b>18</b></a> <a href="../sewing.htm"><b>19</b></a> <a href="../revolution.htm"><b>20</b></a> </nobr><br><nobr>values <a href="../changing_displaying_parameters.htm"><b>1</b></a> <a href="../box.htm"><b>2</b></a> <a href="../archimede.htm"><b>3</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>4</b></a> <a href="../cylinder.htm"><b>5</b></a> <a href="../cone.htm"><b>6</b></a> <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>7</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>8</b></a> <a href="../files/salome2_sp3_primitivegui_functions.htm"><b>9</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>10</b></a> <a href="../files/salome2_sp3_measuregui_functions.htm"><b>11</b></a> <a href="../multi_translation.htm"><b>12</b></a> <a href="../measurement_tools.htm"><b>13</b></a> <a href="../local_coordinate_system.htm"><b>14</b></a> <a href="../shape_processing.htm"><b>15</b></a> <a href="../repairing_operations.htm"><b>16</b></a> <a href="../vector.htm"><b>17</b></a> <a href="../turus.htm"><b>18</b></a> <a href="../translation.htm"><b>19</b></a> </nobr><br><a href="../explode.htm"><b>variety</b></a> <br><nobr>various <a href="../files/salome2_sp3_repairgui_functions.htm"><b>1</b></a> <a href="../shape_processing.htm"><b>2</b></a> </nobr><br><nobr><a name="bms_VE"></a><a name="subkey_VE"></a>vector <a href="../circle.htm"><b>1</b></a> <a href="../boolean_operations.htm"><b>2</b></a> <a href="../basic_operations.htm"><b>3</b></a> <a href="../basic_geometrical_objects.htm"><b>4</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>5</b></a> <a href="../extrusion.htm"><b>6</b></a> <a href="../ellipse.htm"><b>7</b></a> <a href="../cylinder.htm"><b>8</b></a> <a href="../cone.htm"><b>9</b></a> <a href="../complex_objects.htm"><b>10</b></a> <a href="../geometrical_objects.htm"><b>11</b></a> <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>12</b></a> <a href="../files/salome2_sp3_primitivegui_functions.htm"><b>13</b></a> <a href="../files/salome2_sp3_generationgui_functions.htm"><b>14</b></a> <a href="../primitives.htm"><b>15</b></a> <a href="../plane.htm"><b>16</b></a> <a href="../multi_translation.htm"><b>17</b></a> <a href="../multi_rotation.htm"><b>18</b></a> <a href="../mirror_image.htm"><b>19</b></a> <a href="../local_coordinate_system.htm"><b>20</b></a> <a href="../line.htm"><b>21</b></a> <a href="../transformation_operations.htm"><b>22</b></a> <a href="../sketcher_tui.htm"><b>23</b></a> <a href="../sketcher.htm"><b>24</b></a> <a href="../rotation.htm"><b>25</b></a> <a href="../revolution.htm"><b>26</b></a> <a href="../repairing_operations.htm"><b>27</b></a> <a href="../vector.htm"><b>28</b></a> <a href="../turus.htm"><b>29</b></a> <a href="../translation.htm"><b>30</b></a> </nobr><br><nobr>vector_arc <a href="../basic_geometrical_objects.htm"><b>1</b></a> <a href="../sketcher_tui.htm"><b>2</b></a> </nobr><br><nobr>vector1 <a href="../basic_geometrical_objects.htm"><b>1</b></a> <a href="../complex_objects.htm"><b>2</b></a> </nobr><br><a href="../complex_objects.htm"><b>vector1_arc1</b></a> <br><a href="../complex_objects.htm"><b>vector1_arc2</b></a> <br><nobr>vector2 <a href="../basic_geometrical_objects.htm"><b>1</b></a> <a href="../complex_objects.htm"><b>2</b></a> </nobr><br><a href="../complex_objects.htm"><b>vector2_arc1</b></a> <br><a href="../complex_objects.htm"><b>vector2_arc2</b></a> <br><a href="../complex_objects.htm"><b>vector3</b></a> <br><nobr>vectors <a href="../basic_geometrical_objects.htm"><b>1</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>2</b></a> <a href="../complex_objects.htm"><b>3</b></a> <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>4</b></a> <a href="../multi_translation.htm"><b>5</b></a> <a href="../transformation_operations.htm"><b>6</b></a> <a href="../repairing_operations.htm"><b>7</b></a> <a href="../working_plane.htm"><b>8</b></a> </nobr><br><nobr>vertex <a href="../circle.htm"><b>1</b></a> <a href="../boolean_operations.htm"><b>2</b></a> <a href="../basic_operations.htm"><b>3</b></a> <a href="../basic_geometrical_objects.htm"><b>4</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>5</b></a> <a href="../extrusion.htm"><b>6</b></a> <a href="../ellipse.htm"><b>7</b></a> <a href="../edge.htm"><b>8</b></a> <a href="../cylinder.htm"><b>9</b></a> <a href="../cone.htm"><b>10</b></a> <a href="../complex_objects.htm"><b>11</b></a> <a href="../close_contour.htm"><b>12</b></a> <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>13</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>14</b></a> <a href="../files/salome2_sp3_primitivegui_functions.htm"><b>15</b></a> <a href="../files/salome2_sp3_measuregui_functions.htm"><b>16</b></a> <a href="../files/salome2_sp3_generationgui_functions.htm"><b>17</b></a> <a href="../files/salome2_sp3_buildgui_functions.htm"><b>18</b></a> <a href="../primitives.htm"><b>19</b></a> <a href="../point.htm"><b>20</b></a> <a href="../plane.htm"><b>21</b></a> <a href="../pipe_creation.htm"><b>22</b></a> <a href="../mirror_image.htm"><b>23</b></a> <a href="../measurement_tools.htm"><b>24</b></a> <a href="../transformation_operations.htm"><b>25</b></a> <a href="../sphere.htm"><b>26</b></a> <a href="../scale_transform.htm"><b>27</b></a> <a href="../revolution.htm"><b>28</b></a> <a href="../repairing_operations.htm"><b>29</b></a> <a href="../turus.htm"><b>30</b></a> </nobr><br><a href="../point.htm"><b>vertex_n</b></a> <br><nobr>vertex1 <a href="../edge.htm"><b>1</b></a> <a href="../files/salome2_sp3_buildgui_functions.htm"><b>2</b></a> </nobr><br><nobr>vertex2 <a href="../edge.htm"><b>1</b></a> <a href="../files/salome2_sp3_buildgui_functions.htm"><b>2</b></a> </nobr><br><a href="../files/salome2_sp3_measuregui_functions.htm"><b>vertexmaxtol</b></a> <br><a href="../files/salome2_sp3_measuregui_functions.htm"><b>vertexmintol</b></a> <br><nobr>vertices <a href="../building_by_blocks.htm"><b>1</b></a> <a href="../box.htm"><b>2</b></a> <a href="../blocks_operations.htm"><b>3</b></a> <a href="../basic_geometrical_objects.htm"><b>4</b></a> <a href="../arc.htm"><b>5</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>6</b></a> <a href="../explode.htm"><b>7</b></a> <a href="../edge.htm"><b>8</b></a> <a href="../complex_objects.htm"><b>9</b></a> <a href="../close_contour.htm"><b>10</b></a> <a href="../groups.htm"><b>11</b></a> <a href="../geometrical_objects.htm"><b>12</b></a> <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>13</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>14</b></a> <a href="../files/salome2_sp3_primitivegui_functions.htm"><b>15</b></a> <a href="../files/salome2_sp3_buildgui_functions.htm"><b>16</b></a> <a href="../primitives.htm"><b>17</b></a> <a href="../newentity_blocks.htm"><b>18</b></a> <a href="../line.htm"><b>19</b></a> <a href="../transformation_operations.htm"><b>20</b></a> <a href="../sketcher_tui.htm"><b>21</b></a> <a href="../repairing_operations.htm"><b>22</b></a> <a href="../vector.htm"><b>23</b></a> <a href="../translation.htm"><b>24</b></a> </nobr><br><nobr><a name="bms_VI"></a><a name="subkey_VI"></a>via <a href="../box.htm"><b>1</b></a> <a href="../extrusion.htm"><b>2</b></a> <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>3</b></a> <a href="../newentity_blocks.htm"><b>4</b></a> <a href="../line.htm"><b>5</b></a> <a href="../sphere.htm"><b>6</b></a> <a href="../sketcher.htm"><b>7</b></a> <a href="../working_with_groups.htm"><b>8</b></a> </nobr><br><a href="../files/salome2_sp3_displaygui_functions.htm"><b>view</b></a> <br><nobr>viewer <a href="../changing_displaying_parameters.htm"><b>1</b></a> <a href="../chamfer.htm"><b>2</b></a> <a href="../add_point_on_edge.htm"><b>3</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>4</b></a> <a href="../close_contour.htm"><b>5</b></a> <a href="../fillet.htm"><b>6</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>7</b></a> <a href="../files/salome2_sp3_measuregui_functions.htm"><b>8</b></a> <a href="../files/salome2_sp3_displaygui_functions.htm"><b>9</b></a> <a href="../local_coordinate_system.htm"><b>10</b></a> <a href="../suppress_internal_wires.htm"><b>11</b></a> <a href="../suppress_holes.htm"><b>12</b></a> <a href="../suppress_faces.htm"><b>13</b></a> <a href="../working_with_groups.htm"><b>14</b></a> <a href="../wire.htm"><b>15</b></a> </nobr><br><a href="../files/salome2_sp3_displaygui_functions.htm"><b>viewers</b></a> <br><a href="../files/salome2_sp3_displaygui_functions.htm"><b>visibility</b></a> <br><nobr>visualization <a href="../changing_displaying_parameters.htm"><b>1</b></a> <a href="../files/salome2_sp3_displaygui_functions.htm"><b>2</b></a> </nobr><br><br><br></p><p class="ftsbody" align="center"><a href="whlstf14.htm" target="_self" title="previous search group"><b>>></b></a>\r
+<nobr><a name="bm_T"></a><a name="subkey_T{"></a>t <a href="../box.htm"><b>1</b></a> <a href="../extrusion.htm"><b>2</b></a> <a href="../groups.htm"><b>3</b></a> <a href="../sphere.htm"><b>4</b></a> </nobr><br><a name="bms_TA"></a><a name="subkey_TA"></a><a href="../sketcher.htm"><b>tangent</b></a> <br><nobr>target <a href="../explode_on_blocks.htm"><b>1</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>2</b></a> <a href="../sketcher.htm"><b>3</b></a> </nobr><br><a name="bms_TE"></a><a name="subkey_TE"></a><a href="../newentity_blocks.htm"><b>tetrahedral</b></a> <br><nobr>textual <a href="../sketcher_tui.htm"><b>1</b></a> <a href="../sketcher.htm"><b>2</b></a> </nobr><br><nobr><a name="bms_TH"></a><a name="subkey_TH"></a>theendlcs <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>1</b></a> <a href="../modify_the_location.htm"><b>2</b></a> </nobr><br><nobr>them <a href="../box.htm"><b>1</b></a> <a href="../explode.htm"><b>2</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>3</b></a> <a href="../suppress_faces.htm"><b>4</b></a> <a href="../shape_processing.htm"><b>5</b></a> <a href="../working_with_groups.htm"><b>6</b></a> <a href="../wire.htm"><b>7</b></a> </nobr><br><nobr>theobject <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>1</b></a> <a href="../modify_the_location.htm"><b>2</b></a> </nobr><br><a href="../sketcher.htm"><b>therefore</b></a> <br><nobr>theshape <a href="../glue_faces.htm"><b>1</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>2</b></a> <a href="../repairing_operations.htm"><b>3</b></a> </nobr><br><nobr>thestartlcs <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>1</b></a> <a href="../modify_the_location.htm"><b>2</b></a> </nobr><br><nobr>thetolerance <a href="../glue_faces.htm"><b>1</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>2</b></a> </nobr><br><a href="../box.htm"><b>third</b></a> <br><nobr>three <a href="../circle.htm"><b>1</b></a> <a href="../basic_geometrical_objects.htm"><b>2</b></a> <a href="../arc.htm"><b>3</b></a> <a href="../curve.htm"><b>4</b></a> <a href="../complex_objects.htm"><b>5</b></a> <a href="../geometrical_objects.htm"><b>6</b></a> <a href="../point.htm"><b>7</b></a> <a href="../plane.htm"><b>8</b></a> <a href="../mirror_image.htm"><b>9</b></a> <a href="../local_coordinate_system.htm"><b>10</b></a> <a href="../sketcher_tui.htm"><b>11</b></a> <a href="../working_plane.htm"><b>12</b></a> <a href="../transformation_operations.htm"><b>13</b></a> </nobr><br><a href="../transparency.htm"><b>thus</b></a> <br><nobr><a name="bms_TI"></a><a name="subkey_TI"></a>time <a href="../curve.htm"><b>1</b></a> <a href="../point.htm"><b>2</b></a> </nobr><br><nobr>times <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>1</b></a> <a href="../multi_translation.htm"><b>2</b></a> <a href="../multi_rotation.htm"><b>3</b></a> <a href="../transformation_operations.htm"><b>4</b></a> </nobr><br><nobr><a name="bms_TO"></a><a name="subkey_TO"></a>tobezier <a href="../files/salome2_sp3_repairgui_functions.htm"><b>1</b></a> <a href="../shape_processing.htm"><b>2</b></a> </nobr><br><a href="../working_with_groups.htm"><b>together</b></a> <br><nobr>tol2d <a href="../complex_objects.htm"><b>1</b></a> <a href="../filling.htm"><b>2</b></a> <a href="../files/salome2_sp3_generationgui_functions.htm"><b>3</b></a> </nobr><br><nobr>tol3d <a href="../complex_objects.htm"><b>1</b></a> <a href="../filling.htm"><b>2</b></a> <a href="../files/salome2_sp3_generationgui_functions.htm"><b>3</b></a> </nobr><br><a href="../measurement_tools.htm"><b>toler</b></a> <br><nobr>tolerance <a href="../close_contour.htm"><b>1</b></a> <a href="../glue_faces.htm"><b>2</b></a> <a href="../filling.htm"><b>3</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>4</b></a> <a href="../files/salome2_sp3_measuregui_functions.htm"><b>5</b></a> <a href="../files/salome2_sp3_generationgui_functions.htm"><b>6</b></a> <a href="../measurement_tools.htm"><b>7</b></a> <a href="../shape_processing.htm"><b>8</b></a> <a href="../repairing_operations.htm"><b>9</b></a> </nobr><br><nobr>tolerance2d <a href="../files/salome2_sp3_repairgui_functions.htm"><b>1</b></a> <a href="../shape_processing.htm"><b>2</b></a> </nobr><br><nobr>tolerance3d <a href="../files/salome2_sp3_repairgui_functions.htm"><b>1</b></a> <a href="../shape_processing.htm"><b>2</b></a> <a href="../repairing_operations.htm"><b>3</b></a> </nobr><br><a href="../files/salome2_sp3_measuregui_functions.htm"><b>tolerances</b></a> <br><a href="../partition.htm"><b>tool</b></a> <br><nobr>tools <a href="../files/salome2_sp3_measuregui_functions.htm"><b>1</b></a> <a href="../measurement_tools.htm"><b>2</b></a> </nobr><br><a href="../blocks_operations.htm"><b>top_face</b></a> <br><a href="../blocks_operations.htm"><b>top_face_ind</b></a> <br><nobr>torus <a href="../files/salome2_sp3_primitivegui_functions.htm"><b>1</b></a> <a href="../primitives.htm"><b>2</b></a> <a href="../turus.htm"><b>3</b></a> </nobr><br><a href="../primitives.htm"><b>torus1</b></a> <br><a href="../primitives.htm"><b>torus2</b></a> <br><a href="../primitives.htm"><b>toruses</b></a> <br><a name="bms_TR"></a><a name="subkey_TR"></a><a href="../transformation_operations.htm"><b>tr1d</b></a> <br><a href="../transformation_operations.htm"><b>tr2d</b></a> <br><nobr>transform <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>1</b></a> <a href="../scale_transform.htm"><b>2</b></a> <a href="../transformation_operations.htm"><b>3</b></a> </nobr><br><a href="../blocks_operations.htm"><b>transformate</b></a> <br><nobr>transformation <a href="../chamfer.htm"><b>1</b></a> <a href="../blocks_operations.htm"><b>2</b></a> <a href="../blocks.htm"><b>3</b></a> <a href="../fillet.htm"><b>4</b></a> <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>5</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>6</b></a> <a href="../offset_surface.htm"><b>7</b></a> <a href="../multi_translation.htm"><b>8</b></a> <a href="../multi_transformation.htm"><b>9</b></a> <a href="../multi_rotation.htm"><b>10</b></a> <a href="../modify_the_location.htm"><b>11</b></a> <a href="../mirror_image.htm"><b>12</b></a> <a href="../scale_transform.htm"><b>13</b></a> <a href="../rotation.htm"><b>14</b></a> <a href="../translation.htm"><b>15</b></a> <a href="../transformation_operations.htm"><b>16</b></a> </nobr><br><nobr>transformations <a href="../files/introduction_to_geom.htm"><b>1</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>2</b></a> <a href="../multi_transformation.htm"><b>3</b></a> </nobr><br><nobr>transformed <a href="../blocks_operations.htm"><b>1</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>2</b></a> <a href="../multi_transformation.htm"><b>3</b></a> </nobr><br><a href="../common.htm"><b>transforms</b></a> <br><nobr>translate <a href="../translation.htm"><b>1</b></a> <a href="../transformation_operations.htm"><b>2</b></a> </nobr><br><nobr>translated <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>1</b></a> <a href="../multi_translation.htm"><b>2</b></a> <a href="../translation.htm"><b>3</b></a> </nobr><br><nobr>translates <a href="../offset_surface.htm"><b>1</b></a> <a href="../multi_rotation.htm"><b>2</b></a> </nobr><br><nobr>translation <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>1</b></a> <a href="../multi_translation.htm"><b>2</b></a> <a href="../multi_transformation.htm"><b>3</b></a> <a href="../multi_rotation.htm"><b>4</b></a> <a href="../translation.htm"><b>5</b></a> <a href="../transformation_operations.htm"><b>6</b></a> </nobr><br><a href="../transformation_operations.htm"><b>translation1</b></a> <br><a href="../transformation_operations.htm"><b>translation2</b></a> <br><a href="../transformation_operations.htm"><b>translation3</b></a> <br><nobr>translations <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>1</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>2</b></a> <a href="../multi_translation.htm"><b>3</b></a> <a href="../multi_transformation.htm"><b>4</b></a> <a href="../transformation_operations.htm"><b>5</b></a> </nobr><br><nobr>transparency <a href="../changing_displaying_parameters.htm"><b>1</b></a> <a href="../changing_display_parameters.htm"><b>2</b></a> <a href="../transparency.htm"><b>3</b></a> </nobr><br><nobr>transparent <a href="../wireframe_and_shading.htm"><b>1</b></a> <a href="../transparency.htm"><b>2</b></a> </nobr><br><a href="../files/salome2_sp3_basicgui_functions.htm"><b>trihedron</b></a> <br><nobr>trimsize <a href="../basic_operations.htm"><b>1</b></a> <a href="../basic_geometrical_objects.htm"><b>2</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>3</b></a> <a href="../plane.htm"><b>4</b></a> </nobr><br><nobr>true <a href="../add_point_on_edge.htm"><b>1</b></a> <a href="../close_contour.htm"><b>2</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>3</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>4</b></a> <a href="../files/salome2_sp3_measuregui_functions.htm"><b>5</b></a> <a href="../partition.htm"><b>6</b></a> <a href="../repairing_operations.htm"><b>7</b></a> </nobr><br><a href="../cone.htm"><b>truncated</b></a> <br><a href="../face.htm"><b>try</b></a> <br><br><br></p><p class="ftsbody" align="center"><a href="whlstf14.htm" target="_self" title="previous search group"><b>>></b></a>\r
\r
</body>\r
\r
<body marginheight="0" marginwidth="0" bgproperties="fixed">\r
<p class="ftsbody" align="center"><a href="whlstf13.htm" target="_self" title="previous search group"><b><<</b></a><br><br></p>\r
<p class="ftsbody" >\r
-<nobr><a name="bms_VO"></a><a name="subkey_VO"></a>volume <a href="../files/salome2_sp3_measuregui_functions.htm"><b>1</b></a> <a href="../measurement_tools.htm"><b>2</b></a> </nobr><br><a name="bms_VR"></a><a name="subkey_VR"></a><a href="../transformation_operations.htm"><b>vr</b></a> <br><a href="../transformation_operations.htm"><b>vrot1d</b></a> <br><a name="bms_VT"></a><a name="subkey_VT"></a><a href="../transformation_operations.htm"><b>vt</b></a> <br><a href="../files/salome2_sp3_displaygui_functions.htm"><b>vtk</b></a> <br><a href="../transformation_operations.htm"><b>vtr1d</b></a> <br><a href="../transformation_operations.htm"><b>vtr2d</b></a> <br><a name="bms_VX"></a><a name="subkey_VX"></a><a href="../sketcher.htm"><b>vx</b></a> <br><nobr>vxy <a href="../basic_geometrical_objects.htm"><b>1</b></a> <a href="../complex_objects.htm"><b>2</b></a> <a href="../geometrical_objects.htm"><b>3</b></a> <a href="../transformation_operations.htm"><b>4</b></a> <a href="../repairing_operations.htm"><b>5</b></a> </nobr><br><a href="../basic_operations.htm"><b>vxyz</b></a> <br><a name="bms_VZ"></a><a name="subkey_VZ"></a><a href="../transformation_operations.htm"><b>vz</b></a> <br>\r
+<nobr><a name="bms_TT"></a><a name="subkey_TT"></a>tt <a href="../geometrical_objects.htm"><b>1</b></a> <a href="../sketcher_tui.htm"><b>2</b></a> </nobr><br><nobr><a name="bms_TU"></a><a name="subkey_TU"></a>tui <a href="../circle.htm"><b>1</b></a> <a href="../check_free_faces.htm"><b>2</b></a> <a href="../check_free_boundaries.htm"><b>3</b></a> <a href="../changing_displaying_parameters.htm"><b>4</b></a> <a href="../chamfer.htm"><b>5</b></a> <a href="../box.htm"><b>6</b></a> <a href="../archimede.htm"><b>7</b></a> <a href="../arc.htm"><b>8</b></a> <a href="../add_point_on_edge.htm"><b>9</b></a> <a href="../face.htm"><b>10</b></a> <a href="../extrusion.htm"><b>11</b></a> <a href="../explode_on_blocks.htm"><b>12</b></a> <a href="../explode.htm"><b>13</b></a> <a href="../ellipse.htm"><b>14</b></a> <a href="../edge.htm"><b>15</b></a> <a href="../cylinder.htm"><b>16</b></a> <a href="../cut.htm"><b>17</b></a> <a href="../curve.htm"><b>18</b></a> <a href="../cone.htm"><b>19</b></a> <a href="../compound.htm"><b>20</b></a> <a href="../common.htm"><b>21</b></a> <a href="../color.htm"><b>22</b></a> <a href="../close_contour.htm"><b>23</b></a> <a href="../glue_faces.htm"><b>24</b></a> <a href="../fuse.htm"><b>25</b></a> <a href="../filling.htm"><b>26</b></a> <a href="../fillet.htm"><b>27</b></a> <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>28</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>29</b></a> <a href="../files/salome2_sp3_primitivegui_functions.htm"><b>30</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>31</b></a> <a href="../files/salome2_sp3_measuregui_functions.htm"><b>32</b></a> <a href="../files/salome2_sp3_generationgui_functions.htm"><b>33</b></a> <a href="../files/salome2_sp3_displaygui_functions.htm"><b>34</b></a> <a href="../files/salome2_sp3_buildgui_functions.htm"><b>35</b></a> <a href="../files/salome2_sp3_booleangui_functions.htm"><b>36</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>37</b></a> <a href="../point.htm"><b>38</b></a> <a href="../plane.htm"><b>39</b></a> <a href="../pipe_creation.htm"><b>40</b></a> <a href="../partition.htm"><b>41</b></a> <a href="../offset_surface.htm"><b>42</b></a> <a href="../newentity_blocks.htm"><b>43</b></a> <a href="../multi_translation.htm"><b>44</b></a> <a href="../multi_transformation.htm"><b>45</b></a> <a href="../multi_rotation.htm"><b>46</b></a> <a href="../modify_the_location.htm"><b>47</b></a> <a href="../mirror_image.htm"><b>48</b></a> <a href="../local_coordinate_system.htm"><b>49</b></a> <a href="../line.htm"><b>50</b></a> <a href="../suppress_holes.htm"><b>51</b></a> <a href="../suppress_faces.htm"><b>52</b></a> <a href="../sphere.htm"><b>53</b></a> <a href="../solid.htm"><b>54</b></a> <a href="../sketcher.htm"><b>55</b></a> <a href="../shell.htm"><b>56</b></a> <a href="../shape_processing.htm"><b>57</b></a> <a href="../sewing.htm"><b>58</b></a> <a href="../section.htm"><b>59</b></a> <a href="../scale_transform.htm"><b>60</b></a> <a href="../rotation.htm"><b>61</b></a> <a href="../revolution.htm"><b>62</b></a> <a href="../propagate.htm"><b>63</b></a> <a href="../working_with_groups.htm"><b>64</b></a> <a href="../wireframe_and_shading.htm"><b>65</b></a> <a href="../wire.htm"><b>66</b></a> <a href="../vector.htm"><b>67</b></a> <a href="../turus.htm"><b>68</b></a> <a href="../transparency.htm"><b>69</b></a> <a href="../translation.htm"><b>70</b></a> <a href="../suppress_internal_wires.htm"><b>71</b></a> </nobr><br><a href="../files/salome2_sp3_measuregui_functions.htm"><b>tuple</b></a> <br><nobr><a name="bms_TW"></a><a name="subkey_TW"></a>two <a href="../check_free_faces.htm"><b>1</b></a> <a href="../chamfer.htm"><b>2</b></a> <a href="../building_by_blocks.htm"><b>3</b></a> <a href="../box.htm"><b>4</b></a> <a href="../basic_operations.htm"><b>5</b></a> <a href="../basic_geometrical_objects.htm"><b>6</b></a> <a href="../add_point_on_edge.htm"><b>7</b></a> <a href="../edge.htm"><b>8</b></a> <a href="../cone.htm"><b>9</b></a> <a href="../complex_objects.htm"><b>10</b></a> <a href="../common.htm"><b>11</b></a> <a href="../glue_faces.htm"><b>12</b></a> <a href="../geometrical_objects.htm"><b>13</b></a> <a href="../fuse.htm"><b>14</b></a> <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>15</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>16</b></a> <a href="../files/salome2_sp3_primitivegui_functions.htm"><b>17</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>18</b></a> <a href="../files/salome2_sp3_measuregui_functions.htm"><b>19</b></a> <a href="../partition.htm"><b>20</b></a> <a href="../newentity_blocks.htm"><b>21</b></a> <a href="../multi_translation.htm"><b>22</b></a> <a href="../multi_transformation.htm"><b>23</b></a> <a href="../multi_rotation.htm"><b>24</b></a> <a href="../modify_the_location.htm"><b>25</b></a> <a href="../groups.htm"><b>26</b></a> <a href="../sphere.htm"><b>27</b></a> <a href="../sketcher_tui.htm"><b>28</b></a> <a href="../working_with_groups.htm"><b>29</b></a> <a href="../working_plane.htm"><b>30</b></a> <a href="../turus.htm"><b>31</b></a> <a href="../transformation_operations.htm"><b>32</b></a> </nobr><br><nobr><a name="bms_TY"></a><a name="subkey_TY"></a>type <a href="../explode_on_blocks.htm"><b>1</b></a> <a href="../explode.htm"><b>2</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>3</b></a> <a href="../files/salome2_sp3_measuregui_functions.htm"><b>4</b></a> <a href="../files/salome2_sp3_buildgui_functions.htm"><b>5</b></a> <a href="../files/salome2_sp3_booleangui_functions.htm"><b>6</b></a> <a href="../partition.htm"><b>7</b></a> <a href="../sketcher.htm"><b>8</b></a> <a href="../working_with_groups.htm"><b>9</b></a> </nobr><br><a href="../files/salome2_sp3_buildgui_functions.htm"><b>typeofshape</b></a> <br><nobr>types <a href="../curve.htm"><b>1</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>2</b></a> <a href="../files/salome2_sp3_primitivegui_functions.htm"><b>3</b></a> <a href="../sketcher.htm"><b>4</b></a> <a href="../shape_processing.htm"><b>5</b></a> </nobr><br>\r
<br><br>\r
-<a name="bm_W"></a><a name="subkey_W{"></a><a href="../repairing_operations.htm"><b>w_0</b></a> <br><nobr><a name="bms_WA"></a><a name="subkey_WA"></a>wantplanarface <a href="../files/salome2_sp3_buildgui_functions.htm"><b>1</b></a> <a href="../repairing_operations.htm"><b>2</b></a> </nobr><br><nobr>water <a href="../archimede.htm"><b>1</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>2</b></a> </nobr><br><nobr>waterdensity <a href="../basic_operations.htm"><b>1</b></a> <a href="../archimede.htm"><b>2</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>3</b></a> </nobr><br><nobr>way <a href="../box.htm"><b>1</b></a> <a href="../extrusion.htm"><b>2</b></a> <a href="../multi_rotation.htm"><b>3</b></a> <a href="../line.htm"><b>4</b></a> <a href="../sphere.htm"><b>5</b></a> </nobr><br><nobr>ways <a href="../explode.htm"><b>1</b></a> <a href="../mirror_image.htm"><b>2</b></a> </nobr><br><nobr><a name="bms_WE"></a><a name="subkey_WE"></a>weight <a href="../basic_operations.htm"><b>1</b></a> <a href="../archimede.htm"><b>2</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>3</b></a> </nobr><br><a name="bms_WF"></a><a name="subkey_WF"></a><a href="../sketcher_tui.htm"><b>wf</b></a> <br><a name="bms_WH"></a><a name="subkey_WH"></a><a href="../measurement_tools.htm"><b>what</b></a> <br><nobr>whatis <a href="../files/salome2_sp3_measuregui_functions.htm"><b>1</b></a> <a href="../measurement_tools.htm"><b>2</b></a> </nobr><br><a href="../files/salome2_sp3_measuregui_functions.htm"><b>whether</b></a> <br><nobr>while <a href="../check_free_boundaries.htm"><b>1</b></a> <a href="../complex_objects.htm"><b>2</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>3</b></a> <a href="../measurement_tools.htm"><b>4</b></a> </nobr><br><nobr>whose <a href="../face.htm"><b>1</b></a> <a href="../files/salome2_sp3_measuregui_functions.htm"><b>2</b></a> <a href="../files/salome2_sp3_buildgui_functions.htm"><b>3</b></a> </nobr><br><a name="bms_WI"></a><a name="subkey_WI"></a><a href="../files/introduction_to_geom.htm"><b>wide</b></a> <br><nobr>will <a href="../circle.htm"><b>1</b></a> <a href="../chamfer.htm"><b>2</b></a> <a href="../box.htm"><b>3</b></a> <a href="../archimede.htm"><b>4</b></a> <a href="../arc.htm"><b>5</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>6</b></a> <a href="../face.htm"><b>7</b></a> <a href="../extrusion.htm"><b>8</b></a> <a href="../explode_on_blocks.htm"><b>9</b></a> <a href="../explode.htm"><b>10</b></a> <a href="../ellipse.htm"><b>11</b></a> <a href="../edge.htm"><b>12</b></a> <a href="../cylinder.htm"><b>13</b></a> <a href="../cut.htm"><b>14</b></a> <a href="../curve.htm"><b>15</b></a> <a href="../cone.htm"><b>16</b></a> <a href="../compound.htm"><b>17</b></a> <a href="../common.htm"><b>18</b></a> <a href="../fuse.htm"><b>19</b></a> <a href="../filling.htm"><b>20</b></a> <a href="../fillet.htm"><b>21</b></a> <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>22</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>23</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>24</b></a> <a href="../files/salome2_sp3_geomtoolsgui_functions.htm"><b>25</b></a> <a href="../propagate.htm"><b>26</b></a> <a href="../point.htm"><b>27</b></a> <a href="../plane.htm"><b>28</b></a> <a href="../pipe_creation.htm"><b>29</b></a> <a href="../partition.htm"><b>30</b></a> <a href="../offset_surface.htm"><b>31</b></a> <a href="../multi_translation.htm"><b>32</b></a> <a href="../multi_transformation.htm"><b>33</b></a> <a href="../multi_rotation.htm"><b>34</b></a> <a href="../modify_the_location.htm"><b>35</b></a> <a href="../mirror_image.htm"><b>36</b></a> <a href="../line.htm"><b>37</b></a> <a href="../sphere.htm"><b>38</b></a> <a href="../solid.htm"><b>39</b></a> <a href="../sketcher.htm"><b>40</b></a> <a href="../shell.htm"><b>41</b></a> <a href="../shape_processing.htm"><b>42</b></a> <a href="../section.htm"><b>43</b></a> <a href="../scale_transform.htm"><b>44</b></a> <a href="../rotation.htm"><b>45</b></a> <a href="../revolution.htm"><b>46</b></a> <a href="../wire.htm"><b>47</b></a> <a href="../vector.htm"><b>48</b></a> <a href="../turus.htm"><b>49</b></a> <a href="../translation.htm"><b>50</b></a> </nobr><br><nobr>wire <a href="../basic_geometrical_objects.htm"><b>1</b></a> <a href="../face.htm"><b>2</b></a> <a href="../extrusion.htm"><b>3</b></a> <a href="../complex_objects.htm"><b>4</b></a> <a href="../close_contour.htm"><b>5</b></a> <a href="../geometrical_objects.htm"><b>6</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>7</b></a> <a href="../files/salome2_sp3_generationgui_functions.htm"><b>8</b></a> <a href="../files/salome2_sp3_buildgui_functions.htm"><b>9</b></a> <a href="../pipe_creation.htm"><b>10</b></a> <a href="../transformation_operations.htm"><b>11</b></a> <a href="../suppress_holes.htm"><b>12</b></a> <a href="../sketcher_tui.htm"><b>13</b></a> <a href="../sketcher.htm"><b>14</b></a> <a href="../revolution.htm"><b>15</b></a> <a href="../repairing_operations.htm"><b>16</b></a> <a href="../wire.htm"><b>17</b></a> </nobr><br><a href="../repairing_operations.htm"><b>wire_close</b></a> <br><a href="../repairing_operations.htm"><b>wire_name</b></a> <br><a href="../complex_objects.htm"><b>wire1</b></a> <br><a href="../complex_objects.htm"><b>wire2</b></a> <br><a href="../changing_displaying_parameters.htm"><b>wireframe</b></a> <br><nobr>wires <a href="../check_free_boundaries.htm"><b>1</b></a> <a href="../face.htm"><b>2</b></a> <a href="../explode.htm"><b>3</b></a> <a href="../complex_objects.htm"><b>4</b></a> <a href="../close_contour.htm"><b>5</b></a> <a href="../geometrical_objects.htm"><b>6</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>7</b></a> <a href="../files/salome2_sp3_buildgui_functions.htm"><b>8</b></a> <a href="../newentity_blocks.htm"><b>9</b></a> <a href="../measurement_tools.htm"><b>10</b></a> <a href="../suppress_internal_wires.htm"><b>11</b></a> <a href="../suppress_holes.htm"><b>12</b></a> <a href="../repairing_operations.htm"><b>13</b></a> <a href="../wire.htm"><b>14</b></a> </nobr><br><nobr>wish <a href="../explode.htm"><b>1</b></a> <a href="../files/salome2_sp3_geomtoolsgui_functions.htm"><b>2</b></a> </nobr><br><nobr>within <a href="../changing_displaying_parameters.htm"><b>1</b></a> <a href="../close_contour.htm"><b>2</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>3</b></a> </nobr><br><a href="../repairing_operations.htm"><b>without</b></a> <br><nobr><a name="bms_WO"></a><a name="subkey_WO"></a>work <a href="../files/salome2_sp3_repairgui_functions.htm"><b>1</b></a> <a href="../files/salome2_sp3_displaygui_functions.htm"><b>2</b></a> <a href="../shape_processing.htm"><b>3</b></a> </nobr><br><nobr>working <a href="../files/salome2_sp3_basicgui_functions.htm"><b>1</b></a> <a href="../sketcher.htm"><b>2</b></a> <a href="../working_with_groups.htm"><b>3</b></a> <a href="../working_plane.htm"><b>4</b></a> </nobr><br><a href="../sketcher.htm"><b>workingplane</b></a> <br><a href="../multi_rotation.htm"><b>works</b></a> <br><nobr><a name="bms_WW"></a><a name="subkey_WW"></a>ww <a href="../geometrical_objects.htm"><b>1</b></a> <a href="../sketcher_tui.htm"><b>2</b></a> </nobr><br>\r
+<nobr><a name="bm_U"></a><a name="subkey_UN"></a>underlying <a href="../close_contour.htm"><b>1</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>2</b></a> </nobr><br><a href="../groups.htm"><b>unionlist</b></a> <br><nobr><a name="bms_UP"></a><a name="subkey_UP"></a>up <a href="../changing_displaying_parameters.htm"><b>1</b></a> <a href="../color.htm"><b>2</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>3</b></a> <a href="../files/salome2_sp3_displaygui_functions.htm"><b>4</b></a> <a href="../wireframe_and_shading.htm"><b>5</b></a> </nobr><br><a href="../files/salome2_sp3_basicgui_functions.htm"><b>updated</b></a> <br><nobr>updateobjbrowser <a href="../blocks_operations.htm"><b>1</b></a> <a href="../groups.htm"><b>2</b></a> <a href="../repairing_operations.htm"><b>3</b></a> </nobr><br><nobr>upper <a href="../cone.htm"><b>1</b></a> <a href="../files/salome2_sp3_primitivegui_functions.htm"><b>2</b></a> </nobr><br><nobr><a name="bms_US"></a><a name="subkey_US"></a>used <a href="../files/salome2_sp3_repairgui_functions.htm"><b>1</b></a> <a href="../files/salome2_sp3_generationgui_functions.htm"><b>2</b></a> <a href="../files/salome2_sp3_booleangui_functions.htm"><b>3</b></a> <a href="../sketcher.htm"><b>4</b></a> </nobr><br><nobr>useful <a href="../circle.htm"><b>1</b></a> <a href="../check_free_faces.htm"><b>2</b></a> <a href="../check_free_boundaries.htm"><b>3</b></a> <a href="../chamfer.htm"><b>4</b></a> <a href="../box.htm"><b>5</b></a> <a href="../archimede.htm"><b>6</b></a> <a href="../arc.htm"><b>7</b></a> <a href="../add_point_on_edge.htm"><b>8</b></a> <a href="../face.htm"><b>9</b></a> <a href="../extrusion.htm"><b>10</b></a> <a href="../explode_on_blocks.htm"><b>11</b></a> <a href="../ellipse.htm"><b>12</b></a> <a href="../edge.htm"><b>13</b></a> <a href="../cylinder.htm"><b>14</b></a> <a href="../cut.htm"><b>15</b></a> <a href="../curve.htm"><b>16</b></a> <a href="../cone.htm"><b>17</b></a> <a href="../compound.htm"><b>18</b></a> <a href="../common.htm"><b>19</b></a> <a href="../color.htm"><b>20</b></a> <a href="../close_contour.htm"><b>21</b></a> <a href="../glue_faces.htm"><b>22</b></a> <a href="../fuse.htm"><b>23</b></a> <a href="../filling.htm"><b>24</b></a> <a href="../fillet.htm"><b>25</b></a> <a href="../files/salome2_sp3_booleangui_functions.htm"><b>26</b></a> <a href="../point.htm"><b>27</b></a> <a href="../plane.htm"><b>28</b></a> <a href="../pipe_creation.htm"><b>29</b></a> <a href="../partition.htm"><b>30</b></a> <a href="../offset_surface.htm"><b>31</b></a> <a href="../newentity_blocks.htm"><b>32</b></a> <a href="../multi_translation.htm"><b>33</b></a> <a href="../multi_transformation.htm"><b>34</b></a> <a href="../multi_rotation.htm"><b>35</b></a> <a href="../modify_the_location.htm"><b>36</b></a> <a href="../mirror_image.htm"><b>37</b></a> <a href="../line.htm"><b>38</b></a> <a href="../suppress_holes.htm"><b>39</b></a> <a href="../suppress_faces.htm"><b>40</b></a> <a href="../sphere.htm"><b>41</b></a> <a href="../solid.htm"><b>42</b></a> <a href="../sketcher.htm"><b>43</b></a> <a href="../shell.htm"><b>44</b></a> <a href="../shape_processing.htm"><b>45</b></a> <a href="../sewing.htm"><b>46</b></a> <a href="../section.htm"><b>47</b></a> <a href="../scale_transform.htm"><b>48</b></a> <a href="../rotation.htm"><b>49</b></a> <a href="../revolution.htm"><b>50</b></a> <a href="../propagate.htm"><b>51</b></a> <a href="../working_with_groups.htm"><b>52</b></a> <a href="../wireframe_and_shading.htm"><b>53</b></a> <a href="../wire.htm"><b>54</b></a> <a href="../vector.htm"><b>55</b></a> <a href="../turus.htm"><b>56</b></a> <a href="../transparency.htm"><b>57</b></a> <a href="../translation.htm"><b>58</b></a> <a href="../suppress_internal_wires.htm"><b>59</b></a> </nobr><br><nobr>user <a href="../explode_on_blocks.htm"><b>1</b></a> <a href="../close_contour.htm"><b>2</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>3</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>4</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>5</b></a> <a href="../multi_transformation.htm"><b>6</b></a> <a href="../suppress_internal_wires.htm"><b>7</b></a> </nobr><br><nobr>using <a href="../archimede.htm"><b>1</b></a> <a href="../files/introduction_to_geom.htm"><b>2</b></a> <a href="../explode.htm"><b>3</b></a> <a href="../filling.htm"><b>4</b></a> <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>5</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>6</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>7</b></a> <a href="../files/salome2_sp3_measuregui_functions.htm"><b>8</b></a> <a href="../files/salome2_sp3_generationgui_functions.htm"><b>9</b></a> <a href="../files/salome2_sp3_displaygui_functions.htm"><b>10</b></a> <a href="../files/salome2_sp3_buildgui_functions.htm"><b>11</b></a> <a href="../files/salome2_sp3_booleangui_functions.htm"><b>12</b></a> <a href="../newentity_blocks.htm"><b>13</b></a> <a href="../modify_the_location.htm"><b>14</b></a> <a href="../shape_processing.htm"><b>15</b></a> <a href="../working_with_groups.htm"><b>16</b></a> <a href="../transparency.htm"><b>17</b></a> </nobr><br>\r
<br><br>\r
-<nobr><a name="bm_X"></a><a name="subkey_X{"></a>x <a href="../box.htm"><b>1</b></a> <a href="../basic_geometrical_objects.htm"><b>2</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>3</b></a> <a href="../ellipse.htm"><b>4</b></a> <a href="../files/salome2_sp3_measuregui_functions.htm"><b>5</b></a> <a href="../point.htm"><b>6</b></a> <a href="../local_coordinate_system.htm"><b>7</b></a> <a href="../sphere.htm"><b>8</b></a> <a href="../sketcher.htm"><b>9</b></a> </nobr><br><nobr>x1 <a href="../box.htm"><b>1</b></a> <a href="../files/salome2_sp3_primitivegui_functions.htm"><b>2</b></a> </nobr><br><nobr>x2 <a href="../box.htm"><b>1</b></a> <a href="../files/salome2_sp3_primitivegui_functions.htm"><b>2</b></a> </nobr><br><nobr><a name="bms_XD"></a><a name="subkey_XD"></a>xdx <a href="../files/salome2_sp3_basicgui_functions.htm"><b>1</b></a> <a href="../local_coordinate_system.htm"><b>2</b></a> </nobr><br><nobr>xdy <a href="../files/salome2_sp3_basicgui_functions.htm"><b>1</b></a> <a href="../local_coordinate_system.htm"><b>2</b></a> </nobr><br><nobr>xdz <a href="../files/salome2_sp3_basicgui_functions.htm"><b>1</b></a> <a href="../local_coordinate_system.htm"><b>2</b></a> </nobr><br><nobr><a name="bms_XM"></a><a name="subkey_XM"></a>xmax <a href="../files/salome2_sp3_measuregui_functions.htm"><b>1</b></a> <a href="../measurement_tools.htm"><b>2</b></a> </nobr><br><nobr>xmin <a href="../files/salome2_sp3_measuregui_functions.htm"><b>1</b></a> <a href="../measurement_tools.htm"><b>2</b></a> </nobr><br><a name="bms_XO"></a><a name="subkey_XO"></a><a href="../sketcher.htm"><b>xoy</b></a> <br><nobr><a name="bms_XY"></a><a name="subkey_XY"></a>xyz <a href="../files/salome2_sp3_basicgui_functions.htm"><b>1</b></a> <a href="../working_plane.htm"><b>2</b></a> </nobr><br><a name="bms_XZ"></a><a name="subkey_XZ"></a><a href="../blocks_operations.htm"><b>xz_face</b></a> <br><a href="../blocks_operations.htm"><b>xz_face_ind</b></a> <br>\r
-<br><br>\r
-<nobr><a name="bm_Y"></a><a name="subkey_Y{"></a>y <a href="../box.htm"><b>1</b></a> <a href="../basic_geometrical_objects.htm"><b>2</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>3</b></a> <a href="../ellipse.htm"><b>4</b></a> <a href="../files/salome2_sp3_measuregui_functions.htm"><b>5</b></a> <a href="../point.htm"><b>6</b></a> <a href="../local_coordinate_system.htm"><b>7</b></a> <a href="../sphere.htm"><b>8</b></a> <a href="../sketcher.htm"><b>9</b></a> </nobr><br><nobr>y1 <a href="../box.htm"><b>1</b></a> <a href="../files/salome2_sp3_primitivegui_functions.htm"><b>2</b></a> </nobr><br><nobr>y2 <a href="../box.htm"><b>1</b></a> <a href="../files/salome2_sp3_primitivegui_functions.htm"><b>2</b></a> </nobr><br><nobr><a name="bms_YD"></a><a name="subkey_YD"></a>ydx <a href="../files/salome2_sp3_basicgui_functions.htm"><b>1</b></a> <a href="../local_coordinate_system.htm"><b>2</b></a> </nobr><br><nobr>ydy <a href="../files/salome2_sp3_basicgui_functions.htm"><b>1</b></a> <a href="../local_coordinate_system.htm"><b>2</b></a> </nobr><br><nobr>ydz <a href="../files/salome2_sp3_basicgui_functions.htm"><b>1</b></a> <a href="../local_coordinate_system.htm"><b>2</b></a> </nobr><br><nobr><a name="bms_YM"></a><a name="subkey_YM"></a>ymax <a href="../files/salome2_sp3_measuregui_functions.htm"><b>1</b></a> <a href="../measurement_tools.htm"><b>2</b></a> </nobr><br><nobr>ymin <a href="../files/salome2_sp3_measuregui_functions.htm"><b>1</b></a> <a href="../measurement_tools.htm"><b>2</b></a> </nobr><br><nobr><a name="bms_YO"></a><a name="subkey_YO"></a>your <a href="../filling.htm"><b>1</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>2</b></a> <a href="../files/salome2_sp3_measuregui_functions.htm"><b>3</b></a> <a href="../files/salome2_sp3_geomtoolsgui_functions.htm"><b>4</b></a> <a href="../suppress_holes.htm"><b>5</b></a> <a href="../sewing.htm"><b>6</b></a> <a href="../working_with_groups.htm"><b>7</b></a> <a href="../working_plane.htm"><b>8</b></a> </nobr><br><a name="bms_YZ"></a><a name="subkey_YZ"></a><a href="../blocks_operations.htm"><b>yz_face</b></a> <br><a href="../blocks_operations.htm"><b>yz_face_ind</b></a> <br>\r
-<br><br>\r
-<nobr><a name="bm_Z"></a><a name="subkey_Z{"></a>z <a href="../box.htm"><b>1</b></a> <a href="../basic_geometrical_objects.htm"><b>2</b></a> <a href="../archimede.htm"><b>3</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>4</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>5</b></a> <a href="../files/salome2_sp3_measuregui_functions.htm"><b>6</b></a> <a href="../point.htm"><b>7</b></a> <a href="../local_coordinate_system.htm"><b>8</b></a> <a href="../sphere.htm"><b>9</b></a> </nobr><br><nobr>z1 <a href="../box.htm"><b>1</b></a> <a href="../files/salome2_sp3_primitivegui_functions.htm"><b>2</b></a> </nobr><br><nobr>z2 <a href="../box.htm"><b>1</b></a> <a href="../files/salome2_sp3_primitivegui_functions.htm"><b>2</b></a> </nobr><br><a name="bms_ZE"></a><a name="subkey_ZE"></a><a href="../cone.htm"><b>zero</b></a> <br><nobr><a name="bms_ZM"></a><a name="subkey_ZM"></a>zmax <a href="../files/salome2_sp3_measuregui_functions.htm"><b>1</b></a> <a href="../measurement_tools.htm"><b>2</b></a> </nobr><br><nobr>zmin <a href="../files/salome2_sp3_measuregui_functions.htm"><b>1</b></a> <a href="../measurement_tools.htm"><b>2</b></a> </nobr><br><br><br></p>\r
+<nobr><a name="bm_V"></a><a name="subkey_V{"></a>v <a href="../boolean_operations.htm"><b>1</b></a> <a href="../repairing_operations.htm"><b>2</b></a> <a href="../primitives.htm"><b>3</b></a> <a href="../transformation_operations.htm"><b>4</b></a> </nobr><br><a href="../newentity_blocks.htm"><b>v1</b></a> <br><a href="../newentity_blocks.htm"><b>v2</b></a> <br><a href="../newentity_blocks.htm"><b>v3</b></a> <br><a href="../newentity_blocks.htm"><b>v4</b></a> <br><nobr><a name="bms_VA"></a><a name="subkey_VA"></a>val <a href="../add_point_on_edge.htm"><b>1</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>2</b></a> </nobr><br><nobr>valid <a href="../files/salome2_sp3_measuregui_functions.htm"><b>1</b></a> <a href="../measurement_tools.htm"><b>2</b></a> <a href="../repairing_operations.htm"><b>3</b></a> </nobr><br><a href="../files/salome2_sp3_measuregui_functions.htm"><b>validity</b></a> <br><nobr>value <a href="../chamfer.htm"><b>1</b></a> <a href="../add_point_on_edge.htm"><b>2</b></a> <a href="../extrusion.htm"><b>3</b></a> <a href="../close_contour.htm"><b>4</b></a> <a href="../glue_faces.htm"><b>5</b></a> <a href="../fillet.htm"><b>6</b></a> <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>7</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>8</b></a> <a href="../files/salome2_sp3_primitivegui_functions.htm"><b>9</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>10</b></a> <a href="../files/salome2_sp3_generationgui_functions.htm"><b>11</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>12</b></a> <a href="../plane.htm"><b>13</b></a> <a href="../offset_surface.htm"><b>14</b></a> <a href="../multi_translation.htm"><b>15</b></a> <a href="../multi_rotation.htm"><b>16</b></a> <a href="../sphere.htm"><b>17</b></a> <a href="../sketcher.htm"><b>18</b></a> <a href="../sewing.htm"><b>19</b></a> <a href="../revolution.htm"><b>20</b></a> </nobr><br><nobr>values <a href="../box.htm"><b>1</b></a> <a href="../archimede.htm"><b>2</b></a> <a href="../cylinder.htm"><b>3</b></a> <a href="../cone.htm"><b>4</b></a> <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>5</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>6</b></a> <a href="../files/salome2_sp3_primitivegui_functions.htm"><b>7</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>8</b></a> <a href="../files/salome2_sp3_measuregui_functions.htm"><b>9</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>10</b></a> <a href="../multi_translation.htm"><b>11</b></a> <a href="../measurement_tools.htm"><b>12</b></a> <a href="../local_coordinate_system.htm"><b>13</b></a> <a href="../isos.htm"><b>14</b></a> <a href="../shape_processing.htm"><b>15</b></a> <a href="../repairing_operations.htm"><b>16</b></a> <a href="../vector.htm"><b>17</b></a> <a href="../turus.htm"><b>18</b></a> <a href="../translation.htm"><b>19</b></a> </nobr><br><a href="../explode.htm"><b>variety</b></a> <br><nobr>various <a href="../files/salome2_sp3_repairgui_functions.htm"><b>1</b></a> <a href="../shape_processing.htm"><b>2</b></a> </nobr><br><nobr><a name="bms_VE"></a><a name="subkey_VE"></a>vector <a href="../circle.htm"><b>1</b></a> <a href="../boolean_operations.htm"><b>2</b></a> <a href="../basic_operations.htm"><b>3</b></a> <a href="../basic_geometrical_objects.htm"><b>4</b></a> <a href="../extrusion.htm"><b>5</b></a> <a href="../ellipse.htm"><b>6</b></a> <a href="../cylinder.htm"><b>7</b></a> <a href="../cone.htm"><b>8</b></a> <a href="../complex_objects.htm"><b>9</b></a> <a href="../geometrical_objects.htm"><b>10</b></a> <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>11</b></a> <a href="../files/salome2_sp3_primitivegui_functions.htm"><b>12</b></a> <a href="../files/salome2_sp3_generationgui_functions.htm"><b>13</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>14</b></a> <a href="../plane.htm"><b>15</b></a> <a href="../multi_translation.htm"><b>16</b></a> <a href="../multi_rotation.htm"><b>17</b></a> <a href="../mirror_image.htm"><b>18</b></a> <a href="../local_coordinate_system.htm"><b>19</b></a> <a href="../line.htm"><b>20</b></a> <a href="../sketcher_tui.htm"><b>21</b></a> <a href="../sketcher.htm"><b>22</b></a> <a href="../rotation.htm"><b>23</b></a> <a href="../revolution.htm"><b>24</b></a> <a href="../repairing_operations.htm"><b>25</b></a> <a href="../primitives.htm"><b>26</b></a> <a href="../vector.htm"><b>27</b></a> <a href="../turus.htm"><b>28</b></a> <a href="../translation.htm"><b>29</b></a> <a href="../transformation_operations.htm"><b>30</b></a> </nobr><br><nobr>vector_arc <a href="../basic_geometrical_objects.htm"><b>1</b></a> <a href="../sketcher_tui.htm"><b>2</b></a> </nobr><br><nobr>vector1 <a href="../basic_geometrical_objects.htm"><b>1</b></a> <a href="../complex_objects.htm"><b>2</b></a> </nobr><br><a href="../complex_objects.htm"><b>vector1_arc1</b></a> <br><a href="../complex_objects.htm"><b>vector1_arc2</b></a> <br><nobr>vector2 <a href="../basic_geometrical_objects.htm"><b>1</b></a> <a href="../complex_objects.htm"><b>2</b></a> </nobr><br><a href="../complex_objects.htm"><b>vector2_arc1</b></a> <br><a href="../complex_objects.htm"><b>vector2_arc2</b></a> <br><a href="../complex_objects.htm"><b>vector3</b></a> <br><nobr>vectors <a href="../basic_geometrical_objects.htm"><b>1</b></a> <a href="../complex_objects.htm"><b>2</b></a> <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>3</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>4</b></a> <a href="../multi_translation.htm"><b>5</b></a> <a href="../repairing_operations.htm"><b>6</b></a> <a href="../working_plane.htm"><b>7</b></a> <a href="../transformation_operations.htm"><b>8</b></a> </nobr><br><nobr>vertex <a href="../circle.htm"><b>1</b></a> <a href="../boolean_operations.htm"><b>2</b></a> <a href="../basic_operations.htm"><b>3</b></a> <a href="../basic_geometrical_objects.htm"><b>4</b></a> <a href="../extrusion.htm"><b>5</b></a> <a href="../ellipse.htm"><b>6</b></a> <a href="../edge.htm"><b>7</b></a> <a href="../cylinder.htm"><b>8</b></a> <a href="../cone.htm"><b>9</b></a> <a href="../complex_objects.htm"><b>10</b></a> <a href="../close_contour.htm"><b>11</b></a> <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>12</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>13</b></a> <a href="../files/salome2_sp3_primitivegui_functions.htm"><b>14</b></a> <a href="../files/salome2_sp3_measuregui_functions.htm"><b>15</b></a> <a href="../files/salome2_sp3_generationgui_functions.htm"><b>16</b></a> <a href="../files/salome2_sp3_buildgui_functions.htm"><b>17</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>18</b></a> <a href="../point.htm"><b>19</b></a> <a href="../plane.htm"><b>20</b></a> <a href="../pipe_creation.htm"><b>21</b></a> <a href="../mirror_image.htm"><b>22</b></a> <a href="../measurement_tools.htm"><b>23</b></a> <a href="../sphere.htm"><b>24</b></a> <a href="../scale_transform.htm"><b>25</b></a> <a href="../revolution.htm"><b>26</b></a> <a href="../repairing_operations.htm"><b>27</b></a> <a href="../primitives.htm"><b>28</b></a> <a href="../turus.htm"><b>29</b></a> <a href="../transformation_operations.htm"><b>30</b></a> </nobr><br><a href="../point.htm"><b>vertex_n</b></a> <br><nobr>vertex1 <a href="../edge.htm"><b>1</b></a> <a href="../files/salome2_sp3_buildgui_functions.htm"><b>2</b></a> </nobr><br><nobr>vertex2 <a href="../edge.htm"><b>1</b></a> <a href="../files/salome2_sp3_buildgui_functions.htm"><b>2</b></a> </nobr><br><a href="../files/salome2_sp3_measuregui_functions.htm"><b>vertexmaxtol</b></a> <br><a href="../files/salome2_sp3_measuregui_functions.htm"><b>vertexmintol</b></a> <br><nobr>vertices <a href="../building_by_blocks.htm"><b>1</b></a> <a href="../box.htm"><b>2</b></a> <a href="../blocks_operations.htm"><b>3</b></a> <a href="../basic_geometrical_objects.htm"><b>4</b></a> <a href="../arc.htm"><b>5</b></a> <a href="../explode.htm"><b>6</b></a> <a href="../edge.htm"><b>7</b></a> <a href="../complex_objects.htm"><b>8</b></a> <a href="../close_contour.htm"><b>9</b></a> <a href="../geometrical_objects.htm"><b>10</b></a> <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>11</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>12</b></a> <a href="../files/salome2_sp3_primitivegui_functions.htm"><b>13</b></a> <a href="../files/salome2_sp3_buildgui_functions.htm"><b>14</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>15</b></a> <a href="../newentity_blocks.htm"><b>16</b></a> <a href="../line.htm"><b>17</b></a> <a href="../groups.htm"><b>18</b></a> <a href="../sketcher_tui.htm"><b>19</b></a> <a href="../repairing_operations.htm"><b>20</b></a> <a href="../primitives.htm"><b>21</b></a> <a href="../vector.htm"><b>22</b></a> <a href="../translation.htm"><b>23</b></a> <a href="../transformation_operations.htm"><b>24</b></a> </nobr><br><nobr><a name="bms_VI"></a><a name="subkey_VI"></a>via <a href="../box.htm"><b>1</b></a> <a href="../face.htm"><b>2</b></a> <a href="../extrusion.htm"><b>3</b></a> <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>4</b></a> <a href="../files/salome2_sp3_geomtoolsgui_functions.htm"><b>5</b></a> <a href="../newentity_blocks.htm"><b>6</b></a> <a href="../line.htm"><b>7</b></a> <a href="../sphere.htm"><b>8</b></a> <a href="../sketcher.htm"><b>9</b></a> </nobr><br><a href="../files/salome2_sp3_displaygui_functions.htm"><b>view</b></a> <br><nobr>viewer <a href="../changing_displaying_parameters.htm"><b>1</b></a> <a href="../chamfer.htm"><b>2</b></a> <a href="../add_point_on_edge.htm"><b>3</b></a> <a href="../close_contour.htm"><b>4</b></a> <a href="../fillet.htm"><b>5</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>6</b></a> <a href="../files/salome2_sp3_measuregui_functions.htm"><b>7</b></a> <a href="../files/salome2_sp3_displaygui_functions.htm"><b>8</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>9</b></a> <a href="../local_coordinate_system.htm"><b>10</b></a> <a href="../suppress_holes.htm"><b>11</b></a> <a href="../suppress_faces.htm"><b>12</b></a> <a href="../working_with_groups.htm"><b>13</b></a> <a href="../wireframe_and_shading.htm"><b>14</b></a> <a href="../wire.htm"><b>15</b></a> <a href="../suppress_internal_wires.htm"><b>16</b></a> </nobr><br><a href="../files/salome2_sp3_displaygui_functions.htm"><b>viewers</b></a> <br><nobr>viewing <a href="../changing_displaying_parameters.htm"><b>1</b></a> <a href="../wireframe_and_shading.htm"><b>2</b></a> </nobr><br><a href="../files/salome2_sp3_displaygui_functions.htm"><b>visibility</b></a> <br><nobr>visualization <a href="../changing_displaying_parameters.htm"><b>1</b></a> <a href="../files/salome2_sp3_displaygui_functions.htm"><b>2</b></a> </nobr><br><br><br></p><p class="ftsbody" align="center"><a href="whlstf15.htm" target="_self" title="previous search group"><b>>></b></a>\r
+\r
</body>\r
\r
</html>\r
--- /dev/null
+<html>\r
+<head>\r
+<title>Search Words List</title>\r
+\r
+<meta name="generator" content="RoboHelp by eHelp Corporation www.ehelp.com">\r
+<meta name="description" content="WebHelp 5.50">\r
+<base target="bsscright">\r
+<style>\r
+<!--\r
+body {margin-left:1pt; margin-top:1pt; margin-right:1pt;font-family:Arial; font-size:9pt;}\r
+\r
+A:link {font-family:Arial; font-size:9pt; color:#000000; font-style:normal; text-decoration:none; }\r
+A:visited {font-family:Arial; font-size:9pt; color:#000000; font-style:normal; text-decoration:none; }\r
+A:active {background-color:#cccccc;}\r
+A:hover {font-family:Arial; font-size:9pt; color:#007f00; font-style:normal; text-decoration:underline; }\r
+\r
+.tabs {background-color:#c0c0c0;}\r
+.ftsheader {margin-left:10pt; margin-top:0pt;}\r
+.ftsbody {margin-left:10pt; margin-top:0pt;}\r
+.inactive {color:#666666;}\r
+.ftsheader {background-color:White; } \r
+\r
+body {background-color:White; } \r
+p {color:Black; } p {font-family:Tahoma; } p {font-size:8pt; } p {font-style:Normal; } p {text-decoration:none; } \r
+A:link {color:Black; } A:link {font-family:Tahoma; } A:link {font-size:8pt; } A:link {font-style:Normal; } A:link {text-decoration:none; } \r
+A:visited {color:Black; } A:visited {font-family:Tahoma; } A:visited {font-size:8pt; } A:visited {font-style:Normal; } A:visited {text-decoration:none; } \r
+A:active {background-color:Silver; } \r
+A:hover {color:Navy; } A:hover {font-family:Tahoma; } A:hover {font-size:8pt; } A:hover {font-style:Normal; } A:hover {text-decoration:underline; } \r
+\r
+-->\r
+</style>\r
+</head>\r
+<body marginheight="0" marginwidth="0" bgproperties="fixed">\r
+<p class="ftsbody" align="center"><a href="whlstf14.htm" target="_self" title="previous search group"><b><<</b></a><br><br></p>\r
+<p class="ftsbody" >\r
+<nobr><a name="bms_VO"></a><a name="subkey_VO"></a>volume <a href="../files/salome2_sp3_measuregui_functions.htm"><b>1</b></a> <a href="../measurement_tools.htm"><b>2</b></a> </nobr><br><a name="bms_VR"></a><a name="subkey_VR"></a><a href="../transformation_operations.htm"><b>vr</b></a> <br><a href="../transformation_operations.htm"><b>vrot1d</b></a> <br><a name="bms_VT"></a><a name="subkey_VT"></a><a href="../transformation_operations.htm"><b>vt</b></a> <br><a href="../files/salome2_sp3_displaygui_functions.htm"><b>vtk</b></a> <br><a href="../transformation_operations.htm"><b>vtr1d</b></a> <br><a href="../transformation_operations.htm"><b>vtr2d</b></a> <br><nobr><a name="bms_VX"></a><a name="subkey_VX"></a>vxy <a href="../basic_geometrical_objects.htm"><b>1</b></a> <a href="../complex_objects.htm"><b>2</b></a> <a href="../geometrical_objects.htm"><b>3</b></a> <a href="../repairing_operations.htm"><b>4</b></a> <a href="../transformation_operations.htm"><b>5</b></a> </nobr><br><a href="../basic_operations.htm"><b>vxyz</b></a> <br><a name="bms_VZ"></a><a name="subkey_VZ"></a><a href="../transformation_operations.htm"><b>vz</b></a> <br>\r
+<br><br>\r
+<a name="bm_W"></a><a name="subkey_W{"></a><a href="../repairing_operations.htm"><b>w_0</b></a> <br><nobr><a name="bms_WA"></a><a name="subkey_WA"></a>wantplanarface <a href="../files/salome2_sp3_buildgui_functions.htm"><b>1</b></a> <a href="../repairing_operations.htm"><b>2</b></a> </nobr><br><nobr>water <a href="../archimede.htm"><b>1</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>2</b></a> </nobr><br><nobr>waterdensity <a href="../basic_operations.htm"><b>1</b></a> <a href="../archimede.htm"><b>2</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>3</b></a> </nobr><br><nobr>way <a href="../box.htm"><b>1</b></a> <a href="../extrusion.htm"><b>2</b></a> <a href="../multi_rotation.htm"><b>3</b></a> <a href="../line.htm"><b>4</b></a> <a href="../sphere.htm"><b>5</b></a> <a href="../working_with_groups.htm"><b>6</b></a> </nobr><br><nobr>ways <a href="../explode.htm"><b>1</b></a> <a href="../mirror_image.htm"><b>2</b></a> <a href="../working_with_groups.htm"><b>3</b></a> </nobr><br><nobr><a name="bms_WE"></a><a name="subkey_WE"></a>weight <a href="../basic_operations.htm"><b>1</b></a> <a href="../archimede.htm"><b>2</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>3</b></a> </nobr><br><a name="bms_WF"></a><a name="subkey_WF"></a><a href="../sketcher_tui.htm"><b>wf</b></a> <br><a name="bms_WH"></a><a name="subkey_WH"></a><a href="../measurement_tools.htm"><b>what</b></a> <br><nobr>whatis <a href="../files/salome2_sp3_measuregui_functions.htm"><b>1</b></a> <a href="../measurement_tools.htm"><b>2</b></a> </nobr><br><a href="../files/salome2_sp3_measuregui_functions.htm"><b>whether</b></a> <br><nobr>while <a href="../check_free_boundaries.htm"><b>1</b></a> <a href="../complex_objects.htm"><b>2</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>3</b></a> <a href="../measurement_tools.htm"><b>4</b></a> <a href="../wireframe_and_shading.htm"><b>5</b></a> </nobr><br><nobr>whose <a href="../face.htm"><b>1</b></a> <a href="../files/salome2_sp3_measuregui_functions.htm"><b>2</b></a> <a href="../files/salome2_sp3_buildgui_functions.htm"><b>3</b></a> </nobr><br><a name="bms_WI"></a><a name="subkey_WI"></a><a href="../files/introduction_to_geom.htm"><b>wide</b></a> <br><nobr>will <a href="../circle.htm"><b>1</b></a> <a href="../chamfer.htm"><b>2</b></a> <a href="../box.htm"><b>3</b></a> <a href="../archimede.htm"><b>4</b></a> <a href="../arc.htm"><b>5</b></a> <a href="../face.htm"><b>6</b></a> <a href="../extrusion.htm"><b>7</b></a> <a href="../explode_on_blocks.htm"><b>8</b></a> <a href="../explode.htm"><b>9</b></a> <a href="../ellipse.htm"><b>10</b></a> <a href="../edge.htm"><b>11</b></a> <a href="../cylinder.htm"><b>12</b></a> <a href="../cut.htm"><b>13</b></a> <a href="../curve.htm"><b>14</b></a> <a href="../cone.htm"><b>15</b></a> <a href="../compound.htm"><b>16</b></a> <a href="../common.htm"><b>17</b></a> <a href="../fuse.htm"><b>18</b></a> <a href="../filling.htm"><b>19</b></a> <a href="../fillet.htm"><b>20</b></a> <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>21</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>22</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>23</b></a> <a href="../files/salome2_sp3_geomtoolsgui_functions.htm"><b>24</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>25</b></a> <a href="../point.htm"><b>26</b></a> <a href="../plane.htm"><b>27</b></a> <a href="../pipe_creation.htm"><b>28</b></a> <a href="../partition.htm"><b>29</b></a> <a href="../offset_surface.htm"><b>30</b></a> <a href="../newentity_blocks.htm"><b>31</b></a> <a href="../multi_translation.htm"><b>32</b></a> <a href="../multi_transformation.htm"><b>33</b></a> <a href="../multi_rotation.htm"><b>34</b></a> <a href="../modify_the_location.htm"><b>35</b></a> <a href="../mirror_image.htm"><b>36</b></a> <a href="../local_coordinate_system.htm"><b>37</b></a> <a href="../line.htm"><b>38</b></a> <a href="../sphere.htm"><b>39</b></a> <a href="../solid.htm"><b>40</b></a> <a href="../sketcher.htm"><b>41</b></a> <a href="../shell.htm"><b>42</b></a> <a href="../shape_processing.htm"><b>43</b></a> <a href="../section.htm"><b>44</b></a> <a href="../scale_transform.htm"><b>45</b></a> <a href="../rotation.htm"><b>46</b></a> <a href="../revolution.htm"><b>47</b></a> <a href="../propagate.htm"><b>48</b></a> <a href="../working_with_groups.htm"><b>49</b></a> <a href="../wire.htm"><b>50</b></a> <a href="../vector.htm"><b>51</b></a> <a href="../turus.htm"><b>52</b></a> <a href="../translation.htm"><b>53</b></a> </nobr><br><nobr>wire <a href="../basic_geometrical_objects.htm"><b>1</b></a> <a href="../face.htm"><b>2</b></a> <a href="../extrusion.htm"><b>3</b></a> <a href="../complex_objects.htm"><b>4</b></a> <a href="../close_contour.htm"><b>5</b></a> <a href="../geometrical_objects.htm"><b>6</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>7</b></a> <a href="../files/salome2_sp3_generationgui_functions.htm"><b>8</b></a> <a href="../files/salome2_sp3_buildgui_functions.htm"><b>9</b></a> <a href="../pipe_creation.htm"><b>10</b></a> <a href="../suppress_holes.htm"><b>11</b></a> <a href="../sketcher_tui.htm"><b>12</b></a> <a href="../sketcher.htm"><b>13</b></a> <a href="../revolution.htm"><b>14</b></a> <a href="../repairing_operations.htm"><b>15</b></a> <a href="../wire.htm"><b>16</b></a> <a href="../transformation_operations.htm"><b>17</b></a> </nobr><br><a href="../repairing_operations.htm"><b>wire_close</b></a> <br><a href="../repairing_operations.htm"><b>wire_name</b></a> <br><a href="../complex_objects.htm"><b>wire1</b></a> <br><a href="../complex_objects.htm"><b>wire2</b></a> <br><nobr>wireframe <a href="../changing_displaying_parameters.htm"><b>1</b></a> <a href="../wireframe_and_shading.htm"><b>2</b></a> </nobr><br><nobr>wires <a href="../check_free_boundaries.htm"><b>1</b></a> <a href="../face.htm"><b>2</b></a> <a href="../explode.htm"><b>3</b></a> <a href="../complex_objects.htm"><b>4</b></a> <a href="../close_contour.htm"><b>5</b></a> <a href="../geometrical_objects.htm"><b>6</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>7</b></a> <a href="../files/salome2_sp3_buildgui_functions.htm"><b>8</b></a> <a href="../newentity_blocks.htm"><b>9</b></a> <a href="../measurement_tools.htm"><b>10</b></a> <a href="../suppress_holes.htm"><b>11</b></a> <a href="../repairing_operations.htm"><b>12</b></a> <a href="../wire.htm"><b>13</b></a> <a href="../suppress_internal_wires.htm"><b>14</b></a> </nobr><br><nobr>wish <a href="../explode.htm"><b>1</b></a> <a href="../files/salome2_sp3_geomtoolsgui_functions.htm"><b>2</b></a> </nobr><br><nobr>within <a href="../close_contour.htm"><b>1</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>2</b></a> <a href="../isos.htm"><b>3</b></a> </nobr><br><a href="../repairing_operations.htm"><b>without</b></a> <br><nobr><a name="bms_WO"></a><a name="subkey_WO"></a>work <a href="../files/salome2_sp3_repairgui_functions.htm"><b>1</b></a> <a href="../files/salome2_sp3_displaygui_functions.htm"><b>2</b></a> <a href="../shape_processing.htm"><b>3</b></a> </nobr><br><nobr>working <a href="../files/introduction_to_geom.htm"><b>1</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>2</b></a> <a href="../sketcher.htm"><b>3</b></a> <a href="../working_with_groups.htm"><b>4</b></a> <a href="../working_plane.htm"><b>5</b></a> </nobr><br><a href="../sketcher.htm"><b>workingplane</b></a> <br><a href="../multi_rotation.htm"><b>works</b></a> <br><nobr><a name="bms_WW"></a><a name="subkey_WW"></a>ww <a href="../geometrical_objects.htm"><b>1</b></a> <a href="../sketcher_tui.htm"><b>2</b></a> </nobr><br>\r
+<br><br>\r
+<nobr><a name="bm_X"></a><a name="subkey_X{"></a>x <a href="../box.htm"><b>1</b></a> <a href="../basic_geometrical_objects.htm"><b>2</b></a> <a href="../ellipse.htm"><b>3</b></a> <a href="../files/salome2_sp3_measuregui_functions.htm"><b>4</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>5</b></a> <a href="../point.htm"><b>6</b></a> <a href="../local_coordinate_system.htm"><b>7</b></a> <a href="../sphere.htm"><b>8</b></a> <a href="../sketcher.htm"><b>9</b></a> </nobr><br><nobr>x1 <a href="../box.htm"><b>1</b></a> <a href="../files/salome2_sp3_primitivegui_functions.htm"><b>2</b></a> </nobr><br><nobr>x2 <a href="../box.htm"><b>1</b></a> <a href="../files/salome2_sp3_primitivegui_functions.htm"><b>2</b></a> </nobr><br><nobr><a name="bms_XD"></a><a name="subkey_XD"></a>xdx <a href="../files/salome2_sp3_basicgui_functions.htm"><b>1</b></a> <a href="../local_coordinate_system.htm"><b>2</b></a> </nobr><br><nobr>xdy <a href="../files/salome2_sp3_basicgui_functions.htm"><b>1</b></a> <a href="../local_coordinate_system.htm"><b>2</b></a> </nobr><br><nobr>xdz <a href="../files/salome2_sp3_basicgui_functions.htm"><b>1</b></a> <a href="../local_coordinate_system.htm"><b>2</b></a> </nobr><br><nobr><a name="bms_XM"></a><a name="subkey_XM"></a>xmax <a href="../files/salome2_sp3_measuregui_functions.htm"><b>1</b></a> <a href="../measurement_tools.htm"><b>2</b></a> </nobr><br><nobr>xmin <a href="../files/salome2_sp3_measuregui_functions.htm"><b>1</b></a> <a href="../measurement_tools.htm"><b>2</b></a> </nobr><br><a name="bms_XO"></a><a name="subkey_XO"></a><a href="../sketcher.htm"><b>xoy</b></a> <br><nobr><a name="bms_XY"></a><a name="subkey_XY"></a>xyz <a href="../files/salome2_sp3_basicgui_functions.htm"><b>1</b></a> <a href="../working_plane.htm"><b>2</b></a> </nobr><br><a name="bms_XZ"></a><a name="subkey_XZ"></a><a href="../blocks_operations.htm"><b>xz_face</b></a> <br><a href="../blocks_operations.htm"><b>xz_face_ind</b></a> <br>\r
+<br><br>\r
+<nobr><a name="bm_Y"></a><a name="subkey_Y{"></a>y <a href="../box.htm"><b>1</b></a> <a href="../basic_geometrical_objects.htm"><b>2</b></a> <a href="../ellipse.htm"><b>3</b></a> <a href="../files/salome2_sp3_measuregui_functions.htm"><b>4</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>5</b></a> <a href="../point.htm"><b>6</b></a> <a href="../local_coordinate_system.htm"><b>7</b></a> <a href="../sphere.htm"><b>8</b></a> <a href="../sketcher.htm"><b>9</b></a> </nobr><br><nobr>y1 <a href="../box.htm"><b>1</b></a> <a href="../files/salome2_sp3_primitivegui_functions.htm"><b>2</b></a> </nobr><br><nobr>y2 <a href="../box.htm"><b>1</b></a> <a href="../files/salome2_sp3_primitivegui_functions.htm"><b>2</b></a> </nobr><br><nobr><a name="bms_YD"></a><a name="subkey_YD"></a>ydx <a href="../files/salome2_sp3_basicgui_functions.htm"><b>1</b></a> <a href="../local_coordinate_system.htm"><b>2</b></a> </nobr><br><nobr>ydy <a href="../files/salome2_sp3_basicgui_functions.htm"><b>1</b></a> <a href="../local_coordinate_system.htm"><b>2</b></a> </nobr><br><nobr>ydz <a href="../files/salome2_sp3_basicgui_functions.htm"><b>1</b></a> <a href="../local_coordinate_system.htm"><b>2</b></a> </nobr><br><nobr><a name="bms_YM"></a><a name="subkey_YM"></a>ymax <a href="../files/salome2_sp3_measuregui_functions.htm"><b>1</b></a> <a href="../measurement_tools.htm"><b>2</b></a> </nobr><br><nobr>ymin <a href="../files/salome2_sp3_measuregui_functions.htm"><b>1</b></a> <a href="../measurement_tools.htm"><b>2</b></a> </nobr><br><nobr><a name="bms_YO"></a><a name="subkey_YO"></a>your <a href="../color.htm"><b>1</b></a> <a href="../filling.htm"><b>2</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>3</b></a> <a href="../files/salome2_sp3_measuregui_functions.htm"><b>4</b></a> <a href="../files/salome2_sp3_geomtoolsgui_functions.htm"><b>5</b></a> <a href="../suppress_holes.htm"><b>6</b></a> <a href="../sewing.htm"><b>7</b></a> <a href="../working_with_groups.htm"><b>8</b></a> <a href="../working_plane.htm"><b>9</b></a> </nobr><br><a href="../local_coordinate_system.htm"><b>yourselves</b></a> <br><a name="bms_YZ"></a><a name="subkey_YZ"></a><a href="../blocks_operations.htm"><b>yz_face</b></a> <br><a href="../blocks_operations.htm"><b>yz_face_ind</b></a> <br>\r
+<br><br>\r
+<nobr><a name="bm_Z"></a><a name="subkey_Z{"></a>z <a href="../box.htm"><b>1</b></a> <a href="../basic_geometrical_objects.htm"><b>2</b></a> <a href="../archimede.htm"><b>3</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>4</b></a> <a href="../files/salome2_sp3_measuregui_functions.htm"><b>5</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>6</b></a> <a href="../point.htm"><b>7</b></a> <a href="../local_coordinate_system.htm"><b>8</b></a> <a href="../sphere.htm"><b>9</b></a> </nobr><br><nobr>z1 <a href="../box.htm"><b>1</b></a> <a href="../files/salome2_sp3_primitivegui_functions.htm"><b>2</b></a> </nobr><br><nobr>z2 <a href="../box.htm"><b>1</b></a> <a href="../files/salome2_sp3_primitivegui_functions.htm"><b>2</b></a> </nobr><br><a name="bms_ZE"></a><a name="subkey_ZE"></a><a href="../cone.htm"><b>zero</b></a> <br><nobr><a name="bms_ZM"></a><a name="subkey_ZM"></a>zmax <a href="../files/salome2_sp3_measuregui_functions.htm"><b>1</b></a> <a href="../measurement_tools.htm"><b>2</b></a> </nobr><br><nobr>zmin <a href="../files/salome2_sp3_measuregui_functions.htm"><b>1</b></a> <a href="../measurement_tools.htm"><b>2</b></a> </nobr><br><br><br></p>\r
+</body>\r
+\r
+</html>\r
+\r
<body marginheight="0" marginwidth="0" bgproperties="fixed">\r
<p class="ftsbody" align="center"><a href="whlstf1.htm" target="_self" title="previous search group"><b><<</b></a><br><br></p>\r
<p class="ftsbody" >\r
-<nobr><a name="bms_CR"></a><a name="subkey_CR"></a>create <a href="../circle.htm"><b>1</b></a> <a href="../chamfer.htm"><b>2</b></a> <a href="../building_by_blocks.htm"><b>3</b></a> <a href="../box.htm"><b>4</b></a> <a href="../boolean_operations.htm"><b>5</b></a> <a href="../blocks_operations.htm"><b>6</b></a> <a href="../basic_operations.htm"><b>7</b></a> <a href="../basic_geometrical_objects.htm"><b>8</b></a> <a href="../arc.htm"><b>9</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>10</b></a> <a href="../face.htm"><b>11</b></a> <a href="../extrusion.htm"><b>12</b></a> <a href="../explode.htm"><b>13</b></a> <a href="../ellipse.htm"><b>14</b></a> <a href="../edge.htm"><b>15</b></a> <a href="../cylinder.htm"><b>16</b></a> <a href="../curve.htm"><b>17</b></a> <a href="../cone.htm"><b>18</b></a> <a href="../compound.htm"><b>19</b></a> <a href="../complex_objects.htm"><b>20</b></a> <a href="../groups.htm"><b>21</b></a> <a href="../geometrical_objects.htm"><b>22</b></a> <a href="../filling.htm"><b>23</b></a> <a href="../fillet.htm"><b>24</b></a> <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>25</b></a> <a href="../files/salome2_sp3_primitivegui_functions.htm"><b>26</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>27</b></a> <a href="../files/salome2_sp3_generationgui_functions.htm"><b>28</b></a> <a href="../files/salome2_sp3_buildgui_functions.htm"><b>29</b></a> <a href="../primitives.htm"><b>30</b></a> <a href="../point.htm"><b>31</b></a> <a href="../plane.htm"><b>32</b></a> <a href="../pipe_creation.htm"><b>33</b></a> <a href="../modify_the_location.htm"><b>34</b></a> <a href="../mirror_image.htm"><b>35</b></a> <a href="../measurement_tools.htm"><b>36</b></a> <a href="../local_coordinate_system.htm"><b>37</b></a> <a href="../line.htm"><b>38</b></a> <a href="../transformation_operations.htm"><b>39</b></a> <a href="../sphere.htm"><b>40</b></a> <a href="../solid.htm"><b>41</b></a> <a href="../sketcher_tui.htm"><b>42</b></a> <a href="../sketcher.htm"><b>43</b></a> <a href="../shell.htm"><b>44</b></a> <a href="../rotation.htm"><b>45</b></a> <a href="../revolution.htm"><b>46</b></a> <a href="../repairing_operations.htm"><b>47</b></a> <a href="../working_with_groups.htm"><b>48</b></a> <a href="../working_plane.htm"><b>49</b></a> <a href="../wire.htm"><b>50</b></a> <a href="../vector.htm"><b>51</b></a> <a href="../turus.htm"><b>52</b></a> <a href="../translation.htm"><b>53</b></a> </nobr><br><nobr>createanddisplaygo <a href="../changing_display_parameters.htm"><b>1</b></a> <a href="../building_by_blocks.htm"><b>2</b></a> <a href="../boolean_operations.htm"><b>3</b></a> <a href="../blocks_operations.htm"><b>4</b></a> <a href="../basic_operations.htm"><b>5</b></a> <a href="../basic_geometrical_objects.htm"><b>6</b></a> <a href="../complex_objects.htm"><b>7</b></a> <a href="../groups.htm"><b>8</b></a> <a href="../geometrical_objects.htm"><b>9</b></a> <a href="../primitives.htm"><b>10</b></a> <a href="../transformation_operations.htm"><b>11</b></a> <a href="../sketcher_tui.htm"><b>12</b></a> <a href="../repairing_operations.htm"><b>13</b></a> </nobr><br><nobr>created <a href="../cone.htm"><b>1</b></a> <a href="../close_contour.htm"><b>2</b></a> <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>3</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>4</b></a> <a href="../files/salome2_sp3_measuregui_functions.htm"><b>5</b></a> <a href="../files/salome2_sp3_displaygui_functions.htm"><b>6</b></a> <a href="../plane.htm"><b>7</b></a> <a href="../newentity_blocks.htm"><b>8</b></a> <a href="../measurement_tools.htm"><b>9</b></a> <a href="../sketcher.htm"><b>10</b></a> <a href="../working_with_groups.htm"><b>11</b></a> </nobr><br><nobr>creategroup <a href="../groups.htm"><b>1</b></a> <a href="../working_with_groups.htm"><b>2</b></a> </nobr><br><nobr>creates <a href="../archimede.htm"><b>1</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>2</b></a> <a href="../face.htm"><b>3</b></a> <a href="../fuse.htm"><b>4</b></a> <a href="../fillet.htm"><b>5</b></a> <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>6</b></a> <a href="../files/salome2_sp3_primitivegui_functions.htm"><b>7</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>8</b></a> <a href="../files/salome2_sp3_measuregui_functions.htm"><b>9</b></a> <a href="../files/salome2_sp3_generationgui_functions.htm"><b>10</b></a> <a href="../files/salome2_sp3_buildgui_functions.htm"><b>11</b></a> <a href="../multi_rotation.htm"><b>12</b></a> <a href="../mirror_image.htm"><b>13</b></a> <a href="../sketcher.htm"><b>14</b></a> <a href="../section.htm"><b>15</b></a> <a href="../scale_transform.htm"><b>16</b></a> <a href="../working_with_groups.htm"><b>17</b></a> </nobr><br><a href="../files/salome2_sp3_basicgui_functions.htm"><b>creating</b></a> <br><nobr>creation <a href="../circle.htm"><b>1</b></a> <a href="../box.htm"><b>2</b></a> <a href="../basic_geometrical_objects.htm"><b>3</b></a> <a href="../arc.htm"><b>4</b></a> <a href="../files/introduction_to_geom.htm"><b>5</b></a> <a href="../face.htm"><b>6</b></a> <a href="../extrusion.htm"><b>7</b></a> <a href="../ellipse.htm"><b>8</b></a> <a href="../edge.htm"><b>9</b></a> <a href="../cylinder.htm"><b>10</b></a> <a href="../curve.htm"><b>11</b></a> <a href="../cone.htm"><b>12</b></a> <a href="../compound.htm"><b>13</b></a> <a href="../complex_objects.htm"><b>14</b></a> <a href="../close_contour.htm"><b>15</b></a> <a href="../groups.htm"><b>16</b></a> <a href="../geometrical_objects.htm"><b>17</b></a> <a href="../filling.htm"><b>18</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>19</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>20</b></a> <a href="../files/salome2_sp3_generationgui_functions.htm"><b>21</b></a> <a href="../primitives.htm"><b>22</b></a> <a href="../point.htm"><b>23</b></a> <a href="../plane.htm"><b>24</b></a> <a href="../pipe_creation.htm"><b>25</b></a> <a href="../line.htm"><b>26</b></a> <a href="../sphere.htm"><b>27</b></a> <a href="../solid.htm"><b>28</b></a> <a href="../shell.htm"><b>29</b></a> <a href="../revolution.htm"><b>30</b></a> <a href="../repairing_operations.htm"><b>31</b></a> <a href="../working_with_groups.htm"><b>32</b></a> <a href="../wire.htm"><b>33</b></a> <a href="../vector.htm"><b>34</b></a> <a href="../turus.htm"><b>35</b></a> </nobr><br><a name="bms_CS"></a><a name="subkey_CS"></a><a href="../transformation_operations.htm"><b>cs1</b></a> <br><a href="../transformation_operations.htm"><b>cs2</b></a> <br><nobr><a name="bms_CU"></a><a name="subkey_CU"></a>current <a href="../files/salome2_sp3_displaygui_functions.htm"><b>1</b></a> <a href="../sketcher.htm"><b>2</b></a> </nobr><br><nobr>currently <a href="../box.htm"><b>1</b></a> <a href="../extrusion.htm"><b>2</b></a> <a href="../line.htm"><b>3</b></a> <a href="../sphere.htm"><b>4</b></a> </nobr><br><nobr>curve <a href="../basic_geometrical_objects.htm"><b>1</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>2</b></a> <a href="../curve.htm"><b>3</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>4</b></a> <a href="../sketcher.htm"><b>5</b></a> <a href="../shape_processing.htm"><b>6</b></a> </nobr><br><nobr>curve2dmode <a href="../files/salome2_sp3_repairgui_functions.htm"><b>1</b></a> <a href="../shape_processing.htm"><b>2</b></a> </nobr><br><nobr>curve3dmode <a href="../files/salome2_sp3_repairgui_functions.htm"><b>1</b></a> <a href="../shape_processing.htm"><b>2</b></a> </nobr><br><nobr>curvecontinuity <a href="../files/salome2_sp3_repairgui_functions.htm"><b>1</b></a> <a href="../shape_processing.htm"><b>2</b></a> </nobr><br><nobr>curves <a href="../basic_geometrical_objects.htm"><b>1</b></a> <a href="../curve.htm"><b>2</b></a> <a href="../filling.htm"><b>3</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>4</b></a> <a href="../files/salome2_sp3_generationgui_functions.htm"><b>5</b></a> <a href="../sketcher.htm"><b>6</b></a> <a href="../shape_processing.htm"><b>7</b></a> </nobr><br><nobr>curving <a href="../filling.htm"><b>1</b></a> <a href="../files/salome2_sp3_generationgui_functions.htm"><b>2</b></a> </nobr><br><nobr>cut <a href="../boolean_operations.htm"><b>1</b></a> <a href="../cut.htm"><b>2</b></a> <a href="../files/salome2_sp3_booleangui_functions.htm"><b>3</b></a> <a href="../repairing_operations.htm"><b>4</b></a> </nobr><br><a href="../repairing_operations.htm"><b>cut_without_f_2</b></a> <br><nobr>cuts <a href="../cut.htm"><b>1</b></a> <a href="../common.htm"><b>2</b></a> </nobr><br><nobr>cutting <a href="../files/salome2_sp3_repairgui_functions.htm"><b>1</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>2</b></a> <a href="../partition.htm"><b>3</b></a> <a href="../shape_processing.htm"><b>4</b></a> </nobr><br><nobr><a name="bms_CY"></a><a name="subkey_CY"></a>cylinder <a href="../boolean_operations.htm"><b>1</b></a> <a href="../cylinder.htm"><b>2</b></a> <a href="../cone.htm"><b>3</b></a> <a href="../files/salome2_sp3_primitivegui_functions.htm"><b>4</b></a> <a href="../primitives.htm"><b>5</b></a> <a href="../transformation_operations.htm"><b>6</b></a> <a href="../repairing_operations.htm"><b>7</b></a> </nobr><br><a href="../complex_objects.htm"><b>cylinders</b></a> <br><nobr>cylindrical <a href="../files/salome2_sp3_repairgui_functions.htm"><b>1</b></a> <a href="../shape_processing.htm"><b>2</b></a> </nobr><br>\r
+<nobr><a name="bms_CR"></a><a name="subkey_CR"></a>create <a href="../circle.htm"><b>1</b></a> <a href="../chamfer.htm"><b>2</b></a> <a href="../building_by_blocks.htm"><b>3</b></a> <a href="../box.htm"><b>4</b></a> <a href="../boolean_operations.htm"><b>5</b></a> <a href="../blocks_operations.htm"><b>6</b></a> <a href="../basic_operations.htm"><b>7</b></a> <a href="../basic_geometrical_objects.htm"><b>8</b></a> <a href="../arc.htm"><b>9</b></a> <a href="../face.htm"><b>10</b></a> <a href="../extrusion.htm"><b>11</b></a> <a href="../explode.htm"><b>12</b></a> <a href="../ellipse.htm"><b>13</b></a> <a href="../edge.htm"><b>14</b></a> <a href="../cylinder.htm"><b>15</b></a> <a href="../curve.htm"><b>16</b></a> <a href="../cone.htm"><b>17</b></a> <a href="../compound.htm"><b>18</b></a> <a href="../complex_objects.htm"><b>19</b></a> <a href="../geometrical_objects.htm"><b>20</b></a> <a href="../filling.htm"><b>21</b></a> <a href="../fillet.htm"><b>22</b></a> <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>23</b></a> <a href="../files/salome2_sp3_primitivegui_functions.htm"><b>24</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>25</b></a> <a href="../files/salome2_sp3_generationgui_functions.htm"><b>26</b></a> <a href="../files/salome2_sp3_buildgui_functions.htm"><b>27</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>28</b></a> <a href="../point.htm"><b>29</b></a> <a href="../plane.htm"><b>30</b></a> <a href="../pipe_creation.htm"><b>31</b></a> <a href="../modify_the_location.htm"><b>32</b></a> <a href="../mirror_image.htm"><b>33</b></a> <a href="../measurement_tools.htm"><b>34</b></a> <a href="../local_coordinate_system.htm"><b>35</b></a> <a href="../line.htm"><b>36</b></a> <a href="../groups.htm"><b>37</b></a> <a href="../sphere.htm"><b>38</b></a> <a href="../solid.htm"><b>39</b></a> <a href="../sketcher_tui.htm"><b>40</b></a> <a href="../sketcher.htm"><b>41</b></a> <a href="../shell.htm"><b>42</b></a> <a href="../rotation.htm"><b>43</b></a> <a href="../revolution.htm"><b>44</b></a> <a href="../repairing_operations.htm"><b>45</b></a> <a href="../primitives.htm"><b>46</b></a> <a href="../working_with_groups.htm"><b>47</b></a> <a href="../working_plane.htm"><b>48</b></a> <a href="../wire.htm"><b>49</b></a> <a href="../vector.htm"><b>50</b></a> <a href="../turus.htm"><b>51</b></a> <a href="../translation.htm"><b>52</b></a> <a href="../transformation_operations.htm"><b>53</b></a> </nobr><br><nobr>createanddisplaygo <a href="../changing_display_parameters.htm"><b>1</b></a> <a href="../building_by_blocks.htm"><b>2</b></a> <a href="../boolean_operations.htm"><b>3</b></a> <a href="../blocks_operations.htm"><b>4</b></a> <a href="../basic_operations.htm"><b>5</b></a> <a href="../basic_geometrical_objects.htm"><b>6</b></a> <a href="../complex_objects.htm"><b>7</b></a> <a href="../geometrical_objects.htm"><b>8</b></a> <a href="../groups.htm"><b>9</b></a> <a href="../sketcher_tui.htm"><b>10</b></a> <a href="../repairing_operations.htm"><b>11</b></a> <a href="../primitives.htm"><b>12</b></a> <a href="../transformation_operations.htm"><b>13</b></a> </nobr><br><nobr>created <a href="../cone.htm"><b>1</b></a> <a href="../close_contour.htm"><b>2</b></a> <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>3</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>4</b></a> <a href="../files/salome2_sp3_measuregui_functions.htm"><b>5</b></a> <a href="../files/salome2_sp3_displaygui_functions.htm"><b>6</b></a> <a href="../plane.htm"><b>7</b></a> <a href="../newentity_blocks.htm"><b>8</b></a> <a href="../measurement_tools.htm"><b>9</b></a> <a href="../sketcher.htm"><b>10</b></a> <a href="../working_with_groups.htm"><b>11</b></a> </nobr><br><nobr>creategroup <a href="../groups.htm"><b>1</b></a> <a href="../working_with_groups.htm"><b>2</b></a> </nobr><br><nobr>creates <a href="../archimede.htm"><b>1</b></a> <a href="../face.htm"><b>2</b></a> <a href="../fuse.htm"><b>3</b></a> <a href="../fillet.htm"><b>4</b></a> <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>5</b></a> <a href="../files/salome2_sp3_primitivegui_functions.htm"><b>6</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>7</b></a> <a href="../files/salome2_sp3_measuregui_functions.htm"><b>8</b></a> <a href="../files/salome2_sp3_generationgui_functions.htm"><b>9</b></a> <a href="../files/salome2_sp3_buildgui_functions.htm"><b>10</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>11</b></a> <a href="../multi_rotation.htm"><b>12</b></a> <a href="../mirror_image.htm"><b>13</b></a> <a href="../sketcher.htm"><b>14</b></a> <a href="../section.htm"><b>15</b></a> <a href="../scale_transform.htm"><b>16</b></a> </nobr><br><a href="../files/salome2_sp3_basicgui_functions.htm"><b>creating</b></a> <br><nobr>creation <a href="../circle.htm"><b>1</b></a> <a href="../box.htm"><b>2</b></a> <a href="../basic_geometrical_objects.htm"><b>3</b></a> <a href="../arc.htm"><b>4</b></a> <a href="../files/introduction_to_geom.htm"><b>5</b></a> <a href="../face.htm"><b>6</b></a> <a href="../extrusion.htm"><b>7</b></a> <a href="../ellipse.htm"><b>8</b></a> <a href="../edge.htm"><b>9</b></a> <a href="../cylinder.htm"><b>10</b></a> <a href="../curve.htm"><b>11</b></a> <a href="../cone.htm"><b>12</b></a> <a href="../compound.htm"><b>13</b></a> <a href="../complex_objects.htm"><b>14</b></a> <a href="../close_contour.htm"><b>15</b></a> <a href="../geometrical_objects.htm"><b>16</b></a> <a href="../filling.htm"><b>17</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>18</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>19</b></a> <a href="../files/salome2_sp3_generationgui_functions.htm"><b>20</b></a> <a href="../point.htm"><b>21</b></a> <a href="../plane.htm"><b>22</b></a> <a href="../pipe_creation.htm"><b>23</b></a> <a href="../line.htm"><b>24</b></a> <a href="../groups.htm"><b>25</b></a> <a href="../sphere.htm"><b>26</b></a> <a href="../solid.htm"><b>27</b></a> <a href="../shell.htm"><b>28</b></a> <a href="../revolution.htm"><b>29</b></a> <a href="../repairing_operations.htm"><b>30</b></a> <a href="../primitives.htm"><b>31</b></a> <a href="../working_with_groups.htm"><b>32</b></a> <a href="../wire.htm"><b>33</b></a> <a href="../vector.htm"><b>34</b></a> <a href="../turus.htm"><b>35</b></a> </nobr><br><a name="bms_CS"></a><a name="subkey_CS"></a><a href="../local_coordinate_system.htm"><b>cs</b></a> <br><a href="../transformation_operations.htm"><b>cs1</b></a> <br><a href="../transformation_operations.htm"><b>cs2</b></a> <br><a name="bms_CU"></a><a name="subkey_CU"></a><a href="../modify_the_location.htm"><b>cube</b></a> <br><nobr>current <a href="../files/salome2_sp3_displaygui_functions.htm"><b>1</b></a> <a href="../sketcher.htm"><b>2</b></a> </nobr><br><nobr>currently <a href="../box.htm"><b>1</b></a> <a href="../extrusion.htm"><b>2</b></a> <a href="../line.htm"><b>3</b></a> <a href="../sphere.htm"><b>4</b></a> </nobr><br><nobr>curve <a href="../basic_geometrical_objects.htm"><b>1</b></a> <a href="../curve.htm"><b>2</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>3</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>4</b></a> <a href="../sketcher.htm"><b>5</b></a> <a href="../shape_processing.htm"><b>6</b></a> </nobr><br><nobr>curve2dmode <a href="../files/salome2_sp3_repairgui_functions.htm"><b>1</b></a> <a href="../shape_processing.htm"><b>2</b></a> </nobr><br><nobr>curve3dmode <a href="../files/salome2_sp3_repairgui_functions.htm"><b>1</b></a> <a href="../shape_processing.htm"><b>2</b></a> </nobr><br><nobr>curvecontinuity <a href="../files/salome2_sp3_repairgui_functions.htm"><b>1</b></a> <a href="../shape_processing.htm"><b>2</b></a> </nobr><br><nobr>curves <a href="../basic_geometrical_objects.htm"><b>1</b></a> <a href="../curve.htm"><b>2</b></a> <a href="../filling.htm"><b>3</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>4</b></a> <a href="../files/salome2_sp3_generationgui_functions.htm"><b>5</b></a> <a href="../sketcher.htm"><b>6</b></a> <a href="../shape_processing.htm"><b>7</b></a> </nobr><br><nobr>curving <a href="../filling.htm"><b>1</b></a> <a href="../files/salome2_sp3_generationgui_functions.htm"><b>2</b></a> </nobr><br><nobr>cut <a href="../boolean_operations.htm"><b>1</b></a> <a href="../cut.htm"><b>2</b></a> <a href="../files/salome2_sp3_booleangui_functions.htm"><b>3</b></a> <a href="../repairing_operations.htm"><b>4</b></a> </nobr><br><a href="../repairing_operations.htm"><b>cut_without_f_2</b></a> <br><nobr>cuts <a href="../cut.htm"><b>1</b></a> <a href="../common.htm"><b>2</b></a> </nobr><br><nobr>cutting <a href="../files/salome2_sp3_repairgui_functions.htm"><b>1</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>2</b></a> <a href="../partition.htm"><b>3</b></a> <a href="../shape_processing.htm"><b>4</b></a> </nobr><br><nobr><a name="bms_CY"></a><a name="subkey_CY"></a>cylinder <a href="../boolean_operations.htm"><b>1</b></a> <a href="../cylinder.htm"><b>2</b></a> <a href="../cone.htm"><b>3</b></a> <a href="../files/salome2_sp3_primitivegui_functions.htm"><b>4</b></a> <a href="../repairing_operations.htm"><b>5</b></a> <a href="../primitives.htm"><b>6</b></a> <a href="../transformation_operations.htm"><b>7</b></a> </nobr><br><a href="../complex_objects.htm"><b>cylinders</b></a> <br><nobr>cylindrical <a href="../files/salome2_sp3_repairgui_functions.htm"><b>1</b></a> <a href="../shape_processing.htm"><b>2</b></a> </nobr><br>\r
<br><br>\r
-<nobr><a name="bm_D"></a><a name="subkey_D{"></a>d <a href="../chamfer.htm"><b>1</b></a> <a href="../repairing_operations.htm"><b>2</b></a> </nobr><br><nobr>d1 <a href="../chamfer.htm"><b>1</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>2</b></a> <a href="../transformation_operations.htm"><b>3</b></a> </nobr><br><nobr>d2 <a href="../chamfer.htm"><b>1</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>2</b></a> <a href="../transformation_operations.htm"><b>3</b></a> </nobr><br><a name="bms_DA"></a><a name="subkey_DA"></a><a href="../files/salome2_sp3_measuregui_functions.htm"><b>data</b></a> <br><nobr><a name="bms_DE"></a><a name="subkey_DE"></a>default <a href="../point.htm"><b>1</b></a> <a href="../sketcher.htm"><b>2</b></a> <a href="../working_with_groups.htm"><b>3</b></a> </nobr><br><nobr>define <a href="../circle.htm"><b>1</b></a> <a href="../chamfer.htm"><b>2</b></a> <a href="../box.htm"><b>3</b></a> <a href="../arc.htm"><b>4</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>5</b></a> <a href="../extrusion.htm"><b>6</b></a> <a href="../explode_on_blocks.htm"><b>7</b></a> <a href="../explode.htm"><b>8</b></a> <a href="../ellipse.htm"><b>9</b></a> <a href="../cylinder.htm"><b>10</b></a> <a href="../curve.htm"><b>11</b></a> <a href="../cone.htm"><b>12</b></a> <a href="../filling.htm"><b>13</b></a> <a href="../fillet.htm"><b>14</b></a> <a href="../files/salome2_sp3_primitivegui_functions.htm"><b>15</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>16</b></a> <a href="../point.htm"><b>17</b></a> <a href="../plane.htm"><b>18</b></a> <a href="../pipe_creation.htm"><b>19</b></a> <a href="../multi_transformation.htm"><b>20</b></a> <a href="../multi_rotation.htm"><b>21</b></a> <a href="../line.htm"><b>22</b></a> <a href="../sphere.htm"><b>23</b></a> <a href="../scale_transform.htm"><b>24</b></a> <a href="../rotation.htm"><b>25</b></a> <a href="../revolution.htm"><b>26</b></a> <a href="../working_plane.htm"><b>27</b></a> <a href="../vector.htm"><b>28</b></a> <a href="../turus.htm"><b>29</b></a> <a href="../translation.htm"><b>30</b></a> </nobr><br><nobr>defined <a href="../multi_rotation.htm"><b>1</b></a> <a href="../sketcher.htm"><b>2</b></a> </nobr><br><nobr>defines <a href="../files/salome2_sp3_basicgui_functions.htm"><b>1</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>2</b></a> <a href="../multi_transformation.htm"><b>3</b></a> </nobr><br><nobr>defining <a href="../files/salome2_sp3_basicgui_functions.htm"><b>1</b></a> <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>2</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>3</b></a> <a href="../point.htm"><b>4</b></a> <a href="../multi_translation.htm"><b>5</b></a> <a href="../sketcher.htm"><b>6</b></a> <a href="../shape_processing.htm"><b>7</b></a> </nobr><br><nobr>definite <a href="../files/salome2_sp3_repairgui_functions.htm"><b>1</b></a> <a href="../files/salome2_sp3_measuregui_functions.htm"><b>2</b></a> <a href="../suppress_holes.htm"><b>3</b></a> </nobr><br><nobr>definition <a href="../files/salome2_sp3_repairgui_functions.htm"><b>1</b></a> <a href="../files/salome2_sp3_generationgui_functions.htm"><b>2</b></a> <a href="../pipe_creation.htm"><b>3</b></a> <a href="../shape_processing.htm"><b>4</b></a> </nobr><br><nobr>deflection <a href="../archimede.htm"><b>1</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>2</b></a> </nobr><br><a href="../files/salome2_sp3_measuregui_functions.htm"><b>degenerated</b></a> <br><nobr>degree <a href="../filling.htm"><b>1</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>2</b></a> <a href="../files/salome2_sp3_generationgui_functions.htm"><b>3</b></a> <a href="../shape_processing.htm"><b>4</b></a> </nobr><br><nobr>degrees <a href="../sketcher.htm"><b>1</b></a> <a href="../revolution.htm"><b>2</b></a> </nobr><br><nobr>deleted <a href="../files/salome2_sp3_operationgui_functions.htm"><b>1</b></a> <a href="../partition.htm"><b>2</b></a> </nobr><br><nobr>density <a href="../archimede.htm"><b>1</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>2</b></a> </nobr><br><nobr>depending <a href="../files/salome2_sp3_operationgui_functions.htm"><b>1</b></a> <a href="../multi_transformation.htm"><b>2</b></a> </nobr><br><a href="../measurement_tools.htm"><b>descr</b></a> <br><nobr>description <a href="../changing_displaying_parameters.htm"><b>1</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>2</b></a> <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>3</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>4</b></a> <a href="../files/salome2_sp3_primitivegui_functions.htm"><b>5</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>6</b></a> <a href="../files/salome2_sp3_measuregui_functions.htm"><b>7</b></a> <a href="../files/salome2_sp3_generationgui_functions.htm"><b>8</b></a> <a href="../files/salome2_sp3_displaygui_functions.htm"><b>9</b></a> <a href="../files/salome2_sp3_buildgui_functions.htm"><b>10</b></a> <a href="../newentity_blocks.htm"><b>11</b></a> <a href="../measurement_tools.htm"><b>12</b></a> <a href="../sketcher_tui.htm"><b>13</b></a> <a href="../sketcher.htm"><b>14</b></a> <a href="../working_with_groups.htm"><b>15</b></a> </nobr><br><nobr>desired <a href="../files/salome2_sp3_repairgui_functions.htm"><b>1</b></a> <a href="../shape_processing.htm"><b>2</b></a> </nobr><br><a href="../sketcher.htm"><b>destination</b></a> <br><a href="../files/introduction_to_geom.htm"><b>destined</b></a> <br><nobr>detect <a href="../files/salome2_sp3_repairgui_functions.htm"><b>1</b></a> <a href="../suppress_holes.htm"><b>2</b></a> <a href="../sewing.htm"><b>3</b></a> </nobr><br><nobr>detection <a href="../files/salome2_sp3_repairgui_functions.htm"><b>1</b></a> <a href="../shape_processing.htm"><b>2</b></a> </nobr><br><nobr>detects <a href="../check_free_boundaries.htm"><b>1</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>2</b></a> </nobr><br><a name="bms_DI"></a><a name="subkey_DI"></a><a href="../files/salome2_sp3_primitivegui_functions.htm"><b>diagonal</b></a> <br><nobr>dialog <a href="../check_free_boundaries.htm"><b>1</b></a> <a href="../changing_displaying_parameters.htm"><b>2</b></a> <a href="../add_point_on_edge.htm"><b>3</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>4</b></a> <a href="../cut.htm"><b>5</b></a> <a href="../close_contour.htm"><b>6</b></a> <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>7</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>8</b></a> <a href="../files/salome2_sp3_primitivegui_functions.htm"><b>9</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>10</b></a> <a href="../files/salome2_sp3_measuregui_functions.htm"><b>11</b></a> <a href="../files/salome2_sp3_geomtoolsgui_functions.htm"><b>12</b></a> <a href="../files/salome2_sp3_generationgui_functions.htm"><b>13</b></a> <a href="../files/salome2_sp3_buildgui_functions.htm"><b>14</b></a> <a href="../newentity_blocks.htm"><b>15</b></a> <a href="../local_coordinate_system.htm"><b>16</b></a> <a href="../suppress_internal_wires.htm"><b>17</b></a> <a href="../sketcher.htm"><b>18</b></a> <a href="../shape_processing.htm"><b>19</b></a> <a href="../working_with_groups.htm"><b>20</b></a> <a href="../wire.htm"><b>21</b></a> </nobr><br><a href="../files/salome2_sp3_displaygui_functions.htm"><b>differ</b></a> <br><a href="../groups.htm"><b>differencelist</b></a> <br><nobr>different <a href="../changing_displaying_parameters.htm"><b>1</b></a> <a href="../files/salome2_sp3_primitivegui_functions.htm"><b>2</b></a> <a href="../files/salome2_sp3_measuregui_functions.htm"><b>3</b></a> <a href="../files/salome2_sp3_displaygui_functions.htm"><b>4</b></a> <a href="../mirror_image.htm"><b>5</b></a> </nobr><br><nobr>dimension <a href="../chamfer.htm"><b>1</b></a> <a href="../extrusion.htm"><b>2</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>3</b></a> <a href="../files/salome2_sp3_generationgui_functions.htm"><b>4</b></a> <a href="../multi_rotation.htm"><b>5</b></a> </nobr><br><nobr>dimensions <a href="../box.htm"><b>1</b></a> <a href="../cylinder.htm"><b>2</b></a> <a href="../files/salome2_sp3_primitivegui_functions.htm"><b>3</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>4</b></a> <a href="../files/salome2_sp3_measuregui_functions.htm"><b>5</b></a> <a href="../multi_rotation.htm"><b>6</b></a> </nobr><br><a href="../multi_rotation.htm"><b>dimentions</b></a> <br><nobr>dir <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>1</b></a> <a href="../multi_translation.htm"><b>2</b></a> <a href="../multi_rotation.htm"><b>3</b></a> </nobr><br><nobr>dir1 <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>1</b></a> <a href="../multi_translation.htm"><b>2</b></a> </nobr><br><nobr>dir2 <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>1</b></a> <a href="../multi_translation.htm"><b>2</b></a> </nobr><br><nobr>direction <a href="../circle.htm"><b>1</b></a> <a href="../archimede.htm"><b>2</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>3</b></a> <a href="../extrusion.htm"><b>4</b></a> <a href="../ellipse.htm"><b>5</b></a> <a href="../cone.htm"><b>6</b></a> <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>7</b></a> <a href="../files/salome2_sp3_primitivegui_functions.htm"><b>8</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>9</b></a> <a href="../files/salome2_sp3_generationgui_functions.htm"><b>10</b></a> <a href="../plane.htm"><b>11</b></a> <a href="../multi_translation.htm"><b>12</b></a> <a href="../multi_transformation.htm"><b>13</b></a> <a href="../multi_rotation.htm"><b>14</b></a> <a href="../local_coordinate_system.htm"><b>15</b></a> <a href="../sketcher.htm"><b>16</b></a> <a href="../rotation.htm"><b>17</b></a> <a href="../revolution.htm"><b>18</b></a> <a href="../turus.htm"><b>19</b></a> </nobr><br><nobr>directions <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>1</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>2</b></a> <a href="../multi_translation.htm"><b>3</b></a> <a href="../multi_transformation.htm"><b>4</b></a> </nobr><br><nobr>dirface1v <a href="../files/salome2_sp3_operationgui_functions.htm"><b>1</b></a> <a href="../multi_transformation.htm"><b>2</b></a> </nobr><br><nobr>dirfaceid1 <a href="../files/salome2_sp3_operationgui_functions.htm"><b>1</b></a> <a href="../multi_transformation.htm"><b>2</b></a> </nobr><br><nobr>dirfaceid1u <a href="../files/salome2_sp3_operationgui_functions.htm"><b>1</b></a> <a href="../multi_transformation.htm"><b>2</b></a> </nobr><br><nobr>dirfaceid1v <a href="../files/salome2_sp3_operationgui_functions.htm"><b>1</b></a> <a href="../multi_transformation.htm"><b>2</b></a> </nobr><br><nobr>dirfaceid2 <a href="../files/salome2_sp3_operationgui_functions.htm"><b>1</b></a> <a href="../multi_transformation.htm"><b>2</b></a> </nobr><br><nobr>dirfaceid2u <a href="../files/salome2_sp3_operationgui_functions.htm"><b>1</b></a> <a href="../multi_transformation.htm"><b>2</b></a> </nobr><br><nobr>dirfaceid2v <a href="../files/salome2_sp3_operationgui_functions.htm"><b>1</b></a> <a href="../multi_transformation.htm"><b>2</b></a> </nobr><br><nobr>display <a href="../changing_displaying_parameters.htm"><b>1</b></a> <a href="../changing_display_parameters.htm"><b>2</b></a> <a href="../building_by_blocks.htm"><b>3</b></a> <a href="../boolean_operations.htm"><b>4</b></a> <a href="../blocks_operations.htm"><b>5</b></a> <a href="../basic_operations.htm"><b>6</b></a> <a href="../basic_geometrical_objects.htm"><b>7</b></a> <a href="../complex_objects.htm"><b>8</b></a> <a href="../groups.htm"><b>9</b></a> <a href="../geometrical_objects.htm"><b>10</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>11</b></a> <a href="../files/salome2_sp3_measuregui_functions.htm"><b>12</b></a> <a href="../files/salome2_sp3_displaygui_functions.htm"><b>13</b></a> <a href="../primitives.htm"><b>14</b></a> <a href="../transformation_operations.htm"><b>15</b></a> <a href="../suppress_holes.htm"><b>16</b></a> <a href="../sketcher_tui.htm"><b>17</b></a> <a href="../sewing.htm"><b>18</b></a> <a href="../repairing_operations.htm"><b>19</b></a> </nobr><br><a href="../files/salome2_sp3_displaygui_functions.htm"><b>displayall</b></a> <br><nobr>displayed <a href="../changing_displaying_parameters.htm"><b>1</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>2</b></a> <a href="../files/salome2_sp3_geomtoolsgui_functions.htm"><b>3</b></a> <a href="../files/salome2_sp3_displaygui_functions.htm"><b>4</b></a> <a href="../local_coordinate_system.htm"><b>5</b></a> </nobr><br><nobr>displaying <a href="../changing_displaying_parameters.htm"><b>1</b></a> <a href="../changing_display_parameters.htm"><b>2</b></a> <a href="../files/salome2_sp3_displaygui_functions.htm"><b>3</b></a> </nobr><br><a href="../files/salome2_sp3_displaygui_functions.htm"><b>displayonly</b></a> <br><nobr>displays <a href="../files/salome2_sp3_measuregui_functions.htm"><b>1</b></a> <a href="../files/salome2_sp3_displaygui_functions.htm"><b>2</b></a> </nobr><br><nobr>distance <a href="../glue_faces.htm"><b>1</b></a> <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>2</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>3</b></a> <a href="../files/salome2_sp3_measuregui_functions.htm"><b>4</b></a> <a href="../offset_surface.htm"><b>5</b></a> <a href="../measurement_tools.htm"><b>6</b></a> </nobr><br><a href="../repairing_operations.htm"><b>divide</b></a> <br><nobr>divided <a href="../add_point_on_edge.htm"><b>1</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>2</b></a> <a href="../repairing_operations.htm"><b>3</b></a> </nobr><br><nobr>divideedge <a href="../add_point_on_edge.htm"><b>1</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>2</b></a> <a href="../repairing_operations.htm"><b>3</b></a> </nobr><br><nobr>dividing <a href="../files/salome2_sp3_repairgui_functions.htm"><b>1</b></a> <a href="../shape_processing.htm"><b>2</b></a> </nobr><br><br><br></p><p class="ftsbody" align="center"><a href="whlstf3.htm" target="_self" title="previous search group"><b>>></b></a>\r
+<nobr><a name="bm_D"></a><a name="subkey_D{"></a>d <a href="../chamfer.htm"><b>1</b></a> <a href="../repairing_operations.htm"><b>2</b></a> </nobr><br><nobr>d1 <a href="../chamfer.htm"><b>1</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>2</b></a> <a href="../transformation_operations.htm"><b>3</b></a> </nobr><br><nobr>d2 <a href="../chamfer.htm"><b>1</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>2</b></a> <a href="../transformation_operations.htm"><b>3</b></a> </nobr><br><a name="bms_DA"></a><a name="subkey_DA"></a><a href="../files/salome2_sp3_measuregui_functions.htm"><b>data</b></a> <br><a href="../repairing_operations.htm"><b>data_dir</b></a> <br><nobr><a name="bms_DE"></a><a name="subkey_DE"></a>default <a href="../point.htm"><b>1</b></a> <a href="../sketcher.htm"><b>2</b></a> <a href="../working_with_groups.htm"><b>3</b></a> </nobr><br><nobr>define <a href="../circle.htm"><b>1</b></a> <a href="../chamfer.htm"><b>2</b></a> <a href="../box.htm"><b>3</b></a> <a href="../arc.htm"><b>4</b></a> <a href="../extrusion.htm"><b>5</b></a> <a href="../explode_on_blocks.htm"><b>6</b></a> <a href="../explode.htm"><b>7</b></a> <a href="../ellipse.htm"><b>8</b></a> <a href="../cylinder.htm"><b>9</b></a> <a href="../curve.htm"><b>10</b></a> <a href="../cone.htm"><b>11</b></a> <a href="../filling.htm"><b>12</b></a> <a href="../fillet.htm"><b>13</b></a> <a href="../files/salome2_sp3_primitivegui_functions.htm"><b>14</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>15</b></a> <a href="../files/salome2_sp3_geomtoolsgui_functions.htm"><b>16</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>17</b></a> <a href="../point.htm"><b>18</b></a> <a href="../plane.htm"><b>19</b></a> <a href="../pipe_creation.htm"><b>20</b></a> <a href="../multi_transformation.htm"><b>21</b></a> <a href="../multi_rotation.htm"><b>22</b></a> <a href="../local_coordinate_system.htm"><b>23</b></a> <a href="../line.htm"><b>24</b></a> <a href="../sphere.htm"><b>25</b></a> <a href="../scale_transform.htm"><b>26</b></a> <a href="../rotation.htm"><b>27</b></a> <a href="../revolution.htm"><b>28</b></a> <a href="../working_with_groups.htm"><b>29</b></a> <a href="../working_plane.htm"><b>30</b></a> <a href="../vector.htm"><b>31</b></a> <a href="../turus.htm"><b>32</b></a> <a href="../translation.htm"><b>33</b></a> </nobr><br><nobr>defined <a href="../multi_rotation.htm"><b>1</b></a> <a href="../sketcher.htm"><b>2</b></a> </nobr><br><nobr>defines <a href="../files/salome2_sp3_operationgui_functions.htm"><b>1</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>2</b></a> <a href="../multi_transformation.htm"><b>3</b></a> </nobr><br><nobr>defining <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>1</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>2</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>3</b></a> <a href="../point.htm"><b>4</b></a> <a href="../multi_translation.htm"><b>5</b></a> <a href="../sketcher.htm"><b>6</b></a> <a href="../shape_processing.htm"><b>7</b></a> </nobr><br><nobr>definite <a href="../files/salome2_sp3_repairgui_functions.htm"><b>1</b></a> <a href="../files/salome2_sp3_measuregui_functions.htm"><b>2</b></a> <a href="../suppress_holes.htm"><b>3</b></a> </nobr><br><nobr>definition <a href="../files/salome2_sp3_repairgui_functions.htm"><b>1</b></a> <a href="../files/salome2_sp3_generationgui_functions.htm"><b>2</b></a> <a href="../pipe_creation.htm"><b>3</b></a> <a href="../shape_processing.htm"><b>4</b></a> </nobr><br><nobr>deflection <a href="../archimede.htm"><b>1</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>2</b></a> </nobr><br><a href="../files/salome2_sp3_measuregui_functions.htm"><b>degenerated</b></a> <br><nobr>degree <a href="../filling.htm"><b>1</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>2</b></a> <a href="../files/salome2_sp3_generationgui_functions.htm"><b>3</b></a> <a href="../shape_processing.htm"><b>4</b></a> </nobr><br><nobr>degrees <a href="../sketcher.htm"><b>1</b></a> <a href="../revolution.htm"><b>2</b></a> </nobr><br><a href="../working_with_groups.htm"><b>delete</b></a> <br><nobr>deleted <a href="../files/salome2_sp3_operationgui_functions.htm"><b>1</b></a> <a href="../partition.htm"><b>2</b></a> </nobr><br><nobr>density <a href="../archimede.htm"><b>1</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>2</b></a> </nobr><br><nobr>depending <a href="../files/salome2_sp3_operationgui_functions.htm"><b>1</b></a> <a href="../multi_transformation.htm"><b>2</b></a> </nobr><br><a href="../measurement_tools.htm"><b>descr</b></a> <br><nobr>description <a href="../changing_displaying_parameters.htm"><b>1</b></a> <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>2</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>3</b></a> <a href="../files/salome2_sp3_primitivegui_functions.htm"><b>4</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>5</b></a> <a href="../files/salome2_sp3_measuregui_functions.htm"><b>6</b></a> <a href="../files/salome2_sp3_generationgui_functions.htm"><b>7</b></a> <a href="../files/salome2_sp3_displaygui_functions.htm"><b>8</b></a> <a href="../files/salome2_sp3_buildgui_functions.htm"><b>9</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>10</b></a> <a href="../newentity_blocks.htm"><b>11</b></a> <a href="../measurement_tools.htm"><b>12</b></a> <a href="../sketcher_tui.htm"><b>13</b></a> <a href="../sketcher.htm"><b>14</b></a> </nobr><br><a href="../working_with_groups.htm"><b>designed</b></a> <br><nobr>desired <a href="../files/salome2_sp3_repairgui_functions.htm"><b>1</b></a> <a href="../shape_processing.htm"><b>2</b></a> </nobr><br><a href="../sketcher.htm"><b>destination</b></a> <br><a href="../files/introduction_to_geom.htm"><b>destined</b></a> <br><nobr>detect <a href="../files/salome2_sp3_repairgui_functions.htm"><b>1</b></a> <a href="../suppress_holes.htm"><b>2</b></a> <a href="../sewing.htm"><b>3</b></a> </nobr><br><nobr>detection <a href="../files/salome2_sp3_repairgui_functions.htm"><b>1</b></a> <a href="../shape_processing.htm"><b>2</b></a> </nobr><br><nobr>detects <a href="../check_free_boundaries.htm"><b>1</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>2</b></a> </nobr><br><a name="bms_DI"></a><a name="subkey_DI"></a><a href="../files/salome2_sp3_primitivegui_functions.htm"><b>diagonal</b></a> <br><nobr>dialog <a href="../check_free_boundaries.htm"><b>1</b></a> <a href="../changing_displaying_parameters.htm"><b>2</b></a> <a href="../add_point_on_edge.htm"><b>3</b></a> <a href="../cut.htm"><b>4</b></a> <a href="../close_contour.htm"><b>5</b></a> <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>6</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>7</b></a> <a href="../files/salome2_sp3_primitivegui_functions.htm"><b>8</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>9</b></a> <a href="../files/salome2_sp3_measuregui_functions.htm"><b>10</b></a> <a href="../files/salome2_sp3_geomtoolsgui_functions.htm"><b>11</b></a> <a href="../files/salome2_sp3_generationgui_functions.htm"><b>12</b></a> <a href="../files/salome2_sp3_buildgui_functions.htm"><b>13</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>14</b></a> <a href="../newentity_blocks.htm"><b>15</b></a> <a href="../sketcher.htm"><b>16</b></a> <a href="../shape_processing.htm"><b>17</b></a> <a href="../working_with_groups.htm"><b>18</b></a> <a href="../wire.htm"><b>19</b></a> <a href="../transparency.htm"><b>20</b></a> <a href="../suppress_internal_wires.htm"><b>21</b></a> </nobr><br><a href="../files/salome2_sp3_displaygui_functions.htm"><b>differ</b></a> <br><a href="../groups.htm"><b>differencelist</b></a> <br><nobr>different <a href="../changing_displaying_parameters.htm"><b>1</b></a> <a href="../files/salome2_sp3_primitivegui_functions.htm"><b>2</b></a> <a href="../files/salome2_sp3_measuregui_functions.htm"><b>3</b></a> <a href="../files/salome2_sp3_displaygui_functions.htm"><b>4</b></a> <a href="../mirror_image.htm"><b>5</b></a> </nobr><br><nobr>dimension <a href="../chamfer.htm"><b>1</b></a> <a href="../extrusion.htm"><b>2</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>3</b></a> <a href="../files/salome2_sp3_generationgui_functions.htm"><b>4</b></a> <a href="../multi_rotation.htm"><b>5</b></a> </nobr><br><nobr>dimensions <a href="../box.htm"><b>1</b></a> <a href="../cylinder.htm"><b>2</b></a> <a href="../files/salome2_sp3_primitivegui_functions.htm"><b>3</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>4</b></a> <a href="../files/salome2_sp3_measuregui_functions.htm"><b>5</b></a> <a href="../multi_rotation.htm"><b>6</b></a> </nobr><br><a href="../multi_rotation.htm"><b>dimentions</b></a> <br><nobr>dir <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>1</b></a> <a href="../multi_translation.htm"><b>2</b></a> <a href="../multi_rotation.htm"><b>3</b></a> </nobr><br><nobr>dir1 <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>1</b></a> <a href="../multi_translation.htm"><b>2</b></a> </nobr><br><nobr>dir2 <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>1</b></a> <a href="../multi_translation.htm"><b>2</b></a> </nobr><br><nobr>direction <a href="../circle.htm"><b>1</b></a> <a href="../archimede.htm"><b>2</b></a> <a href="../extrusion.htm"><b>3</b></a> <a href="../ellipse.htm"><b>4</b></a> <a href="../cone.htm"><b>5</b></a> <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>6</b></a> <a href="../files/salome2_sp3_primitivegui_functions.htm"><b>7</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>8</b></a> <a href="../files/salome2_sp3_generationgui_functions.htm"><b>9</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>10</b></a> <a href="../multi_translation.htm"><b>11</b></a> <a href="../multi_transformation.htm"><b>12</b></a> <a href="../multi_rotation.htm"><b>13</b></a> <a href="../local_coordinate_system.htm"><b>14</b></a> <a href="../sketcher.htm"><b>15</b></a> <a href="../rotation.htm"><b>16</b></a> <a href="../revolution.htm"><b>17</b></a> <a href="../turus.htm"><b>18</b></a> </nobr><br><nobr>directions <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>1</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>2</b></a> <a href="../multi_translation.htm"><b>3</b></a> <a href="../multi_transformation.htm"><b>4</b></a> <a href="../local_coordinate_system.htm"><b>5</b></a> </nobr><br><nobr>dirface1v <a href="../files/salome2_sp3_operationgui_functions.htm"><b>1</b></a> <a href="../multi_transformation.htm"><b>2</b></a> </nobr><br><nobr>dirfaceid1 <a href="../files/salome2_sp3_operationgui_functions.htm"><b>1</b></a> <a href="../multi_transformation.htm"><b>2</b></a> </nobr><br><nobr>dirfaceid1u <a href="../files/salome2_sp3_operationgui_functions.htm"><b>1</b></a> <a href="../multi_transformation.htm"><b>2</b></a> </nobr><br><nobr>dirfaceid1v <a href="../files/salome2_sp3_operationgui_functions.htm"><b>1</b></a> <a href="../multi_transformation.htm"><b>2</b></a> </nobr><br><nobr>dirfaceid2 <a href="../files/salome2_sp3_operationgui_functions.htm"><b>1</b></a> <a href="../multi_transformation.htm"><b>2</b></a> </nobr><br><nobr>dirfaceid2u <a href="../files/salome2_sp3_operationgui_functions.htm"><b>1</b></a> <a href="../multi_transformation.htm"><b>2</b></a> </nobr><br><nobr>dirfaceid2v <a href="../files/salome2_sp3_operationgui_functions.htm"><b>1</b></a> <a href="../multi_transformation.htm"><b>2</b></a> </nobr><br><nobr>display <a href="../changing_displaying_parameters.htm"><b>1</b></a> <a href="../changing_display_parameters.htm"><b>2</b></a> <a href="../building_by_blocks.htm"><b>3</b></a> <a href="../boolean_operations.htm"><b>4</b></a> <a href="../blocks_operations.htm"><b>5</b></a> <a href="../basic_operations.htm"><b>6</b></a> <a href="../basic_geometrical_objects.htm"><b>7</b></a> <a href="../complex_objects.htm"><b>8</b></a> <a href="../color.htm"><b>9</b></a> <a href="../geometrical_objects.htm"><b>10</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>11</b></a> <a href="../files/salome2_sp3_measuregui_functions.htm"><b>12</b></a> <a href="../files/salome2_sp3_displaygui_functions.htm"><b>13</b></a> <a href="../groups.htm"><b>14</b></a> <a href="../suppress_holes.htm"><b>15</b></a> <a href="../sketcher_tui.htm"><b>16</b></a> <a href="../sewing.htm"><b>17</b></a> <a href="../repairing_operations.htm"><b>18</b></a> <a href="../primitives.htm"><b>19</b></a> <a href="../wireframe_and_shading.htm"><b>20</b></a> <a href="../transparency.htm"><b>21</b></a> <a href="../transformation_operations.htm"><b>22</b></a> </nobr><br><a href="../files/salome2_sp3_displaygui_functions.htm"><b>displayall</b></a> <br><nobr>displayed <a href="../files/salome2_sp3_geomtoolsgui_functions.htm"><b>1</b></a> <a href="../files/salome2_sp3_displaygui_functions.htm"><b>2</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>3</b></a> <a href="../isos.htm"><b>4</b></a> <a href="../working_with_groups.htm"><b>5</b></a> </nobr><br><nobr>displaying <a href="../changing_displaying_parameters.htm"><b>1</b></a> <a href="../files/salome2_sp3_displaygui_functions.htm"><b>2</b></a> </nobr><br><a href="../files/salome2_sp3_displaygui_functions.htm"><b>displayonly</b></a> <br><nobr>displays <a href="../files/salome2_sp3_measuregui_functions.htm"><b>1</b></a> <a href="../files/salome2_sp3_displaygui_functions.htm"><b>2</b></a> </nobr><br><nobr>distance <a href="../glue_faces.htm"><b>1</b></a> <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>2</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>3</b></a> <a href="../files/salome2_sp3_measuregui_functions.htm"><b>4</b></a> <a href="../offset_surface.htm"><b>5</b></a> <a href="../measurement_tools.htm"><b>6</b></a> </nobr><br><a href="../repairing_operations.htm"><b>divide</b></a> <br><nobr>divided <a href="../add_point_on_edge.htm"><b>1</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>2</b></a> <a href="../repairing_operations.htm"><b>3</b></a> </nobr><br><nobr>divideedge <a href="../add_point_on_edge.htm"><b>1</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>2</b></a> <a href="../repairing_operations.htm"><b>3</b></a> </nobr><br><nobr>dividing <a href="../files/salome2_sp3_repairgui_functions.htm"><b>1</b></a> <a href="../shape_processing.htm"><b>2</b></a> </nobr><br><br><br></p><p class="ftsbody" align="center"><a href="whlstf3.htm" target="_self" title="previous search group"><b>>></b></a>\r
\r
</body>\r
\r
<body marginheight="0" marginwidth="0" bgproperties="fixed">\r
<p class="ftsbody" align="center"><a href="whlstf2.htm" target="_self" title="previous search group"><b><<</b></a><br><br></p>\r
<p class="ftsbody" >\r
-<nobr><a name="bms_DO"></a><a name="subkey_DO"></a>don <a href="../box.htm"><b>1</b></a> <a href="../extrusion.htm"><b>2</b></a> <a href="../sphere.htm"><b>3</b></a> </nobr><br><nobr>done <a href="../close_contour.htm"><b>1</b></a> <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>2</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>3</b></a> <a href="../multi_translation.htm"><b>4</b></a> </nobr><br><nobr>double <a href="../changing_displaying_parameters.htm"><b>1</b></a> <a href="../multi_translation.htm"><b>2</b></a> <a href="../multi_transformation.htm"><b>3</b></a> <a href="../multi_rotation.htm"><b>4</b></a> </nobr><br><a href="../sketcher.htm"><b>doubles</b></a> <br><nobr><a name="bms_DR"></a><a name="subkey_DR"></a>dropsmalledges <a href="../files/salome2_sp3_repairgui_functions.htm"><b>1</b></a> <a href="../shape_processing.htm"><b>2</b></a> </nobr><br><nobr><a name="bms_DX"></a><a name="subkey_DX"></a>dx <a href="../box.htm"><b>1</b></a> <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>2</b></a> <a href="../measurement_tools.htm"><b>3</b></a> <a href="../sketcher.htm"><b>4</b></a> <a href="../vector.htm"><b>5</b></a> <a href="../translation.htm"><b>6</b></a> </nobr><br><nobr><a name="bms_DY"></a><a name="subkey_DY"></a>dy <a href="../box.htm"><b>1</b></a> <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>2</b></a> <a href="../measurement_tools.htm"><b>3</b></a> <a href="../sketcher.htm"><b>4</b></a> <a href="../vector.htm"><b>5</b></a> <a href="../translation.htm"><b>6</b></a> </nobr><br><nobr><a name="bms_DZ"></a><a name="subkey_DZ"></a>dz <a href="../box.htm"><b>1</b></a> <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>2</b></a> <a href="../measurement_tools.htm"><b>3</b></a> <a href="../vector.htm"><b>4</b></a> <a href="../translation.htm"><b>5</b></a> </nobr><br>\r
+<a name="bms_DO"></a><a name="subkey_DO"></a><a href="../modify_the_location.htm"><b>does</b></a> <br><a href="../groups.htm"><b>doesn</b></a> <br><nobr>don <a href="../box.htm"><b>1</b></a> <a href="../extrusion.htm"><b>2</b></a> <a href="../sphere.htm"><b>3</b></a> </nobr><br><nobr>done <a href="../close_contour.htm"><b>1</b></a> <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>2</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>3</b></a> <a href="../multi_translation.htm"><b>4</b></a> </nobr><br><nobr>double <a href="../changing_displaying_parameters.htm"><b>1</b></a> <a href="../multi_translation.htm"><b>2</b></a> <a href="../multi_transformation.htm"><b>3</b></a> <a href="../multi_rotation.htm"><b>4</b></a> <a href="../transparency.htm"><b>5</b></a> </nobr><br><a href="../sketcher.htm"><b>doubles</b></a> <br><a href="../working_with_groups.htm"><b>down</b></a> <br><nobr><a name="bms_DR"></a><a name="subkey_DR"></a>dropsmalledges <a href="../files/salome2_sp3_repairgui_functions.htm"><b>1</b></a> <a href="../shape_processing.htm"><b>2</b></a> </nobr><br><nobr><a name="bms_DX"></a><a name="subkey_DX"></a>dx <a href="../box.htm"><b>1</b></a> <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>2</b></a> <a href="../measurement_tools.htm"><b>3</b></a> <a href="../sketcher.htm"><b>4</b></a> <a href="../vector.htm"><b>5</b></a> <a href="../translation.htm"><b>6</b></a> </nobr><br><nobr><a name="bms_DY"></a><a name="subkey_DY"></a>dy <a href="../box.htm"><b>1</b></a> <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>2</b></a> <a href="../measurement_tools.htm"><b>3</b></a> <a href="../sketcher.htm"><b>4</b></a> <a href="../vector.htm"><b>5</b></a> <a href="../translation.htm"><b>6</b></a> </nobr><br><nobr><a name="bms_DZ"></a><a name="subkey_DZ"></a>dz <a href="../box.htm"><b>1</b></a> <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>2</b></a> <a href="../measurement_tools.htm"><b>3</b></a> <a href="../vector.htm"><b>4</b></a> <a href="../translation.htm"><b>5</b></a> </nobr><br>\r
<br><br>\r
-<a name="bm_E"></a><a name="subkey_E{"></a><a href="../files/salome2_sp3_displaygui_functions.htm"><b>e</b></a> <br><a href="../newentity_blocks.htm"><b>e1</b></a> <br><a href="../newentity_blocks.htm"><b>e2</b></a> <br><a href="../newentity_blocks.htm"><b>e3</b></a> <br><a href="../newentity_blocks.htm"><b>e4</b></a> <br><a name="bms_EA"></a><a name="subkey_EA"></a><a href="../working_with_groups.htm"><b>easier</b></a> <br><nobr><a name="bms_ED"></a><a name="subkey_ED"></a>edge <a href="../circle.htm"><b>1</b></a> <a href="../chamfer.htm"><b>2</b></a> <a href="../arc.htm"><b>3</b></a> <a href="../add_point_on_edge.htm"><b>4</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>5</b></a> <a href="../extrusion.htm"><b>6</b></a> <a href="../ellipse.htm"><b>7</b></a> <a href="../edge.htm"><b>8</b></a> <a href="../curve.htm"><b>9</b></a> <a href="../complex_objects.htm"><b>10</b></a> <a href="../close_contour.htm"><b>11</b></a> <a href="../geometrical_objects.htm"><b>12</b></a> <a href="../fillet.htm"><b>13</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>14</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>15</b></a> <a href="../files/salome2_sp3_measuregui_functions.htm"><b>16</b></a> <a href="../files/salome2_sp3_generationgui_functions.htm"><b>17</b></a> <a href="../files/salome2_sp3_buildgui_functions.htm"><b>18</b></a> <a href="../point.htm"><b>19</b></a> <a href="../pipe_creation.htm"><b>20</b></a> <a href="../measurement_tools.htm"><b>21</b></a> <a href="../line.htm"><b>22</b></a> <a href="../transformation_operations.htm"><b>23</b></a> <a href="../revolution.htm"><b>24</b></a> <a href="../repairing_operations.htm"><b>25</b></a> <a href="../vector.htm"><b>26</b></a> </nobr><br><a href="../repairing_operations.htm"><b>edge_ind</b></a> <br><a href="../repairing_operations.htm"><b>edge_points</b></a> <br><a href="../building_by_blocks.htm"><b>edge1</b></a> <br><a href="../building_by_blocks.htm"><b>edge2</b></a> <br><a href="../building_by_blocks.htm"><b>edge3</b></a> <br><a href="../building_by_blocks.htm"><b>edge4</b></a> <br><nobr>edgeid <a href="../add_point_on_edge.htm"><b>1</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>2</b></a> </nobr><br><nobr>edges <a href="../check_free_boundaries.htm"><b>1</b></a> <a href="../chamfer.htm"><b>2</b></a> <a href="../building_by_blocks.htm"><b>3</b></a> <a href="../box.htm"><b>4</b></a> <a href="../explode.htm"><b>5</b></a> <a href="../close_contour.htm"><b>6</b></a> <a href="../filling.htm"><b>7</b></a> <a href="../fillet.htm"><b>8</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>9</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>10</b></a> <a href="../files/salome2_sp3_measuregui_functions.htm"><b>11</b></a> <a href="../files/salome2_sp3_generationgui_functions.htm"><b>12</b></a> <a href="../files/salome2_sp3_buildgui_functions.htm"><b>13</b></a> <a href="../propagate.htm"><b>14</b></a> <a href="../newentity_blocks.htm"><b>15</b></a> <a href="../transformation_operations.htm"><b>16</b></a> <a href="../sketcher.htm"><b>17</b></a> <a href="../shell.htm"><b>18</b></a> <a href="../shape_processing.htm"><b>19</b></a> <a href="../wire.htm"><b>20</b></a> </nobr><br><a href="../working_with_groups.htm"><b>edit</b></a> <br><a href="../working_with_groups.htm"><b>editing</b></a> <br><a name="bms_EG"></a><a name="subkey_EG"></a><a href="../files/salome2_sp3_measuregui_functions.htm"><b>egdemaxtol</b></a> <br><a href="../files/salome2_sp3_measuregui_functions.htm"><b>egdemintol</b></a> <br><a name="bms_EI"></a><a name="subkey_EI"></a><a href="../newentity_blocks.htm"><b>either</b></a> <br><nobr><a name="bms_EL"></a><a name="subkey_EL"></a>element <a href="../close_contour.htm"><b>1</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>2</b></a> <a href="../files/salome2_sp3_measuregui_functions.htm"><b>3</b></a> <a href="../files/salome2_sp3_displaygui_functions.htm"><b>4</b></a> <a href="../files/salome2_sp3_buildgui_functions.htm"><b>5</b></a> <a href="../sketcher.htm"><b>6</b></a> </nobr><br><a href="../newentity_blocks.htm"><b>elementary</b></a> <br><nobr>elements <a href="../files/salome2_sp3_basicgui_functions.htm"><b>1</b></a> <a href="../face.htm"><b>2</b></a> <a href="../files/salome2_sp3_primitivegui_functions.htm"><b>3</b></a> <a href="../files/salome2_sp3_measuregui_functions.htm"><b>4</b></a> <a href="../files/salome2_sp3_generationgui_functions.htm"><b>5</b></a> <a href="../files/salome2_sp3_buildgui_functions.htm"><b>6</b></a> <a href="../files/salome2_sp3_booleangui_functions.htm"><b>7</b></a> </nobr><br><nobr>ellipse <a href="../basic_geometrical_objects.htm"><b>1</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>2</b></a> <a href="../ellipse.htm"><b>3</b></a> </nobr><br><nobr>else <a href="../measurement_tools.htm"><b>1</b></a> <a href="../repairing_operations.htm"><b>2</b></a> </nobr><br><nobr><a name="bms_EM"></a><a name="subkey_EM"></a>empty <a href="../files/salome2_sp3_repairgui_functions.htm"><b>1</b></a> <a href="../suppress_internal_wires.htm"><b>2</b></a> <a href="../suppress_holes.htm"><b>3</b></a> </nobr><br><a name="bms_EN"></a><a name="subkey_EN"></a><a href="../files/salome2_sp3_measuregui_functions.htm"><b>encountered</b></a> <br><nobr>end <a href="../extrusion.htm"><b>1</b></a> <a href="../close_contour.htm"><b>2</b></a> <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>3</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>4</b></a> <a href="../modify_the_location.htm"><b>5</b></a> <a href="../transformation_operations.htm"><b>6</b></a> <a href="../sketcher.htm"><b>7</b></a> <a href="../repairing_operations.htm"><b>8</b></a> <a href="../vector.htm"><b>9</b></a> <a href="../translation.htm"><b>10</b></a> </nobr><br><nobr>ending <a href="../arc.htm"><b>1</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>2</b></a> </nobr><br><nobr>ends <a href="../close_contour.htm"><b>1</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>2</b></a> <a href="../repairing_operations.htm"><b>3</b></a> </nobr><br><nobr>enter <a href="../files/salome2_sp3_basicgui_functions.htm"><b>1</b></a> <a href="../files/salome2_sp3_geomtoolsgui_functions.htm"><b>2</b></a> <a href="../local_coordinate_system.htm"><b>3</b></a> </nobr><br><a href="../files/salome2_sp3_measuregui_functions.htm"><b>entire</b></a> <br><nobr>entity <a href="../circle.htm"><b>1</b></a> <a href="../box.htm"><b>2</b></a> <a href="../arc.htm"><b>3</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>4</b></a> <a href="../face.htm"><b>5</b></a> <a href="../extrusion.htm"><b>6</b></a> <a href="../explode.htm"><b>7</b></a> <a href="../ellipse.htm"><b>8</b></a> <a href="../edge.htm"><b>9</b></a> <a href="../cylinder.htm"><b>10</b></a> <a href="../curve.htm"><b>11</b></a> <a href="../cone.htm"><b>12</b></a> <a href="../compound.htm"><b>13</b></a> <a href="../filling.htm"><b>14</b></a> <a href="../files/salome2_sp3_primitivegui_functions.htm"><b>15</b></a> <a href="../files/salome2_sp3_generationgui_functions.htm"><b>16</b></a> <a href="../files/salome2_sp3_buildgui_functions.htm"><b>17</b></a> <a href="../point.htm"><b>18</b></a> <a href="../plane.htm"><b>19</b></a> <a href="../pipe_creation.htm"><b>20</b></a> <a href="../newentity_blocks.htm"><b>21</b></a> <a href="../local_coordinate_system.htm"><b>22</b></a> <a href="../line.htm"><b>23</b></a> <a href="../sphere.htm"><b>24</b></a> <a href="../solid.htm"><b>25</b></a> <a href="../sketcher.htm"><b>26</b></a> <a href="../shell.htm"><b>27</b></a> <a href="../revolution.htm"><b>28</b></a> <a href="../working_with_groups.htm"><b>29</b></a> <a href="../working_plane.htm"><b>30</b></a> <a href="../wire.htm"><b>31</b></a> <a href="../vector.htm"><b>32</b></a> <a href="../turus.htm"><b>33</b></a> </nobr><br><nobr><a name="bms_EQ"></a><a name="subkey_EQ"></a>equal <a href="../cone.htm"><b>1</b></a> <a href="../sketcher.htm"><b>2</b></a> </nobr><br><a name="bms_ER"></a><a name="subkey_ER"></a><a href="../files/salome2_sp3_displaygui_functions.htm"><b>erase</b></a> <br><a href="../files/salome2_sp3_displaygui_functions.htm"><b>eraseall</b></a> <br><a href="../files/salome2_sp3_displaygui_functions.htm"><b>eraseonly</b></a> <br><a href="../files/salome2_sp3_displaygui_functions.htm"><b>erases</b></a> <br><nobr>error <a href="../check_free_boundaries.htm"><b>1</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>2</b></a> </nobr><br><nobr>errors <a href="../groups.htm"><b>1</b></a> <a href="../files/salome2_sp3_measuregui_functions.htm"><b>2</b></a> </nobr><br><nobr><a name="bms_ET"></a><a name="subkey_ET"></a>etc <a href="../explode.htm"><b>1</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>2</b></a> <a href="../files/salome2_sp3_buildgui_functions.htm"><b>3</b></a> <a href="../shape_processing.htm"><b>4</b></a> </nobr><br><nobr><a name="bms_EX"></a><a name="subkey_EX"></a>example <a href="../check_free_boundaries.htm"><b>1</b></a> <a href="../changing_displaying_parameters.htm"><b>2</b></a> <a href="../box.htm"><b>3</b></a> <a href="../archimede.htm"><b>4</b></a> <a href="../arc.htm"><b>5</b></a> <a href="../add_point_on_edge.htm"><b>6</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>7</b></a> <a href="../face.htm"><b>8</b></a> <a href="../explode_on_blocks.htm"><b>9</b></a> <a href="../ellipse.htm"><b>10</b></a> <a href="../edge.htm"><b>11</b></a> <a href="../cylinder.htm"><b>12</b></a> <a href="../cut.htm"><b>13</b></a> <a href="../cone.htm"><b>14</b></a> <a href="../compound.htm"><b>15</b></a> <a href="../common.htm"><b>16</b></a> <a href="../glue_faces.htm"><b>17</b></a> <a href="../fuse.htm"><b>18</b></a> <a href="../filling.htm"><b>19</b></a> <a href="../fillet.htm"><b>20</b></a> <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>21</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>22</b></a> <a href="../files/salome2_sp3_primitivegui_functions.htm"><b>23</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>24</b></a> <a href="../files/salome2_sp3_generationgui_functions.htm"><b>25</b></a> <a href="../files/salome2_sp3_buildgui_functions.htm"><b>26</b></a> <a href="../propagate.htm"><b>27</b></a> <a href="../point.htm"><b>28</b></a> <a href="../pipe_creation.htm"><b>29</b></a> <a href="../partition.htm"><b>30</b></a> <a href="../offset_surface.htm"><b>31</b></a> <a href="../newentity_blocks.htm"><b>32</b></a> <a href="../modify_the_location.htm"><b>33</b></a> <a href="../local_coordinate_system.htm"><b>34</b></a> <a href="../line.htm"><b>35</b></a> <a href="../suppress_internal_wires.htm"><b>36</b></a> <a href="../suppress_holes.htm"><b>37</b></a> <a href="../suppress_faces.htm"><b>38</b></a> <a href="../sphere.htm"><b>39</b></a> <a href="../solid.htm"><b>40</b></a> <a href="../sketcher.htm"><b>41</b></a> <a href="../shell.htm"><b>42</b></a> <a href="../shape_processing.htm"><b>43</b></a> <a href="../sewing.htm"><b>44</b></a> <a href="../section.htm"><b>45</b></a> <a href="../scale_transform.htm"><b>46</b></a> <a href="../rotation.htm"><b>47</b></a> <a href="../revolution.htm"><b>48</b></a> <a href="../repairing_operations.htm"><b>49</b></a> <a href="../working_with_groups.htm"><b>50</b></a> <a href="../wire.htm"><b>51</b></a> <a href="../turus.htm"><b>52</b></a> <a href="../translation.htm"><b>53</b></a> </nobr><br><nobr>examples <a href="../circle.htm"><b>1</b></a> <a href="../check_free_faces.htm"><b>2</b></a> <a href="../check_free_boundaries.htm"><b>3</b></a> <a href="../changing_displaying_parameters.htm"><b>4</b></a> <a href="../chamfer.htm"><b>5</b></a> <a href="../box.htm"><b>6</b></a> <a href="../archimede.htm"><b>7</b></a> <a href="../arc.htm"><b>8</b></a> <a href="../add_point_on_edge.htm"><b>9</b></a> <a href="../face.htm"><b>10</b></a> <a href="../extrusion.htm"><b>11</b></a> <a href="../explode_on_blocks.htm"><b>12</b></a> <a href="../ellipse.htm"><b>13</b></a> <a href="../edge.htm"><b>14</b></a> <a href="../cylinder.htm"><b>15</b></a> <a href="../cut.htm"><b>16</b></a> <a href="../curve.htm"><b>17</b></a> <a href="../cone.htm"><b>18</b></a> <a href="../compound.htm"><b>19</b></a> <a href="../common.htm"><b>20</b></a> <a href="../close_contour.htm"><b>21</b></a> <a href="../glue_faces.htm"><b>22</b></a> <a href="../fuse.htm"><b>23</b></a> <a href="../filling.htm"><b>24</b></a> <a href="../fillet.htm"><b>25</b></a> <a href="../files/salome2_sp3_booleangui_functions.htm"><b>26</b></a> <a href="../propagate.htm"><b>27</b></a> <a href="../point.htm"><b>28</b></a> <a href="../plane.htm"><b>29</b></a> <a href="../pipe_creation.htm"><b>30</b></a> <a href="../partition.htm"><b>31</b></a> <a href="../offset_surface.htm"><b>32</b></a> <a href="../newentity_blocks.htm"><b>33</b></a> <a href="../multi_translation.htm"><b>34</b></a> <a href="../multi_transformation.htm"><b>35</b></a> <a href="../multi_rotation.htm"><b>36</b></a> <a href="../modify_the_location.htm"><b>37</b></a> <a href="../mirror_image.htm"><b>38</b></a> <a href="../line.htm"><b>39</b></a> <a href="../suppress_internal_wires.htm"><b>40</b></a> <a href="../suppress_holes.htm"><b>41</b></a> <a href="../suppress_faces.htm"><b>42</b></a> <a href="../sphere.htm"><b>43</b></a> <a href="../solid.htm"><b>44</b></a> <a href="../sketcher.htm"><b>45</b></a> <a href="../shell.htm"><b>46</b></a> <a href="../shape_processing.htm"><b>47</b></a> <a href="../sewing.htm"><b>48</b></a> <a href="../section.htm"><b>49</b></a> <a href="../scale_transform.htm"><b>50</b></a> <a href="../rotation.htm"><b>51</b></a> <a href="../revolution.htm"><b>52</b></a> <a href="../working_with_groups.htm"><b>53</b></a> <a href="../wire.htm"><b>54</b></a> <a href="../vector.htm"><b>55</b></a> <a href="../turus.htm"><b>56</b></a> <a href="../translation.htm"><b>57</b></a> </nobr><br><nobr>except <a href="../files/salome2_sp3_repairgui_functions.htm"><b>1</b></a> <a href="../suppress_internal_wires.htm"><b>2</b></a> </nobr><br><nobr>existing <a href="../plane.htm"><b>1</b></a> <a href="../sketcher.htm"><b>2</b></a> <a href="../working_with_groups.htm"><b>3</b></a> </nobr><br><nobr>explode <a href="../blocks_operations.htm"><b>1</b></a> <a href="../blocks.htm"><b>2</b></a> <a href="../explode_on_blocks.htm"><b>3</b></a> <a href="../explode.htm"><b>4</b></a> <a href="../geometrical_objects.htm"><b>5</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>6</b></a> <a href="../files/salome2_sp3_buildgui_functions.htm"><b>7</b></a> </nobr><br><nobr>exploded <a href="../explode_on_blocks.htm"><b>1</b></a> <a href="../explode.htm"><b>2</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>3</b></a> <a href="../files/salome2_sp3_buildgui_functions.htm"><b>4</b></a> </nobr><br><a href="../explode.htm"><b>explodes</b></a> <br><nobr>export <a href="../files/introduction_to_geom.htm"><b>1</b></a> <a href="../files/salome2_sp3_geomtoolsgui_functions.htm"><b>2</b></a> </nobr><br><a href="../files/salome2_sp3_geomtoolsgui_functions.htm"><b>exportation</b></a> <br><a href="../files/salome2_sp3_geomtoolsgui_functions.htm"><b>exported</b></a> <br><a href="../files/salome2_sp3_geomtoolsgui_functions.htm"><b>exporting</b></a> <br><a href="../files/salome2_sp3_measuregui_functions.htm"><b>extra</b></a> <br><nobr>extracted <a href="../explode_on_blocks.htm"><b>1</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>2</b></a> </nobr><br><nobr>extruded <a href="../files/salome2_sp3_generationgui_functions.htm"><b>1</b></a> <a href="../pipe_creation.htm"><b>2</b></a> <a href="../revolution.htm"><b>3</b></a> </nobr><br><nobr>extrusion <a href="../extrusion.htm"><b>1</b></a> <a href="../files/salome2_sp3_generationgui_functions.htm"><b>2</b></a> </nobr><br>\r
+<a name="bm_E"></a><a name="subkey_E{"></a><a href="../files/salome2_sp3_displaygui_functions.htm"><b>e</b></a> <br><a href="../newentity_blocks.htm"><b>e1</b></a> <br><a href="../newentity_blocks.htm"><b>e2</b></a> <br><a href="../newentity_blocks.htm"><b>e3</b></a> <br><a href="../newentity_blocks.htm"><b>e4</b></a> <br><a name="bms_EA"></a><a name="subkey_EA"></a><a href="../working_with_groups.htm"><b>easier</b></a> <br><nobr><a name="bms_ED"></a><a name="subkey_ED"></a>edge <a href="../circle.htm"><b>1</b></a> <a href="../chamfer.htm"><b>2</b></a> <a href="../arc.htm"><b>3</b></a> <a href="../add_point_on_edge.htm"><b>4</b></a> <a href="../extrusion.htm"><b>5</b></a> <a href="../ellipse.htm"><b>6</b></a> <a href="../edge.htm"><b>7</b></a> <a href="../curve.htm"><b>8</b></a> <a href="../complex_objects.htm"><b>9</b></a> <a href="../close_contour.htm"><b>10</b></a> <a href="../geometrical_objects.htm"><b>11</b></a> <a href="../fillet.htm"><b>12</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>13</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>14</b></a> <a href="../files/salome2_sp3_measuregui_functions.htm"><b>15</b></a> <a href="../files/salome2_sp3_generationgui_functions.htm"><b>16</b></a> <a href="../files/salome2_sp3_buildgui_functions.htm"><b>17</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>18</b></a> <a href="../point.htm"><b>19</b></a> <a href="../pipe_creation.htm"><b>20</b></a> <a href="../measurement_tools.htm"><b>21</b></a> <a href="../line.htm"><b>22</b></a> <a href="../revolution.htm"><b>23</b></a> <a href="../repairing_operations.htm"><b>24</b></a> <a href="../vector.htm"><b>25</b></a> <a href="../transformation_operations.htm"><b>26</b></a> </nobr><br><a href="../repairing_operations.htm"><b>edge_ind</b></a> <br><a href="../repairing_operations.htm"><b>edge_points</b></a> <br><a href="../building_by_blocks.htm"><b>edge1</b></a> <br><a href="../building_by_blocks.htm"><b>edge2</b></a> <br><a href="../building_by_blocks.htm"><b>edge3</b></a> <br><a href="../building_by_blocks.htm"><b>edge4</b></a> <br><nobr>edgeid <a href="../add_point_on_edge.htm"><b>1</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>2</b></a> </nobr><br><nobr>edges <a href="../check_free_boundaries.htm"><b>1</b></a> <a href="../chamfer.htm"><b>2</b></a> <a href="../building_by_blocks.htm"><b>3</b></a> <a href="../box.htm"><b>4</b></a> <a href="../explode.htm"><b>5</b></a> <a href="../close_contour.htm"><b>6</b></a> <a href="../filling.htm"><b>7</b></a> <a href="../fillet.htm"><b>8</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>9</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>10</b></a> <a href="../files/salome2_sp3_measuregui_functions.htm"><b>11</b></a> <a href="../files/salome2_sp3_generationgui_functions.htm"><b>12</b></a> <a href="../files/salome2_sp3_buildgui_functions.htm"><b>13</b></a> <a href="../newentity_blocks.htm"><b>14</b></a> <a href="../sketcher.htm"><b>15</b></a> <a href="../shell.htm"><b>16</b></a> <a href="../shape_processing.htm"><b>17</b></a> <a href="../propagate.htm"><b>18</b></a> <a href="../wireframe_and_shading.htm"><b>19</b></a> <a href="../wire.htm"><b>20</b></a> <a href="../transformation_operations.htm"><b>21</b></a> </nobr><br><a href="../working_with_groups.htm"><b>edit</b></a> <br><a href="../working_with_groups.htm"><b>editing</b></a> <br><a name="bms_EG"></a><a name="subkey_EG"></a><a href="../files/salome2_sp3_measuregui_functions.htm"><b>egdemaxtol</b></a> <br><a href="../files/salome2_sp3_measuregui_functions.htm"><b>egdemintol</b></a> <br><a name="bms_EI"></a><a name="subkey_EI"></a><a href="../newentity_blocks.htm"><b>either</b></a> <br><nobr><a name="bms_EL"></a><a name="subkey_EL"></a>element <a href="../close_contour.htm"><b>1</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>2</b></a> <a href="../files/salome2_sp3_measuregui_functions.htm"><b>3</b></a> <a href="../files/salome2_sp3_displaygui_functions.htm"><b>4</b></a> <a href="../files/salome2_sp3_buildgui_functions.htm"><b>5</b></a> <a href="../sketcher.htm"><b>6</b></a> </nobr><br><a href="../newentity_blocks.htm"><b>elementary</b></a> <br><nobr>elements <a href="../face.htm"><b>1</b></a> <a href="../files/salome2_sp3_primitivegui_functions.htm"><b>2</b></a> <a href="../files/salome2_sp3_measuregui_functions.htm"><b>3</b></a> <a href="../files/salome2_sp3_generationgui_functions.htm"><b>4</b></a> <a href="../files/salome2_sp3_buildgui_functions.htm"><b>5</b></a> <a href="../files/salome2_sp3_booleangui_functions.htm"><b>6</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>7</b></a> <a href="../working_with_groups.htm"><b>8</b></a> </nobr><br><nobr>ellipse <a href="../basic_geometrical_objects.htm"><b>1</b></a> <a href="../ellipse.htm"><b>2</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>3</b></a> </nobr><br><nobr>else <a href="../measurement_tools.htm"><b>1</b></a> <a href="../repairing_operations.htm"><b>2</b></a> </nobr><br><nobr><a name="bms_EM"></a><a name="subkey_EM"></a>empty <a href="../files/salome2_sp3_repairgui_functions.htm"><b>1</b></a> <a href="../suppress_holes.htm"><b>2</b></a> <a href="../suppress_internal_wires.htm"><b>3</b></a> </nobr><br><a name="bms_EN"></a><a name="subkey_EN"></a><a href="../files/salome2_sp3_measuregui_functions.htm"><b>encountered</b></a> <br><nobr>end <a href="../extrusion.htm"><b>1</b></a> <a href="../close_contour.htm"><b>2</b></a> <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>3</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>4</b></a> <a href="../modify_the_location.htm"><b>5</b></a> <a href="../sketcher.htm"><b>6</b></a> <a href="../repairing_operations.htm"><b>7</b></a> <a href="../vector.htm"><b>8</b></a> <a href="../translation.htm"><b>9</b></a> <a href="../transformation_operations.htm"><b>10</b></a> </nobr><br><nobr>ending <a href="../arc.htm"><b>1</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>2</b></a> </nobr><br><nobr>ends <a href="../close_contour.htm"><b>1</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>2</b></a> <a href="../repairing_operations.htm"><b>3</b></a> </nobr><br><nobr>enter <a href="../files/salome2_sp3_basicgui_functions.htm"><b>1</b></a> <a href="../working_with_groups.htm"><b>2</b></a> </nobr><br><a href="../files/salome2_sp3_measuregui_functions.htm"><b>entire</b></a> <br><nobr>entity <a href="../circle.htm"><b>1</b></a> <a href="../box.htm"><b>2</b></a> <a href="../arc.htm"><b>3</b></a> <a href="../face.htm"><b>4</b></a> <a href="../extrusion.htm"><b>5</b></a> <a href="../explode.htm"><b>6</b></a> <a href="../ellipse.htm"><b>7</b></a> <a href="../edge.htm"><b>8</b></a> <a href="../cylinder.htm"><b>9</b></a> <a href="../curve.htm"><b>10</b></a> <a href="../cone.htm"><b>11</b></a> <a href="../compound.htm"><b>12</b></a> <a href="../filling.htm"><b>13</b></a> <a href="../files/salome2_sp3_primitivegui_functions.htm"><b>14</b></a> <a href="../files/salome2_sp3_generationgui_functions.htm"><b>15</b></a> <a href="../files/salome2_sp3_buildgui_functions.htm"><b>16</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>17</b></a> <a href="../point.htm"><b>18</b></a> <a href="../plane.htm"><b>19</b></a> <a href="../pipe_creation.htm"><b>20</b></a> <a href="../newentity_blocks.htm"><b>21</b></a> <a href="../local_coordinate_system.htm"><b>22</b></a> <a href="../line.htm"><b>23</b></a> <a href="../sphere.htm"><b>24</b></a> <a href="../solid.htm"><b>25</b></a> <a href="../sketcher.htm"><b>26</b></a> <a href="../shell.htm"><b>27</b></a> <a href="../revolution.htm"><b>28</b></a> <a href="../working_with_groups.htm"><b>29</b></a> <a href="../working_plane.htm"><b>30</b></a> <a href="../wire.htm"><b>31</b></a> <a href="../vector.htm"><b>32</b></a> <a href="../turus.htm"><b>33</b></a> </nobr><br><nobr><a name="bms_EQ"></a><a name="subkey_EQ"></a>equal <a href="../cone.htm"><b>1</b></a> <a href="../sketcher.htm"><b>2</b></a> </nobr><br><a name="bms_ER"></a><a name="subkey_ER"></a><a href="../files/salome2_sp3_displaygui_functions.htm"><b>erase</b></a> <br><a href="../files/salome2_sp3_displaygui_functions.htm"><b>eraseall</b></a> <br><a href="../files/salome2_sp3_displaygui_functions.htm"><b>eraseonly</b></a> <br><a href="../files/salome2_sp3_displaygui_functions.htm"><b>erases</b></a> <br><nobr>error <a href="../check_free_boundaries.htm"><b>1</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>2</b></a> <a href="../groups.htm"><b>3</b></a> </nobr><br><nobr>errors <a href="../files/salome2_sp3_measuregui_functions.htm"><b>1</b></a> <a href="../groups.htm"><b>2</b></a> </nobr><br><nobr><a name="bms_ET"></a><a name="subkey_ET"></a>etc <a href="../explode.htm"><b>1</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>2</b></a> <a href="../files/salome2_sp3_buildgui_functions.htm"><b>3</b></a> <a href="../shape_processing.htm"><b>4</b></a> </nobr><br><nobr><a name="bms_EX"></a><a name="subkey_EX"></a>example <a href="../check_free_boundaries.htm"><b>1</b></a> <a href="../changing_displaying_parameters.htm"><b>2</b></a> <a href="../box.htm"><b>3</b></a> <a href="../archimede.htm"><b>4</b></a> <a href="../arc.htm"><b>5</b></a> <a href="../add_point_on_edge.htm"><b>6</b></a> <a href="../face.htm"><b>7</b></a> <a href="../explode_on_blocks.htm"><b>8</b></a> <a href="../ellipse.htm"><b>9</b></a> <a href="../edge.htm"><b>10</b></a> <a href="../cylinder.htm"><b>11</b></a> <a href="../cut.htm"><b>12</b></a> <a href="../cone.htm"><b>13</b></a> <a href="../compound.htm"><b>14</b></a> <a href="../common.htm"><b>15</b></a> <a href="../glue_faces.htm"><b>16</b></a> <a href="../fuse.htm"><b>17</b></a> <a href="../filling.htm"><b>18</b></a> <a href="../fillet.htm"><b>19</b></a> <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>20</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>21</b></a> <a href="../files/salome2_sp3_primitivegui_functions.htm"><b>22</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>23</b></a> <a href="../files/salome2_sp3_geomtoolsgui_functions.htm"><b>24</b></a> <a href="../files/salome2_sp3_generationgui_functions.htm"><b>25</b></a> <a href="../files/salome2_sp3_buildgui_functions.htm"><b>26</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>27</b></a> <a href="../point.htm"><b>28</b></a> <a href="../pipe_creation.htm"><b>29</b></a> <a href="../partition.htm"><b>30</b></a> <a href="../offset_surface.htm"><b>31</b></a> <a href="../newentity_blocks.htm"><b>32</b></a> <a href="../local_coordinate_system.htm"><b>33</b></a> <a href="../line.htm"><b>34</b></a> <a href="../isos.htm"><b>35</b></a> <a href="../suppress_holes.htm"><b>36</b></a> <a href="../suppress_faces.htm"><b>37</b></a> <a href="../sphere.htm"><b>38</b></a> <a href="../solid.htm"><b>39</b></a> <a href="../sketcher.htm"><b>40</b></a> <a href="../shell.htm"><b>41</b></a> <a href="../shape_processing.htm"><b>42</b></a> <a href="../sewing.htm"><b>43</b></a> <a href="../section.htm"><b>44</b></a> <a href="../scale_transform.htm"><b>45</b></a> <a href="../rotation.htm"><b>46</b></a> <a href="../revolution.htm"><b>47</b></a> <a href="../repairing_operations.htm"><b>48</b></a> <a href="../propagate.htm"><b>49</b></a> <a href="../working_with_groups.htm"><b>50</b></a> <a href="../wire.htm"><b>51</b></a> <a href="../turus.htm"><b>52</b></a> <a href="../translation.htm"><b>53</b></a> <a href="../suppress_internal_wires.htm"><b>54</b></a> </nobr><br><nobr>examples <a href="../circle.htm"><b>1</b></a> <a href="../check_free_faces.htm"><b>2</b></a> <a href="../check_free_boundaries.htm"><b>3</b></a> <a href="../chamfer.htm"><b>4</b></a> <a href="../box.htm"><b>5</b></a> <a href="../archimede.htm"><b>6</b></a> <a href="../arc.htm"><b>7</b></a> <a href="../add_point_on_edge.htm"><b>8</b></a> <a href="../face.htm"><b>9</b></a> <a href="../extrusion.htm"><b>10</b></a> <a href="../explode_on_blocks.htm"><b>11</b></a> <a href="../ellipse.htm"><b>12</b></a> <a href="../edge.htm"><b>13</b></a> <a href="../cylinder.htm"><b>14</b></a> <a href="../cut.htm"><b>15</b></a> <a href="../curve.htm"><b>16</b></a> <a href="../cone.htm"><b>17</b></a> <a href="../compound.htm"><b>18</b></a> <a href="../common.htm"><b>19</b></a> <a href="../color.htm"><b>20</b></a> <a href="../close_contour.htm"><b>21</b></a> <a href="../glue_faces.htm"><b>22</b></a> <a href="../fuse.htm"><b>23</b></a> <a href="../filling.htm"><b>24</b></a> <a href="../fillet.htm"><b>25</b></a> <a href="../files/salome2_sp3_booleangui_functions.htm"><b>26</b></a> <a href="../point.htm"><b>27</b></a> <a href="../plane.htm"><b>28</b></a> <a href="../pipe_creation.htm"><b>29</b></a> <a href="../partition.htm"><b>30</b></a> <a href="../offset_surface.htm"><b>31</b></a> <a href="../newentity_blocks.htm"><b>32</b></a> <a href="../multi_translation.htm"><b>33</b></a> <a href="../multi_transformation.htm"><b>34</b></a> <a href="../multi_rotation.htm"><b>35</b></a> <a href="../modify_the_location.htm"><b>36</b></a> <a href="../mirror_image.htm"><b>37</b></a> <a href="../line.htm"><b>38</b></a> <a href="../suppress_holes.htm"><b>39</b></a> <a href="../suppress_faces.htm"><b>40</b></a> <a href="../sphere.htm"><b>41</b></a> <a href="../solid.htm"><b>42</b></a> <a href="../sketcher.htm"><b>43</b></a> <a href="../shell.htm"><b>44</b></a> <a href="../shape_processing.htm"><b>45</b></a> <a href="../sewing.htm"><b>46</b></a> <a href="../section.htm"><b>47</b></a> <a href="../scale_transform.htm"><b>48</b></a> <a href="../rotation.htm"><b>49</b></a> <a href="../revolution.htm"><b>50</b></a> <a href="../propagate.htm"><b>51</b></a> <a href="../working_with_groups.htm"><b>52</b></a> <a href="../wireframe_and_shading.htm"><b>53</b></a> <a href="../wire.htm"><b>54</b></a> <a href="../vector.htm"><b>55</b></a> <a href="../turus.htm"><b>56</b></a> <a href="../transparency.htm"><b>57</b></a> <a href="../translation.htm"><b>58</b></a> <a href="../suppress_internal_wires.htm"><b>59</b></a> </nobr><br><nobr>except <a href="../files/salome2_sp3_repairgui_functions.htm"><b>1</b></a> <a href="../suppress_internal_wires.htm"><b>2</b></a> </nobr><br><nobr>existing <a href="../plane.htm"><b>1</b></a> <a href="../sketcher.htm"><b>2</b></a> <a href="../working_with_groups.htm"><b>3</b></a> </nobr><br><a href="../files/salome2_sp3_geomtoolsgui_functions.htm"><b>expand</b></a> <br><nobr>explode <a href="../blocks_operations.htm"><b>1</b></a> <a href="../blocks.htm"><b>2</b></a> <a href="../explode_on_blocks.htm"><b>3</b></a> <a href="../explode.htm"><b>4</b></a> <a href="../geometrical_objects.htm"><b>5</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>6</b></a> <a href="../files/salome2_sp3_buildgui_functions.htm"><b>7</b></a> </nobr><br><nobr>exploded <a href="../explode_on_blocks.htm"><b>1</b></a> <a href="../explode.htm"><b>2</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>3</b></a> <a href="../files/salome2_sp3_buildgui_functions.htm"><b>4</b></a> </nobr><br><a href="../explode.htm"><b>explodes</b></a> <br><nobr>export <a href="../files/introduction_to_geom.htm"><b>1</b></a> <a href="../files/salome2_sp3_geomtoolsgui_functions.htm"><b>2</b></a> </nobr><br><a href="../files/salome2_sp3_geomtoolsgui_functions.htm"><b>exportation</b></a> <br><a href="../files/salome2_sp3_geomtoolsgui_functions.htm"><b>exporting</b></a> <br><a href="../files/salome2_sp3_measuregui_functions.htm"><b>extra</b></a> <br><nobr>extracted <a href="../explode_on_blocks.htm"><b>1</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>2</b></a> </nobr><br><nobr>extruded <a href="../files/salome2_sp3_generationgui_functions.htm"><b>1</b></a> <a href="../pipe_creation.htm"><b>2</b></a> <a href="../revolution.htm"><b>3</b></a> </nobr><br><nobr>extrusion <a href="../extrusion.htm"><b>1</b></a> <a href="../files/salome2_sp3_generationgui_functions.htm"><b>2</b></a> </nobr><br>\r
<br><br>\r
<nobr><a name="bm_F"></a><a name="subkey_F{"></a>f <a href="../geometrical_objects.htm"><b>1</b></a> <a href="../sketcher_tui.htm"><b>2</b></a> </nobr><br><a href="../repairing_operations.htm"><b>f_2</b></a> <br><a href="../transformation_operations.htm"><b>f_ind_1</b></a> <br><a href="../transformation_operations.htm"><b>f_ind_2</b></a> <br><a href="../newentity_blocks.htm"><b>f1</b></a> <br><a href="../repairing_operations.htm"><b>f1_id</b></a> <br><a href="../newentity_blocks.htm"><b>f2</b></a> <br><a href="../newentity_blocks.htm"><b>f3</b></a> <br><a href="../newentity_blocks.htm"><b>f4</b></a> <br><a href="../newentity_blocks.htm"><b>f5</b></a> <br><a href="../newentity_blocks.htm"><b>f6</b></a> <br><br><br></p><p class="ftsbody" align="center"><a href="whlstf4.htm" target="_self" title="previous search group"><b>>></b></a>\r
\r
<body marginheight="0" marginwidth="0" bgproperties="fixed">\r
<p class="ftsbody" align="center"><a href="whlstf3.htm" target="_self" title="previous search group"><b><<</b></a><br><br></p>\r
<p class="ftsbody" >\r
-<nobr><a name="bms_FA"></a><a name="subkey_FA"></a>face <a href="../check_free_faces.htm"><b>1</b></a> <a href="../chamfer.htm"><b>2</b></a> <a href="../building_by_blocks.htm"><b>3</b></a> <a href="../basic_geometrical_objects.htm"><b>4</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>5</b></a> <a href="../face.htm"><b>6</b></a> <a href="../extrusion.htm"><b>7</b></a> <a href="../close_contour.htm"><b>8</b></a> <a href="../groups.htm"><b>9</b></a> <a href="../geometrical_objects.htm"><b>10</b></a> <a href="../filling.htm"><b>11</b></a> <a href="../fillet.htm"><b>12</b></a> <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>13</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>14</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>15</b></a> <a href="../files/salome2_sp3_measuregui_functions.htm"><b>16</b></a> <a href="../files/salome2_sp3_generationgui_functions.htm"><b>17</b></a> <a href="../files/salome2_sp3_buildgui_functions.htm"><b>18</b></a> <a href="../plane.htm"><b>19</b></a> <a href="../pipe_creation.htm"><b>20</b></a> <a href="../partition.htm"><b>21</b></a> <a href="../offset_surface.htm"><b>22</b></a> <a href="../newentity_blocks.htm"><b>23</b></a> <a href="../multi_transformation.htm"><b>24</b></a> <a href="../measurement_tools.htm"><b>25</b></a> <a href="../transformation_operations.htm"><b>26</b></a> <a href="../suppress_internal_wires.htm"><b>27</b></a> <a href="../suppress_faces.htm"><b>28</b></a> <a href="../sketcher_tui.htm"><b>29</b></a> <a href="../sketcher.htm"><b>30</b></a> <a href="../shape_processing.htm"><b>31</b></a> <a href="../revolution.htm"><b>32</b></a> <a href="../repairing_operations.htm"><b>33</b></a> <a href="../working_plane.htm"><b>34</b></a> </nobr><br><a href="../repairing_operations.htm"><b>face_name</b></a> <br><a href="../repairing_operations.htm"><b>face_rot</b></a> <br><nobr>face1 <a href="../chamfer.htm"><b>1</b></a> <a href="../complex_objects.htm"><b>2</b></a> <a href="../geometrical_objects.htm"><b>3</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>4</b></a> </nobr><br><nobr>face2 <a href="../chamfer.htm"><b>1</b></a> <a href="../complex_objects.htm"><b>2</b></a> <a href="../geometrical_objects.htm"><b>3</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>4</b></a> </nobr><br><a href="../geometrical_objects.htm"><b>face3</b></a> <br><a href="../groups.htm"><b>faceid</b></a> <br><a href="../files/salome2_sp3_measuregui_functions.htm"><b>facemaxtol</b></a> <br><a href="../files/salome2_sp3_measuregui_functions.htm"><b>facemintol</b></a> <br><nobr>faces <a href="../check_free_faces.htm"><b>1</b></a> <a href="../chamfer.htm"><b>2</b></a> <a href="../building_by_blocks.htm"><b>3</b></a> <a href="../explode_on_blocks.htm"><b>4</b></a> <a href="../explode.htm"><b>5</b></a> <a href="../complex_objects.htm"><b>6</b></a> <a href="../groups.htm"><b>7</b></a> <a href="../glue_faces.htm"><b>8</b></a> <a href="../geometrical_objects.htm"><b>9</b></a> <a href="../fillet.htm"><b>10</b></a> <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>11</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>12</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>13</b></a> <a href="../files/salome2_sp3_measuregui_functions.htm"><b>14</b></a> <a href="../files/salome2_sp3_buildgui_functions.htm"><b>15</b></a> <a href="../offset_surface.htm"><b>16</b></a> <a href="../newentity_blocks.htm"><b>17</b></a> <a href="../multi_transformation.htm"><b>18</b></a> <a href="../measurement_tools.htm"><b>19</b></a> <a href="../transformation_operations.htm"><b>20</b></a> <a href="../suppress_internal_wires.htm"><b>21</b></a> <a href="../suppress_faces.htm"><b>22</b></a> <a href="../shell.htm"><b>23</b></a> <a href="../shape_processing.htm"><b>24</b></a> <a href="../repairing_operations.htm"><b>25</b></a> </nobr><br><nobr>factor <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>1</b></a> <a href="../transformation_operations.htm"><b>2</b></a> <a href="../scale_transform.htm"><b>3</b></a> </nobr><br><nobr>failed <a href="../measurement_tools.htm"><b>1</b></a> <a href="../repairing_operations.htm"><b>2</b></a> </nobr><br><nobr>false <a href="../check_free_boundaries.htm"><b>1</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>2</b></a> </nobr><br><nobr><a name="bms_FI"></a><a name="subkey_FI"></a>fields <a href="../files/salome2_sp3_basicgui_functions.htm"><b>1</b></a> <a href="../local_coordinate_system.htm"><b>2</b></a> </nobr><br><a href="../files/salome2_sp3_geomtoolsgui_functions.htm"><b>file</b></a> <br><a href="../files/salome2_sp3_geomtoolsgui_functions.htm"><b>files</b></a> <br><nobr>fill <a href="../files/salome2_sp3_repairgui_functions.htm"><b>1</b></a> <a href="../files/salome2_sp3_generationgui_functions.htm"><b>2</b></a> <a href="../suppress_holes.htm"><b>3</b></a> </nobr><br><nobr>filled <a href="../files/salome2_sp3_basicgui_functions.htm"><b>1</b></a> <a href="../local_coordinate_system.htm"><b>2</b></a> </nobr><br><nobr>fillet <a href="../chamfer.htm"><b>1</b></a> <a href="../fillet.htm"><b>2</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>3</b></a> <a href="../transformation_operations.htm"><b>4</b></a> </nobr><br><a href="../transformation_operations.htm"><b>filletall</b></a> <br><nobr>fillets <a href="../fillet.htm"><b>1</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>2</b></a> </nobr><br><nobr>filling <a href="../complex_objects.htm"><b>1</b></a> <a href="../filling.htm"><b>2</b></a> <a href="../files/salome2_sp3_generationgui_functions.htm"><b>3</b></a> </nobr><br><nobr>finally <a href="../point.htm"><b>1</b></a> <a href="../plane.htm"><b>2</b></a> <a href="../mirror_image.htm"><b>3</b></a> <a href="../working_plane.htm"><b>4</b></a> <a href="../translation.htm"><b>5</b></a> </nobr><br><nobr>first <a href="../files/salome2_sp3_basicgui_functions.htm"><b>1</b></a> <a href="../edge.htm"><b>2</b></a> <a href="../cone.htm"><b>3</b></a> <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>4</b></a> <a href="../files/salome2_sp3_primitivegui_functions.htm"><b>5</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>6</b></a> <a href="../files/salome2_sp3_buildgui_functions.htm"><b>7</b></a> <a href="../files/salome2_sp3_booleangui_functions.htm"><b>8</b></a> <a href="../partition.htm"><b>9</b></a> <a href="../multi_translation.htm"><b>10</b></a> <a href="../multi_transformation.htm"><b>11</b></a> <a href="../sketcher_tui.htm"><b>12</b></a> </nobr><br><nobr>firstly <a href="../circle.htm"><b>1</b></a> <a href="../box.htm"><b>2</b></a> <a href="../cylinder.htm"><b>3</b></a> <a href="../cone.htm"><b>4</b></a> <a href="../point.htm"><b>5</b></a> <a href="../plane.htm"><b>6</b></a> <a href="../mirror_image.htm"><b>7</b></a> <a href="../sphere.htm"><b>8</b></a> <a href="../working_plane.htm"><b>9</b></a> <a href="../vector.htm"><b>10</b></a> <a href="../turus.htm"><b>11</b></a> <a href="../translation.htm"><b>12</b></a> </nobr><br><nobr>fix <a href="../files/salome2_sp3_repairgui_functions.htm"><b>1</b></a> <a href="../shape_processing.htm"><b>2</b></a> </nobr><br><nobr>fixfacesize <a href="../files/salome2_sp3_repairgui_functions.htm"><b>1</b></a> <a href="../shape_processing.htm"><b>2</b></a> </nobr><br><nobr>fixing <a href="../files/salome2_sp3_repairgui_functions.htm"><b>1</b></a> <a href="../shape_processing.htm"><b>2</b></a> </nobr><br><nobr>fixshape <a href="../files/salome2_sp3_repairgui_functions.htm"><b>1</b></a> <a href="../shape_processing.htm"><b>2</b></a> <a href="../repairing_operations.htm"><b>3</b></a> </nobr><br><a name="bms_FL"></a><a name="subkey_FL"></a><a href="../files/salome2_sp3_measuregui_functions.htm"><b>flag</b></a> <br><a href="../repairing_operations.htm"><b>flight_solid</b></a> <br><nobr><a name="bms_FO"></a><a name="subkey_FO"></a>following <a href="../files/salome2_sp3_measuregui_functions.htm"><b>1</b></a> <a href="../files/salome2_sp3_displaygui_functions.htm"><b>2</b></a> <a href="../files/salome2_sp3_buildgui_functions.htm"><b>3</b></a> <a href="../files/salome2_sp3_booleangui_functions.htm"><b>4</b></a> <a href="../sketcher_tui.htm"><b>5</b></a> <a href="../sketcher.htm"><b>6</b></a> </nobr><br><a href="../files/salome2_sp3_geomtoolsgui_functions.htm"><b>format</b></a> <br><a href="../files/introduction_to_geom.htm"><b>formats</b></a> <br><nobr>four <a href="../building_by_blocks.htm"><b>1</b></a> <a href="../newentity_blocks.htm"><b>2</b></a> </nobr><br><nobr><a name="bms_FR"></a><a name="subkey_FR"></a>free <a href="../check_free_faces.htm"><b>1</b></a> <a href="../check_free_boundaries.htm"><b>2</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>3</b></a> <a href="../suppress_holes.htm"><b>4</b></a> <a href="../sewing.htm"><b>5</b></a> <a href="../repairing_operations.htm"><b>6</b></a> </nobr><br><a name="bms_FU"></a><a name="subkey_FU"></a><a href="../newentity_blocks.htm"><b>functionalities</b></a> <br><nobr>functionality <a href="../sketcher.htm"><b>1</b></a> <a href="../working_with_groups.htm"><b>2</b></a> </nobr><br><nobr>functions <a href="../files/introduction_to_geom.htm"><b>1</b></a> <a href="../files/salome2_sp3_buildgui_functions.htm"><b>2</b></a> <a href="../transformation_operations.htm"><b>3</b></a> </nobr><br><nobr>fuse <a href="../changing_display_parameters.htm"><b>1</b></a> <a href="../boolean_operations.htm"><b>2</b></a> <a href="../fuse.htm"><b>3</b></a> <a href="../files/salome2_sp3_booleangui_functions.htm"><b>4</b></a> </nobr><br><a href="../changing_display_parameters.htm"><b>fuse_id</b></a> <br>\r
+<nobr><a name="bms_FA"></a><a name="subkey_FA"></a>face <a href="../check_free_faces.htm"><b>1</b></a> <a href="../chamfer.htm"><b>2</b></a> <a href="../building_by_blocks.htm"><b>3</b></a> <a href="../basic_geometrical_objects.htm"><b>4</b></a> <a href="../face.htm"><b>5</b></a> <a href="../extrusion.htm"><b>6</b></a> <a href="../close_contour.htm"><b>7</b></a> <a href="../geometrical_objects.htm"><b>8</b></a> <a href="../filling.htm"><b>9</b></a> <a href="../fillet.htm"><b>10</b></a> <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>11</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>12</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>13</b></a> <a href="../files/salome2_sp3_measuregui_functions.htm"><b>14</b></a> <a href="../files/salome2_sp3_generationgui_functions.htm"><b>15</b></a> <a href="../files/salome2_sp3_buildgui_functions.htm"><b>16</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>17</b></a> <a href="../plane.htm"><b>18</b></a> <a href="../pipe_creation.htm"><b>19</b></a> <a href="../partition.htm"><b>20</b></a> <a href="../offset_surface.htm"><b>21</b></a> <a href="../newentity_blocks.htm"><b>22</b></a> <a href="../multi_transformation.htm"><b>23</b></a> <a href="../measurement_tools.htm"><b>24</b></a> <a href="../groups.htm"><b>25</b></a> <a href="../suppress_faces.htm"><b>26</b></a> <a href="../sketcher_tui.htm"><b>27</b></a> <a href="../sketcher.htm"><b>28</b></a> <a href="../shape_processing.htm"><b>29</b></a> <a href="../revolution.htm"><b>30</b></a> <a href="../repairing_operations.htm"><b>31</b></a> <a href="../working_plane.htm"><b>32</b></a> <a href="../transformation_operations.htm"><b>33</b></a> <a href="../suppress_internal_wires.htm"><b>34</b></a> </nobr><br><a href="../repairing_operations.htm"><b>face_name</b></a> <br><a href="../repairing_operations.htm"><b>face_rot</b></a> <br><nobr>face1 <a href="../chamfer.htm"><b>1</b></a> <a href="../complex_objects.htm"><b>2</b></a> <a href="../geometrical_objects.htm"><b>3</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>4</b></a> </nobr><br><nobr>face2 <a href="../chamfer.htm"><b>1</b></a> <a href="../complex_objects.htm"><b>2</b></a> <a href="../geometrical_objects.htm"><b>3</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>4</b></a> </nobr><br><a href="../geometrical_objects.htm"><b>face3</b></a> <br><a href="../groups.htm"><b>faceid</b></a> <br><a href="../files/salome2_sp3_measuregui_functions.htm"><b>facemaxtol</b></a> <br><a href="../files/salome2_sp3_measuregui_functions.htm"><b>facemintol</b></a> <br><nobr>faces <a href="../check_free_faces.htm"><b>1</b></a> <a href="../chamfer.htm"><b>2</b></a> <a href="../building_by_blocks.htm"><b>3</b></a> <a href="../explode_on_blocks.htm"><b>4</b></a> <a href="../explode.htm"><b>5</b></a> <a href="../complex_objects.htm"><b>6</b></a> <a href="../glue_faces.htm"><b>7</b></a> <a href="../geometrical_objects.htm"><b>8</b></a> <a href="../fillet.htm"><b>9</b></a> <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>10</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>11</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>12</b></a> <a href="../files/salome2_sp3_measuregui_functions.htm"><b>13</b></a> <a href="../files/salome2_sp3_buildgui_functions.htm"><b>14</b></a> <a href="../offset_surface.htm"><b>15</b></a> <a href="../newentity_blocks.htm"><b>16</b></a> <a href="../multi_transformation.htm"><b>17</b></a> <a href="../measurement_tools.htm"><b>18</b></a> <a href="../groups.htm"><b>19</b></a> <a href="../suppress_faces.htm"><b>20</b></a> <a href="../shell.htm"><b>21</b></a> <a href="../shape_processing.htm"><b>22</b></a> <a href="../repairing_operations.htm"><b>23</b></a> <a href="../transformation_operations.htm"><b>24</b></a> <a href="../suppress_internal_wires.htm"><b>25</b></a> </nobr><br><nobr>factor <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>1</b></a> <a href="../scale_transform.htm"><b>2</b></a> <a href="../transformation_operations.htm"><b>3</b></a> </nobr><br><nobr>failed <a href="../measurement_tools.htm"><b>1</b></a> <a href="../repairing_operations.htm"><b>2</b></a> </nobr><br><nobr>false <a href="../check_free_boundaries.htm"><b>1</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>2</b></a> </nobr><br><a name="bms_FI"></a><a name="subkey_FI"></a><a href="../files/salome2_sp3_basicgui_functions.htm"><b>fields</b></a> <br><a href="../files/salome2_sp3_geomtoolsgui_functions.htm"><b>file</b></a> <br><a href="../files/salome2_sp3_geomtoolsgui_functions.htm"><b>files</b></a> <br><nobr>fill <a href="../files/salome2_sp3_repairgui_functions.htm"><b>1</b></a> <a href="../files/salome2_sp3_generationgui_functions.htm"><b>2</b></a> <a href="../suppress_holes.htm"><b>3</b></a> </nobr><br><nobr>filled <a href="../files/salome2_sp3_basicgui_functions.htm"><b>1</b></a> <a href="../local_coordinate_system.htm"><b>2</b></a> <a href="../wireframe_and_shading.htm"><b>3</b></a> </nobr><br><nobr>fillet <a href="../chamfer.htm"><b>1</b></a> <a href="../fillet.htm"><b>2</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>3</b></a> <a href="../transformation_operations.htm"><b>4</b></a> </nobr><br><a href="../transformation_operations.htm"><b>filletall</b></a> <br><nobr>fillets <a href="../fillet.htm"><b>1</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>2</b></a> </nobr><br><nobr>filling <a href="../complex_objects.htm"><b>1</b></a> <a href="../color.htm"><b>2</b></a> <a href="../filling.htm"><b>3</b></a> <a href="../files/salome2_sp3_generationgui_functions.htm"><b>4</b></a> </nobr><br><nobr>finally <a href="../point.htm"><b>1</b></a> <a href="../plane.htm"><b>2</b></a> <a href="../mirror_image.htm"><b>3</b></a> <a href="../working_with_groups.htm"><b>4</b></a> <a href="../working_plane.htm"><b>5</b></a> <a href="../translation.htm"><b>6</b></a> </nobr><br><nobr>first <a href="../edge.htm"><b>1</b></a> <a href="../cone.htm"><b>2</b></a> <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>3</b></a> <a href="../files/salome2_sp3_primitivegui_functions.htm"><b>4</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>5</b></a> <a href="../files/salome2_sp3_buildgui_functions.htm"><b>6</b></a> <a href="../files/salome2_sp3_booleangui_functions.htm"><b>7</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>8</b></a> <a href="../partition.htm"><b>9</b></a> <a href="../multi_translation.htm"><b>10</b></a> <a href="../multi_transformation.htm"><b>11</b></a> <a href="../modify_the_location.htm"><b>12</b></a> <a href="../sketcher_tui.htm"><b>13</b></a> </nobr><br><nobr>firstly <a href="../circle.htm"><b>1</b></a> <a href="../box.htm"><b>2</b></a> <a href="../cylinder.htm"><b>3</b></a> <a href="../cone.htm"><b>4</b></a> <a href="../point.htm"><b>5</b></a> <a href="../plane.htm"><b>6</b></a> <a href="../mirror_image.htm"><b>7</b></a> <a href="../local_coordinate_system.htm"><b>8</b></a> <a href="../sphere.htm"><b>9</b></a> <a href="../working_plane.htm"><b>10</b></a> <a href="../vector.htm"><b>11</b></a> <a href="../turus.htm"><b>12</b></a> <a href="../translation.htm"><b>13</b></a> </nobr><br><nobr>fix <a href="../files/salome2_sp3_repairgui_functions.htm"><b>1</b></a> <a href="../shape_processing.htm"><b>2</b></a> </nobr><br><nobr>fixfacesize <a href="../files/salome2_sp3_repairgui_functions.htm"><b>1</b></a> <a href="../shape_processing.htm"><b>2</b></a> </nobr><br><nobr>fixing <a href="../files/salome2_sp3_repairgui_functions.htm"><b>1</b></a> <a href="../shape_processing.htm"><b>2</b></a> </nobr><br><nobr>fixshape <a href="../files/salome2_sp3_repairgui_functions.htm"><b>1</b></a> <a href="../shape_processing.htm"><b>2</b></a> <a href="../repairing_operations.htm"><b>3</b></a> </nobr><br><a name="bms_FL"></a><a name="subkey_FL"></a><a href="../files/salome2_sp3_measuregui_functions.htm"><b>flag</b></a> <br><a href="../repairing_operations.htm"><b>flight_solid</b></a> <br><nobr><a name="bms_FO"></a><a name="subkey_FO"></a>following <a href="../files/salome2_sp3_measuregui_functions.htm"><b>1</b></a> <a href="../files/salome2_sp3_displaygui_functions.htm"><b>2</b></a> <a href="../files/salome2_sp3_buildgui_functions.htm"><b>3</b></a> <a href="../files/salome2_sp3_booleangui_functions.htm"><b>4</b></a> <a href="../sketcher_tui.htm"><b>5</b></a> <a href="../sketcher.htm"><b>6</b></a> <a href="../working_with_groups.htm"><b>7</b></a> <a href="../transparency.htm"><b>8</b></a> </nobr><br><a href="../files/salome2_sp3_geomtoolsgui_functions.htm"><b>format</b></a> <br><nobr>formats <a href="../files/introduction_to_geom.htm"><b>1</b></a> <a href="../files/salome2_sp3_geomtoolsgui_functions.htm"><b>2</b></a> </nobr><br><nobr>four <a href="../building_by_blocks.htm"><b>1</b></a> <a href="../newentity_blocks.htm"><b>2</b></a> </nobr><br><nobr><a name="bms_FR"></a><a name="subkey_FR"></a>free <a href="../check_free_faces.htm"><b>1</b></a> <a href="../check_free_boundaries.htm"><b>2</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>3</b></a> <a href="../suppress_holes.htm"><b>4</b></a> <a href="../sewing.htm"><b>5</b></a> <a href="../repairing_operations.htm"><b>6</b></a> </nobr><br><a name="bms_FU"></a><a name="subkey_FU"></a><a href="../newentity_blocks.htm"><b>functionalities</b></a> <br><nobr>functionality <a href="../sketcher.htm"><b>1</b></a> <a href="../working_with_groups.htm"><b>2</b></a> </nobr><br><nobr>functions <a href="../files/introduction_to_geom.htm"><b>1</b></a> <a href="../files/salome2_sp3_buildgui_functions.htm"><b>2</b></a> <a href="../transformation_operations.htm"><b>3</b></a> </nobr><br><nobr>fuse <a href="../changing_display_parameters.htm"><b>1</b></a> <a href="../boolean_operations.htm"><b>2</b></a> <a href="../fuse.htm"><b>3</b></a> <a href="../files/salome2_sp3_booleangui_functions.htm"><b>4</b></a> </nobr><br><a href="../changing_display_parameters.htm"><b>fuse_id</b></a> <br>\r
<br><br>\r
-<nobr><a name="bm_G"></a><a name="subkey_GA"></a>gap <a href="../close_contour.htm"><b>1</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>2</b></a> </nobr><br><nobr><a name="bms_GE"></a><a name="subkey_GE"></a>general <a href="../files/salome2_sp3_booleangui_functions.htm"><b>1</b></a> <a href="../newentity_blocks.htm"><b>2</b></a> </nobr><br><nobr>generate <a href="../extrusion.htm"><b>1</b></a> <a href="../filling.htm"><b>2</b></a> <a href="../pipe_creation.htm"><b>3</b></a> </nobr><br><a href="../files/salome2_sp3_generationgui_functions.htm"><b>generating</b></a> <br><nobr>generation <a href="../files/introduction_to_geom.htm"><b>1</b></a> <a href="../extrusion.htm"><b>2</b></a> <a href="../filling.htm"><b>3</b></a> <a href="../files/salome2_sp3_generationgui_functions.htm"><b>4</b></a> <a href="../pipe_creation.htm"><b>5</b></a> <a href="../revolution.htm"><b>6</b></a> </nobr><br><nobr>geom <a href="../changing_displaying_parameters.htm"><b>1</b></a> <a href="../changing_display_parameters.htm"><b>2</b></a> <a href="../building_by_blocks.htm"><b>3</b></a> <a href="../boolean_operations.htm"><b>4</b></a> <a href="../blocks_operations.htm"><b>5</b></a> <a href="../basic_operations.htm"><b>6</b></a> <a href="../basic_geometrical_objects.htm"><b>7</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>8</b></a> <a href="../files/introduction_to_geom.htm"><b>9</b></a> <a href="../complex_objects.htm"><b>10</b></a> <a href="../groups.htm"><b>11</b></a> <a href="../geometrical_objects.htm"><b>12</b></a> <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>13</b></a> <a href="../files/salome2_sp3_primitivegui_functions.htm"><b>14</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>15</b></a> <a href="../files/salome2_sp3_measuregui_functions.htm"><b>16</b></a> <a href="../files/salome2_sp3_geomtoolsgui_functions.htm"><b>17</b></a> <a href="../files/salome2_sp3_generationgui_functions.htm"><b>18</b></a> <a href="../files/salome2_sp3_displaygui_functions.htm"><b>19</b></a> <a href="../files/salome2_sp3_buildgui_functions.htm"><b>20</b></a> <a href="../files/salome2_sp3_booleangui_functions.htm"><b>21</b></a> <a href="../propagate.htm"><b>22</b></a> <a href="../primitives.htm"><b>23</b></a> <a href="../measurement_tools.htm"><b>24</b></a> <a href="../transformation_operations.htm"><b>25</b></a> <a href="../sketcher_tui.htm"><b>26</b></a> <a href="../repairing_operations.htm"><b>27</b></a> </nobr><br><nobr>geom_object <a href="../circle.htm"><b>1</b></a> <a href="../check_free_faces.htm"><b>2</b></a> <a href="../check_free_boundaries.htm"><b>3</b></a> <a href="../chamfer.htm"><b>4</b></a> <a href="../box.htm"><b>5</b></a> <a href="../archimede.htm"><b>6</b></a> <a href="../arc.htm"><b>7</b></a> <a href="../add_point_on_edge.htm"><b>8</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>9</b></a> <a href="../face.htm"><b>10</b></a> <a href="../extrusion.htm"><b>11</b></a> <a href="../explode_on_blocks.htm"><b>12</b></a> <a href="../ellipse.htm"><b>13</b></a> <a href="../edge.htm"><b>14</b></a> <a href="../cylinder.htm"><b>15</b></a> <a href="../cut.htm"><b>16</b></a> <a href="../curve.htm"><b>17</b></a> <a href="../cone.htm"><b>18</b></a> <a href="../compound.htm"><b>19</b></a> <a href="../common.htm"><b>20</b></a> <a href="../close_contour.htm"><b>21</b></a> <a href="../glue_faces.htm"><b>22</b></a> <a href="../fuse.htm"><b>23</b></a> <a href="../filling.htm"><b>24</b></a> <a href="../fillet.htm"><b>25</b></a> <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>26</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>27</b></a> <a href="../files/salome2_sp3_primitivegui_functions.htm"><b>28</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>29</b></a> <a href="../files/salome2_sp3_measuregui_functions.htm"><b>30</b></a> <a href="../files/salome2_sp3_generationgui_functions.htm"><b>31</b></a> <a href="../files/salome2_sp3_buildgui_functions.htm"><b>32</b></a> <a href="../point.htm"><b>33</b></a> <a href="../plane.htm"><b>34</b></a> <a href="../pipe_creation.htm"><b>35</b></a> <a href="../partition.htm"><b>36</b></a> <a href="../offset_surface.htm"><b>37</b></a> <a href="../newentity_blocks.htm"><b>38</b></a> <a href="../multi_transformation.htm"><b>39</b></a> <a href="../modify_the_location.htm"><b>40</b></a> <a href="../mirror_image.htm"><b>41</b></a> <a href="../line.htm"><b>42</b></a> <a href="../suppress_internal_wires.htm"><b>43</b></a> <a href="../suppress_holes.htm"><b>44</b></a> <a href="../suppress_faces.htm"><b>45</b></a> <a href="../sphere.htm"><b>46</b></a> <a href="../solid.htm"><b>47</b></a> <a href="../sketcher.htm"><b>48</b></a> <a href="../shell.htm"><b>49</b></a> <a href="../shape_processing.htm"><b>50</b></a> <a href="../sewing.htm"><b>51</b></a> <a href="../section.htm"><b>52</b></a> <a href="../scale_transform.htm"><b>53</b></a> <a href="../rotation.htm"><b>54</b></a> <a href="../revolution.htm"><b>55</b></a> <a href="../working_with_groups.htm"><b>56</b></a> <a href="../wire.htm"><b>57</b></a> <a href="../vector.htm"><b>58</b></a> <a href="../turus.htm"><b>59</b></a> <a href="../translation.htm"><b>60</b></a> </nobr><br><nobr>geom_objects <a href="../explode.htm"><b>1</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>2</b></a> <a href="../files/salome2_sp3_buildgui_functions.htm"><b>3</b></a> <a href="../propagate.htm"><b>4</b></a> <a href="../multi_translation.htm"><b>5</b></a> <a href="../multi_rotation.htm"><b>6</b></a> </nobr><br><nobr>geometric <a href="../circle.htm"><b>1</b></a> <a href="../arc.htm"><b>2</b></a> <a href="../face.htm"><b>3</b></a> <a href="../extrusion.htm"><b>4</b></a> <a href="../ellipse.htm"><b>5</b></a> <a href="../edge.htm"><b>6</b></a> <a href="../curve.htm"><b>7</b></a> <a href="../compound.htm"><b>8</b></a> <a href="../filling.htm"><b>9</b></a> <a href="../point.htm"><b>10</b></a> <a href="../plane.htm"><b>11</b></a> <a href="../pipe_creation.htm"><b>12</b></a> <a href="../newentity_blocks.htm"><b>13</b></a> <a href="../line.htm"><b>14</b></a> <a href="../solid.htm"><b>15</b></a> <a href="../shell.htm"><b>16</b></a> <a href="../revolution.htm"><b>17</b></a> <a href="../wire.htm"><b>18</b></a> <a href="../vector.htm"><b>19</b></a> </nobr><br><nobr>geometrical <a href="../changing_displaying_parameters.htm"><b>1</b></a> <a href="../basic_geometrical_objects.htm"><b>2</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>3</b></a> <a href="../files/introduction_to_geom.htm"><b>4</b></a> <a href="../common.htm"><b>5</b></a> <a href="../geometrical_objects.htm"><b>6</b></a> <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>7</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>8</b></a> <a href="../files/salome2_sp3_primitivegui_functions.htm"><b>9</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>10</b></a> <a href="../files/salome2_sp3_measuregui_functions.htm"><b>11</b></a> <a href="../files/salome2_sp3_geomtoolsgui_functions.htm"><b>12</b></a> <a href="../files/salome2_sp3_generationgui_functions.htm"><b>13</b></a> <a href="../files/salome2_sp3_displaygui_functions.htm"><b>14</b></a> <a href="../files/salome2_sp3_buildgui_functions.htm"><b>15</b></a> <a href="../files/salome2_sp3_booleangui_functions.htm"><b>16</b></a> <a href="../multi_rotation.htm"><b>17</b></a> <a href="../working_with_groups.htm"><b>18</b></a> </nobr><br><nobr>geometry <a href="../files/salome2_sp3_repairgui_functions.htm"><b>1</b></a> <a href="../shape_processing.htm"><b>2</b></a> <a href="../repairing_operations.htm"><b>3</b></a> </nobr><br><nobr>geompy <a href="../circle.htm"><b>1</b></a> <a href="../check_free_boundaries.htm"><b>2</b></a> <a href="../changing_display_parameters.htm"><b>3</b></a> <a href="../chamfer.htm"><b>4</b></a> <a href="../building_by_blocks.htm"><b>5</b></a> <a href="../box.htm"><b>6</b></a> <a href="../boolean_operations.htm"><b>7</b></a> <a href="../blocks_operations.htm"><b>8</b></a> <a href="../basic_operations.htm"><b>9</b></a> <a href="../basic_geometrical_objects.htm"><b>10</b></a> <a href="../archimede.htm"><b>11</b></a> <a href="../arc.htm"><b>12</b></a> <a href="../add_point_on_edge.htm"><b>13</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>14</b></a> <a href="../face.htm"><b>15</b></a> <a href="../extrusion.htm"><b>16</b></a> <a href="../explode_on_blocks.htm"><b>17</b></a> <a href="../explode.htm"><b>18</b></a> <a href="../ellipse.htm"><b>19</b></a> <a href="../edge.htm"><b>20</b></a> <a href="../cylinder.htm"><b>21</b></a> <a href="../curve.htm"><b>22</b></a> <a href="../cone.htm"><b>23</b></a> <a href="../compound.htm"><b>24</b></a> <a href="../complex_objects.htm"><b>25</b></a> <a href="../common.htm"><b>26</b></a> <a href="../close_contour.htm"><b>27</b></a> <a href="../groups.htm"><b>28</b></a> <a href="../glue_faces.htm"><b>29</b></a> <a href="../geometrical_objects.htm"><b>30</b></a> <a href="../fuse.htm"><b>31</b></a> <a href="../filling.htm"><b>32</b></a> <a href="../fillet.htm"><b>33</b></a> <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>34</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>35</b></a> <a href="../files/salome2_sp3_primitivegui_functions.htm"><b>36</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>37</b></a> <a href="../files/salome2_sp3_measuregui_functions.htm"><b>38</b></a> <a href="../files/salome2_sp3_generationgui_functions.htm"><b>39</b></a> <a href="../files/salome2_sp3_buildgui_functions.htm"><b>40</b></a> <a href="../files/salome2_sp3_booleangui_functions.htm"><b>41</b></a> <a href="../propagate.htm"><b>42</b></a> <a href="../primitives.htm"><b>43</b></a> <a href="../point.htm"><b>44</b></a> <a href="../plane.htm"><b>45</b></a> <a href="../pipe_creation.htm"><b>46</b></a> <a href="../partition.htm"><b>47</b></a> <a href="../offset_surface.htm"><b>48</b></a> <a href="../newentity_blocks.htm"><b>49</b></a> <a href="../multi_translation.htm"><b>50</b></a> <a href="../multi_transformation.htm"><b>51</b></a> <a href="../multi_rotation.htm"><b>52</b></a> <a href="../modify_the_location.htm"><b>53</b></a> <a href="../mirror_image.htm"><b>54</b></a> <a href="../measurement_tools.htm"><b>55</b></a> <a href="../local_coordinate_system.htm"><b>56</b></a> <a href="../line.htm"><b>57</b></a> <a href="../transformation_operations.htm"><b>58</b></a> <a href="../suppress_internal_wires.htm"><b>59</b></a> <a href="../suppress_holes.htm"><b>60</b></a> <a href="../suppress_faces.htm"><b>61</b></a> <a href="../sphere.htm"><b>62</b></a> <a href="../solid.htm"><b>63</b></a> <a href="../sketcher_tui.htm"><b>64</b></a> <a href="../sketcher.htm"><b>65</b></a> <a href="../shell.htm"><b>66</b></a> <a href="../shape_processing.htm"><b>67</b></a> <a href="../sewing.htm"><b>68</b></a> <a href="../section.htm"><b>69</b></a> <a href="../scale_transform.htm"><b>70</b></a> <a href="../rotation.htm"><b>71</b></a> <a href="../revolution.htm"><b>72</b></a> <a href="../repairing_operations.htm"><b>73</b></a> <a href="../working_with_groups.htm"><b>74</b></a> <a href="../wire.htm"><b>75</b></a> <a href="../vector.htm"><b>76</b></a> <a href="../turus.htm"><b>77</b></a> <a href="../translation.htm"><b>78</b></a> </nobr><br><nobr>get <a href="../blocks_operations.htm"><b>1</b></a> <a href="../files/salome2_sp3_buildgui_functions.htm"><b>2</b></a> <a href="../measurement_tools.htm"><b>3</b></a> <a href="../transformation_operations.htm"><b>4</b></a> <a href="../repairing_operations.htm"><b>5</b></a> </nobr><br><a href="../blocks_operations.htm"><b>getfacenearpoint</b></a> <br><nobr>getfreeboundary <a href="../check_free_boundaries.htm"><b>1</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>2</b></a> <a href="../repairing_operations.htm"><b>3</b></a> </nobr><br><nobr>getfreefacesids <a href="../check_free_faces.htm"><b>1</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>2</b></a> <a href="../repairing_operations.htm"><b>3</b></a> </nobr><br><a href="../working_with_groups.htm"><b>getobjectids</b></a> <br><a href="../repairing_operations.htm"><b>getsubshape</b></a> <br><nobr>getsubshapeid <a href="../groups.htm"><b>1</b></a> <a href="../files/salome2_sp3_buildgui_functions.htm"><b>2</b></a> <a href="../transformation_operations.htm"><b>3</b></a> <a href="../repairing_operations.htm"><b>4</b></a> </nobr><br><a href="../blocks_operations.htm"><b>getsubshapeindex</b></a> <br><a href="../files/salome2_sp3_measuregui_functions.htm"><b>getting</b></a> <br><br><br></p><p class="ftsbody" align="center"><a href="whlstf5.htm" target="_self" title="previous search group"><b>>></b></a>\r
+<nobr><a name="bm_G"></a><a name="subkey_GA"></a>gap <a href="../close_contour.htm"><b>1</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>2</b></a> </nobr><br><nobr><a name="bms_GE"></a><a name="subkey_GE"></a>general <a href="../files/salome2_sp3_booleangui_functions.htm"><b>1</b></a> <a href="../newentity_blocks.htm"><b>2</b></a> </nobr><br><nobr>generate <a href="../extrusion.htm"><b>1</b></a> <a href="../filling.htm"><b>2</b></a> <a href="../pipe_creation.htm"><b>3</b></a> </nobr><br><a href="../files/salome2_sp3_generationgui_functions.htm"><b>generating</b></a> <br><nobr>generation <a href="../files/introduction_to_geom.htm"><b>1</b></a> <a href="../extrusion.htm"><b>2</b></a> <a href="../filling.htm"><b>3</b></a> <a href="../files/salome2_sp3_generationgui_functions.htm"><b>4</b></a> <a href="../pipe_creation.htm"><b>5</b></a> <a href="../revolution.htm"><b>6</b></a> </nobr><br><nobr>geom <a href="../changing_displaying_parameters.htm"><b>1</b></a> <a href="../changing_display_parameters.htm"><b>2</b></a> <a href="../building_by_blocks.htm"><b>3</b></a> <a href="../boolean_operations.htm"><b>4</b></a> <a href="../blocks_operations.htm"><b>5</b></a> <a href="../basic_operations.htm"><b>6</b></a> <a href="../basic_geometrical_objects.htm"><b>7</b></a> <a href="../files/introduction_to_geom.htm"><b>8</b></a> <a href="../complex_objects.htm"><b>9</b></a> <a href="../geometrical_objects.htm"><b>10</b></a> <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>11</b></a> <a href="../files/salome2_sp3_primitivegui_functions.htm"><b>12</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>13</b></a> <a href="../files/salome2_sp3_measuregui_functions.htm"><b>14</b></a> <a href="../files/salome2_sp3_geomtoolsgui_functions.htm"><b>15</b></a> <a href="../files/salome2_sp3_generationgui_functions.htm"><b>16</b></a> <a href="../files/salome2_sp3_displaygui_functions.htm"><b>17</b></a> <a href="../files/salome2_sp3_buildgui_functions.htm"><b>18</b></a> <a href="../files/salome2_sp3_booleangui_functions.htm"><b>19</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>20</b></a> <a href="../measurement_tools.htm"><b>21</b></a> <a href="../groups.htm"><b>22</b></a> <a href="../sketcher_tui.htm"><b>23</b></a> <a href="../repairing_operations.htm"><b>24</b></a> <a href="../propagate.htm"><b>25</b></a> <a href="../primitives.htm"><b>26</b></a> <a href="../transformation_operations.htm"><b>27</b></a> </nobr><br><nobr>geom_object <a href="../circle.htm"><b>1</b></a> <a href="../check_free_faces.htm"><b>2</b></a> <a href="../check_free_boundaries.htm"><b>3</b></a> <a href="../chamfer.htm"><b>4</b></a> <a href="../box.htm"><b>5</b></a> <a href="../archimede.htm"><b>6</b></a> <a href="../arc.htm"><b>7</b></a> <a href="../add_point_on_edge.htm"><b>8</b></a> <a href="../face.htm"><b>9</b></a> <a href="../extrusion.htm"><b>10</b></a> <a href="../explode_on_blocks.htm"><b>11</b></a> <a href="../ellipse.htm"><b>12</b></a> <a href="../edge.htm"><b>13</b></a> <a href="../cylinder.htm"><b>14</b></a> <a href="../cut.htm"><b>15</b></a> <a href="../curve.htm"><b>16</b></a> <a href="../cone.htm"><b>17</b></a> <a href="../compound.htm"><b>18</b></a> <a href="../common.htm"><b>19</b></a> <a href="../close_contour.htm"><b>20</b></a> <a href="../glue_faces.htm"><b>21</b></a> <a href="../fuse.htm"><b>22</b></a> <a href="../filling.htm"><b>23</b></a> <a href="../fillet.htm"><b>24</b></a> <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>25</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>26</b></a> <a href="../files/salome2_sp3_primitivegui_functions.htm"><b>27</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>28</b></a> <a href="../files/salome2_sp3_measuregui_functions.htm"><b>29</b></a> <a href="../files/salome2_sp3_generationgui_functions.htm"><b>30</b></a> <a href="../files/salome2_sp3_buildgui_functions.htm"><b>31</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>32</b></a> <a href="../point.htm"><b>33</b></a> <a href="../plane.htm"><b>34</b></a> <a href="../pipe_creation.htm"><b>35</b></a> <a href="../partition.htm"><b>36</b></a> <a href="../offset_surface.htm"><b>37</b></a> <a href="../newentity_blocks.htm"><b>38</b></a> <a href="../multi_transformation.htm"><b>39</b></a> <a href="../modify_the_location.htm"><b>40</b></a> <a href="../mirror_image.htm"><b>41</b></a> <a href="../line.htm"><b>42</b></a> <a href="../suppress_holes.htm"><b>43</b></a> <a href="../suppress_faces.htm"><b>44</b></a> <a href="../sphere.htm"><b>45</b></a> <a href="../solid.htm"><b>46</b></a> <a href="../sketcher.htm"><b>47</b></a> <a href="../shell.htm"><b>48</b></a> <a href="../shape_processing.htm"><b>49</b></a> <a href="../sewing.htm"><b>50</b></a> <a href="../section.htm"><b>51</b></a> <a href="../scale_transform.htm"><b>52</b></a> <a href="../rotation.htm"><b>53</b></a> <a href="../revolution.htm"><b>54</b></a> <a href="../working_with_groups.htm"><b>55</b></a> <a href="../wire.htm"><b>56</b></a> <a href="../vector.htm"><b>57</b></a> <a href="../turus.htm"><b>58</b></a> <a href="../translation.htm"><b>59</b></a> <a href="../suppress_internal_wires.htm"><b>60</b></a> </nobr><br><nobr>geom_objects <a href="../explode.htm"><b>1</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>2</b></a> <a href="../files/salome2_sp3_buildgui_functions.htm"><b>3</b></a> <a href="../multi_translation.htm"><b>4</b></a> <a href="../multi_rotation.htm"><b>5</b></a> <a href="../propagate.htm"><b>6</b></a> </nobr><br><nobr>geometric <a href="../circle.htm"><b>1</b></a> <a href="../arc.htm"><b>2</b></a> <a href="../face.htm"><b>3</b></a> <a href="../extrusion.htm"><b>4</b></a> <a href="../ellipse.htm"><b>5</b></a> <a href="../edge.htm"><b>6</b></a> <a href="../curve.htm"><b>7</b></a> <a href="../compound.htm"><b>8</b></a> <a href="../filling.htm"><b>9</b></a> <a href="../point.htm"><b>10</b></a> <a href="../plane.htm"><b>11</b></a> <a href="../pipe_creation.htm"><b>12</b></a> <a href="../newentity_blocks.htm"><b>13</b></a> <a href="../line.htm"><b>14</b></a> <a href="../solid.htm"><b>15</b></a> <a href="../shell.htm"><b>16</b></a> <a href="../revolution.htm"><b>17</b></a> <a href="../wire.htm"><b>18</b></a> <a href="../vector.htm"><b>19</b></a> </nobr><br><nobr>geometrical <a href="../changing_displaying_parameters.htm"><b>1</b></a> <a href="../basic_geometrical_objects.htm"><b>2</b></a> <a href="../files/introduction_to_geom.htm"><b>3</b></a> <a href="../common.htm"><b>4</b></a> <a href="../geometrical_objects.htm"><b>5</b></a> <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>6</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>7</b></a> <a href="../files/salome2_sp3_primitivegui_functions.htm"><b>8</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>9</b></a> <a href="../files/salome2_sp3_measuregui_functions.htm"><b>10</b></a> <a href="../files/salome2_sp3_geomtoolsgui_functions.htm"><b>11</b></a> <a href="../files/salome2_sp3_generationgui_functions.htm"><b>12</b></a> <a href="../files/salome2_sp3_displaygui_functions.htm"><b>13</b></a> <a href="../files/salome2_sp3_buildgui_functions.htm"><b>14</b></a> <a href="../files/salome2_sp3_booleangui_functions.htm"><b>15</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>16</b></a> <a href="../multi_rotation.htm"><b>17</b></a> <a href="../working_with_groups.htm"><b>18</b></a> <a href="../wireframe_and_shading.htm"><b>19</b></a> </nobr><br><nobr>geometry <a href="../files/salome2_sp3_repairgui_functions.htm"><b>1</b></a> <a href="../shape_processing.htm"><b>2</b></a> <a href="../repairing_operations.htm"><b>3</b></a> </nobr><br><nobr>geompy <a href="../circle.htm"><b>1</b></a> <a href="../check_free_boundaries.htm"><b>2</b></a> <a href="../changing_display_parameters.htm"><b>3</b></a> <a href="../chamfer.htm"><b>4</b></a> <a href="../building_by_blocks.htm"><b>5</b></a> <a href="../box.htm"><b>6</b></a> <a href="../boolean_operations.htm"><b>7</b></a> <a href="../blocks_operations.htm"><b>8</b></a> <a href="../basic_operations.htm"><b>9</b></a> <a href="../basic_geometrical_objects.htm"><b>10</b></a> <a href="../archimede.htm"><b>11</b></a> <a href="../arc.htm"><b>12</b></a> <a href="../add_point_on_edge.htm"><b>13</b></a> <a href="../face.htm"><b>14</b></a> <a href="../extrusion.htm"><b>15</b></a> <a href="../explode_on_blocks.htm"><b>16</b></a> <a href="../explode.htm"><b>17</b></a> <a href="../ellipse.htm"><b>18</b></a> <a href="../edge.htm"><b>19</b></a> <a href="../cylinder.htm"><b>20</b></a> <a href="../curve.htm"><b>21</b></a> <a href="../cone.htm"><b>22</b></a> <a href="../compound.htm"><b>23</b></a> <a href="../complex_objects.htm"><b>24</b></a> <a href="../common.htm"><b>25</b></a> <a href="../close_contour.htm"><b>26</b></a> <a href="../glue_faces.htm"><b>27</b></a> <a href="../geometrical_objects.htm"><b>28</b></a> <a href="../fuse.htm"><b>29</b></a> <a href="../filling.htm"><b>30</b></a> <a href="../fillet.htm"><b>31</b></a> <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>32</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>33</b></a> <a href="../files/salome2_sp3_primitivegui_functions.htm"><b>34</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>35</b></a> <a href="../files/salome2_sp3_measuregui_functions.htm"><b>36</b></a> <a href="../files/salome2_sp3_generationgui_functions.htm"><b>37</b></a> <a href="../files/salome2_sp3_buildgui_functions.htm"><b>38</b></a> <a href="../files/salome2_sp3_booleangui_functions.htm"><b>39</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>40</b></a> <a href="../point.htm"><b>41</b></a> <a href="../plane.htm"><b>42</b></a> <a href="../pipe_creation.htm"><b>43</b></a> <a href="../partition.htm"><b>44</b></a> <a href="../offset_surface.htm"><b>45</b></a> <a href="../newentity_blocks.htm"><b>46</b></a> <a href="../multi_translation.htm"><b>47</b></a> <a href="../multi_transformation.htm"><b>48</b></a> <a href="../multi_rotation.htm"><b>49</b></a> <a href="../modify_the_location.htm"><b>50</b></a> <a href="../mirror_image.htm"><b>51</b></a> <a href="../measurement_tools.htm"><b>52</b></a> <a href="../local_coordinate_system.htm"><b>53</b></a> <a href="../line.htm"><b>54</b></a> <a href="../groups.htm"><b>55</b></a> <a href="../suppress_holes.htm"><b>56</b></a> <a href="../suppress_faces.htm"><b>57</b></a> <a href="../sphere.htm"><b>58</b></a> <a href="../solid.htm"><b>59</b></a> <a href="../sketcher_tui.htm"><b>60</b></a> <a href="../sketcher.htm"><b>61</b></a> <a href="../shell.htm"><b>62</b></a> <a href="../shape_processing.htm"><b>63</b></a> <a href="../sewing.htm"><b>64</b></a> <a href="../section.htm"><b>65</b></a> <a href="../scale_transform.htm"><b>66</b></a> <a href="../rotation.htm"><b>67</b></a> <a href="../revolution.htm"><b>68</b></a> <a href="../repairing_operations.htm"><b>69</b></a> <a href="../propagate.htm"><b>70</b></a> <a href="../primitives.htm"><b>71</b></a> <a href="../working_with_groups.htm"><b>72</b></a> <a href="../wire.htm"><b>73</b></a> <a href="../vector.htm"><b>74</b></a> <a href="../turus.htm"><b>75</b></a> <a href="../translation.htm"><b>76</b></a> <a href="../transformation_operations.htm"><b>77</b></a> <a href="../suppress_internal_wires.htm"><b>78</b></a> </nobr><br><nobr>get <a href="../blocks_operations.htm"><b>1</b></a> <a href="../files/salome2_sp3_buildgui_functions.htm"><b>2</b></a> <a href="../measurement_tools.htm"><b>3</b></a> <a href="../repairing_operations.htm"><b>4</b></a> <a href="../transformation_operations.htm"><b>5</b></a> </nobr><br><a href="../repairing_operations.htm"><b>getenv</b></a> <br><a href="../blocks_operations.htm"><b>getfacenearpoint</b></a> <br><nobr>getfreeboundary <a href="../check_free_boundaries.htm"><b>1</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>2</b></a> <a href="../repairing_operations.htm"><b>3</b></a> </nobr><br><nobr>getfreefacesids <a href="../check_free_faces.htm"><b>1</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>2</b></a> <a href="../repairing_operations.htm"><b>3</b></a> </nobr><br><a href="../working_with_groups.htm"><b>getobjectids</b></a> <br><a href="../repairing_operations.htm"><b>getsubshape</b></a> <br><nobr>getsubshapeid <a href="../files/salome2_sp3_buildgui_functions.htm"><b>1</b></a> <a href="../groups.htm"><b>2</b></a> <a href="../repairing_operations.htm"><b>3</b></a> <a href="../transformation_operations.htm"><b>4</b></a> </nobr><br><a href="../blocks_operations.htm"><b>getsubshapeindex</b></a> <br><a href="../files/salome2_sp3_measuregui_functions.htm"><b>getting</b></a> <br><br><br></p><p class="ftsbody" align="center"><a href="whlstf5.htm" target="_self" title="previous search group"><b>>></b></a>\r
\r
</body>\r
\r
<body marginheight="0" marginwidth="0" bgproperties="fixed">\r
<p class="ftsbody" align="center"><a href="whlstf4.htm" target="_self" title="previous search group"><b><<</b></a><br><br></p>\r
<p class="ftsbody" >\r
-<nobr><a name="bms_GG"></a><a name="subkey_GG"></a>gg <a href="../changing_displaying_parameters.htm"><b>1</b></a> <a href="../changing_display_parameters.htm"><b>2</b></a> <a href="../building_by_blocks.htm"><b>3</b></a> <a href="../boolean_operations.htm"><b>4</b></a> <a href="../blocks_operations.htm"><b>5</b></a> <a href="../basic_operations.htm"><b>6</b></a> <a href="../basic_geometrical_objects.htm"><b>7</b></a> <a href="../complex_objects.htm"><b>8</b></a> <a href="../groups.htm"><b>9</b></a> <a href="../geometrical_objects.htm"><b>10</b></a> <a href="../primitives.htm"><b>11</b></a> <a href="../measurement_tools.htm"><b>12</b></a> <a href="../transformation_operations.htm"><b>13</b></a> <a href="../sketcher_tui.htm"><b>14</b></a> <a href="../repairing_operations.htm"><b>15</b></a> </nobr><br><a name="bms_GI"></a><a name="subkey_GI"></a><a href="../face.htm"><b>give</b></a> <br><nobr>given <a href="../check_free_faces.htm"><b>1</b></a> <a href="../chamfer.htm"><b>2</b></a> <a href="../building_by_blocks.htm"><b>3</b></a> <a href="../blocks_operations.htm"><b>4</b></a> <a href="../basic_operations.htm"><b>5</b></a> <a href="../basic_geometrical_objects.htm"><b>6</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>7</b></a> <a href="../face.htm"><b>8</b></a> <a href="../explode_on_blocks.htm"><b>9</b></a> <a href="../explode.htm"><b>10</b></a> <a href="../cylinder.htm"><b>11</b></a> <a href="../complex_objects.htm"><b>12</b></a> <a href="../groups.htm"><b>13</b></a> <a href="../glue_faces.htm"><b>14</b></a> <a href="../geometrical_objects.htm"><b>15</b></a> <a href="../fillet.htm"><b>16</b></a> <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>17</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>18</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>19</b></a> <a href="../files/salome2_sp3_measuregui_functions.htm"><b>20</b></a> <a href="../files/salome2_sp3_buildgui_functions.htm"><b>21</b></a> <a href="../point.htm"><b>22</b></a> <a href="../offset_surface.htm"><b>23</b></a> <a href="../multi_rotation.htm"><b>24</b></a> <a href="../line.htm"><b>25</b></a> <a href="../transformation_operations.htm"><b>26</b></a> <a href="../sketcher_tui.htm"><b>27</b></a> <a href="../repairing_operations.htm"><b>28</b></a> <a href="../turus.htm"><b>29</b></a> </nobr><br><a href="../files/salome2_sp3_basicgui_functions.htm"><b>gives</b></a> <br><nobr>giving <a href="../circle.htm"><b>1</b></a> <a href="../ellipse.htm"><b>2</b></a> <a href="../plane.htm"><b>3</b></a> </nobr><br><nobr><a name="bms_GL"></a><a name="subkey_GL"></a>glue <a href="../blocks_operations.htm"><b>1</b></a> <a href="../glue_faces.htm"><b>2</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>3</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>4</b></a> <a href="../partition.htm"><b>5</b></a> <a href="../measurement_tools.htm"><b>6</b></a> <a href="../repairing_operations.htm"><b>7</b></a> </nobr><br><nobr>glued <a href="../glue_faces.htm"><b>1</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>2</b></a> <a href="../files/salome2_sp3_measuregui_functions.htm"><b>3</b></a> </nobr><br><nobr>glues <a href="../glue_faces.htm"><b>1</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>2</b></a> </nobr><br><a name="bms_GR"></a><a name="subkey_GR"></a><a href="../files/salome2_sp3_displaygui_functions.htm"><b>graphic</b></a> <br><nobr>gravity <a href="../explode.htm"><b>1</b></a> <a href="../files/salome2_sp3_measuregui_functions.htm"><b>2</b></a> <a href="../multi_rotation.htm"><b>3</b></a> <a href="../measurement_tools.htm"><b>4</b></a> </nobr><br><nobr>group <a href="../groups.htm"><b>1</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>2</b></a> <a href="../propagate.htm"><b>3</b></a> <a href="../working_with_groups.htm"><b>4</b></a> </nobr><br><a href="../groups.htm"><b>group1</b></a> <br><nobr>groups <a href="../blocks_operations.htm"><b>1</b></a> <a href="../groups.htm"><b>2</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>3</b></a> <a href="../propagate.htm"><b>4</b></a> <a href="../working_with_groups.htm"><b>5</b></a> </nobr><br><a name="bms_GU"></a><a name="subkey_GU"></a><a href="../files/salome2_sp3_operationgui_functions.htm"><b>gui</b></a> <br>\r
+<nobr><a name="bms_GG"></a><a name="subkey_GG"></a>gg <a href="../changing_displaying_parameters.htm"><b>1</b></a> <a href="../changing_display_parameters.htm"><b>2</b></a> <a href="../building_by_blocks.htm"><b>3</b></a> <a href="../boolean_operations.htm"><b>4</b></a> <a href="../blocks_operations.htm"><b>5</b></a> <a href="../basic_operations.htm"><b>6</b></a> <a href="../basic_geometrical_objects.htm"><b>7</b></a> <a href="../complex_objects.htm"><b>8</b></a> <a href="../color.htm"><b>9</b></a> <a href="../geometrical_objects.htm"><b>10</b></a> <a href="../measurement_tools.htm"><b>11</b></a> <a href="../groups.htm"><b>12</b></a> <a href="../sketcher_tui.htm"><b>13</b></a> <a href="../repairing_operations.htm"><b>14</b></a> <a href="../primitives.htm"><b>15</b></a> <a href="../wireframe_and_shading.htm"><b>16</b></a> <a href="../transparency.htm"><b>17</b></a> <a href="../transformation_operations.htm"><b>18</b></a> </nobr><br><nobr><a name="bms_GI"></a><a name="subkey_GI"></a>given <a href="../check_free_faces.htm"><b>1</b></a> <a href="../chamfer.htm"><b>2</b></a> <a href="../building_by_blocks.htm"><b>3</b></a> <a href="../blocks_operations.htm"><b>4</b></a> <a href="../basic_geometrical_objects.htm"><b>5</b></a> <a href="../face.htm"><b>6</b></a> <a href="../explode_on_blocks.htm"><b>7</b></a> <a href="../explode.htm"><b>8</b></a> <a href="../cylinder.htm"><b>9</b></a> <a href="../complex_objects.htm"><b>10</b></a> <a href="../glue_faces.htm"><b>11</b></a> <a href="../geometrical_objects.htm"><b>12</b></a> <a href="../fillet.htm"><b>13</b></a> <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>14</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>15</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>16</b></a> <a href="../files/salome2_sp3_measuregui_functions.htm"><b>17</b></a> <a href="../files/salome2_sp3_buildgui_functions.htm"><b>18</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>19</b></a> <a href="../point.htm"><b>20</b></a> <a href="../offset_surface.htm"><b>21</b></a> <a href="../multi_rotation.htm"><b>22</b></a> <a href="../line.htm"><b>23</b></a> <a href="../sketcher_tui.htm"><b>24</b></a> <a href="../repairing_operations.htm"><b>25</b></a> <a href="../turus.htm"><b>26</b></a> <a href="../transformation_operations.htm"><b>27</b></a> </nobr><br><nobr>gives <a href="../files/salome2_sp3_geomtoolsgui_functions.htm"><b>1</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>2</b></a> </nobr><br><nobr>giving <a href="../circle.htm"><b>1</b></a> <a href="../ellipse.htm"><b>2</b></a> <a href="../plane.htm"><b>3</b></a> </nobr><br><nobr><a name="bms_GL"></a><a name="subkey_GL"></a>global <a href="../modify_the_location.htm"><b>1</b></a> <a href="../local_coordinate_system.htm"><b>2</b></a> </nobr><br><nobr>glue <a href="../blocks_operations.htm"><b>1</b></a> <a href="../glue_faces.htm"><b>2</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>3</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>4</b></a> <a href="../partition.htm"><b>5</b></a> <a href="../measurement_tools.htm"><b>6</b></a> <a href="../repairing_operations.htm"><b>7</b></a> </nobr><br><nobr>glued <a href="../glue_faces.htm"><b>1</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>2</b></a> <a href="../files/salome2_sp3_measuregui_functions.htm"><b>3</b></a> </nobr><br><nobr>glues <a href="../glue_faces.htm"><b>1</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>2</b></a> </nobr><br><a name="bms_GR"></a><a name="subkey_GR"></a><a href="../files/salome2_sp3_displaygui_functions.htm"><b>graphic</b></a> <br><nobr>gravity <a href="../explode.htm"><b>1</b></a> <a href="../files/salome2_sp3_measuregui_functions.htm"><b>2</b></a> <a href="../multi_rotation.htm"><b>3</b></a> <a href="../measurement_tools.htm"><b>4</b></a> </nobr><br><nobr>group <a href="../files/salome2_sp3_operationgui_functions.htm"><b>1</b></a> <a href="../groups.htm"><b>2</b></a> <a href="../propagate.htm"><b>3</b></a> <a href="../working_with_groups.htm"><b>4</b></a> </nobr><br><a href="../working_with_groups.htm"><b>group_n</b></a> <br><a href="../groups.htm"><b>group1</b></a> <br><nobr>groups <a href="../blocks_operations.htm"><b>1</b></a> <a href="../files/introduction_to_geom.htm"><b>2</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>3</b></a> <a href="../groups.htm"><b>4</b></a> <a href="../propagate.htm"><b>5</b></a> <a href="../working_with_groups.htm"><b>6</b></a> </nobr><br><a name="bms_GU"></a><a name="subkey_GU"></a><a href="../files/salome2_sp3_operationgui_functions.htm"><b>gui</b></a> <br>\r
<br><br>\r
-<a name="bm_H"></a><a name="subkey_HA"></a><a href="../files/salome2_sp3_basicgui_functions.htm"><b>half</b></a> <br><a href="../working_with_groups.htm"><b>handling</b></a> <br><nobr>having <a href="../files/salome2_sp3_repairgui_functions.htm"><b>1</b></a> <a href="../files/salome2_sp3_buildgui_functions.htm"><b>2</b></a> <a href="../shell.htm"><b>3</b></a> <a href="../shape_processing.htm"><b>4</b></a> </nobr><br><nobr><a name="bms_HE"></a><a name="subkey_HE"></a>height <a href="../boolean_operations.htm"><b>1</b></a> <a href="../extrusion.htm"><b>2</b></a> <a href="../cylinder.htm"><b>3</b></a> <a href="../cone.htm"><b>4</b></a> <a href="../files/salome2_sp3_primitivegui_functions.htm"><b>5</b></a> <a href="../files/salome2_sp3_generationgui_functions.htm"><b>6</b></a> <a href="../transformation_operations.htm"><b>7</b></a> <a href="../repairing_operations.htm"><b>8</b></a> </nobr><br><a href="../building_by_blocks.htm"><b>hexagonal</b></a> <br><nobr>hexahedral <a href="../building_by_blocks.htm"><b>1</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>2</b></a> <a href="../newentity_blocks.htm"><b>3</b></a> <a href="../multi_transformation.htm"><b>4</b></a> </nobr><br><a href="../newentity_blocks.htm"><b>hexahedron</b></a> <br><a name="bms_HI"></a><a name="subkey_HI"></a><a href="../files/salome2_sp3_displaygui_functions.htm"><b>hide</b></a> <br><a href="../files/salome2_sp3_displaygui_functions.htm"><b>hiding</b></a> <br><a href="../files/salome2_sp3_measuregui_functions.htm"><b>highlight</b></a> <br><nobr>highlights <a href="../check_free_boundaries.htm"><b>1</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>2</b></a> </nobr><br><a name="bms_HO"></a><a name="subkey_HO"></a><a href="../wire.htm"><b>holding</b></a> <br><a href="../files/salome2_sp3_repairgui_functions.htm"><b>hole</b></a> <br><nobr>holes <a href="../files/salome2_sp3_repairgui_functions.htm"><b>1</b></a> <a href="../suppress_holes.htm"><b>2</b></a> <a href="../repairing_operations.htm"><b>3</b></a> </nobr><br><a href="../files/salome2_sp3_measuregui_functions.htm"><b>how</b></a> <br>\r
+<a name="bm_H"></a><a name="subkey_HA"></a><a href="../files/salome2_sp3_basicgui_functions.htm"><b>half</b></a> <br><a href="../working_with_groups.htm"><b>handling</b></a> <br><nobr>having <a href="../files/salome2_sp3_repairgui_functions.htm"><b>1</b></a> <a href="../files/salome2_sp3_buildgui_functions.htm"><b>2</b></a> <a href="../shell.htm"><b>3</b></a> <a href="../shape_processing.htm"><b>4</b></a> </nobr><br><nobr><a name="bms_HE"></a><a name="subkey_HE"></a>height <a href="../boolean_operations.htm"><b>1</b></a> <a href="../extrusion.htm"><b>2</b></a> <a href="../cylinder.htm"><b>3</b></a> <a href="../cone.htm"><b>4</b></a> <a href="../files/salome2_sp3_primitivegui_functions.htm"><b>5</b></a> <a href="../files/salome2_sp3_generationgui_functions.htm"><b>6</b></a> <a href="../repairing_operations.htm"><b>7</b></a> <a href="../transformation_operations.htm"><b>8</b></a> </nobr><br><a href="../working_with_groups.htm"><b>here</b></a> <br><a href="../building_by_blocks.htm"><b>hexagonal</b></a> <br><nobr>hexahedral <a href="../building_by_blocks.htm"><b>1</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>2</b></a> <a href="../newentity_blocks.htm"><b>3</b></a> <a href="../multi_transformation.htm"><b>4</b></a> </nobr><br><a href="../newentity_blocks.htm"><b>hexahedron</b></a> <br><a name="bms_HI"></a><a name="subkey_HI"></a><a href="../files/salome2_sp3_displaygui_functions.htm"><b>hide</b></a> <br><a href="../files/salome2_sp3_displaygui_functions.htm"><b>hiding</b></a> <br><a href="../files/salome2_sp3_measuregui_functions.htm"><b>highlight</b></a> <br><nobr>highlights <a href="../check_free_boundaries.htm"><b>1</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>2</b></a> </nobr><br><a name="bms_HO"></a><a name="subkey_HO"></a><a href="../wire.htm"><b>holding</b></a> <br><a href="../files/salome2_sp3_repairgui_functions.htm"><b>hole</b></a> <br><nobr>holes <a href="../files/salome2_sp3_repairgui_functions.htm"><b>1</b></a> <a href="../suppress_holes.htm"><b>2</b></a> <a href="../repairing_operations.htm"><b>3</b></a> </nobr><br><a href="../files/salome2_sp3_measuregui_functions.htm"><b>how</b></a> <br>\r
<br><br>\r
-<nobr><a name="bm_I"></a><a name="subkey_I{"></a>i <a href="../complex_objects.htm"><b>1</b></a> <a href="../groups.htm"><b>2</b></a> <a href="../files/salome2_sp3_displaygui_functions.htm"><b>3</b></a> <a href="../repairing_operations.htm"><b>4</b></a> </nobr><br><a href="../files/salome2_sp3_measuregui_functions.htm"><b>i11</b></a> <br><a href="../files/salome2_sp3_measuregui_functions.htm"><b>i12</b></a> <br><a href="../files/salome2_sp3_measuregui_functions.htm"><b>i13</b></a> <br><a href="../files/salome2_sp3_measuregui_functions.htm"><b>i21</b></a> <br><a href="../files/salome2_sp3_measuregui_functions.htm"><b>i22</b></a> <br><a href="../files/salome2_sp3_measuregui_functions.htm"><b>i23</b></a> <br><a href="../files/salome2_sp3_measuregui_functions.htm"><b>i31</b></a> <br><a href="../files/salome2_sp3_measuregui_functions.htm"><b>i32</b></a> <br><a href="../files/salome2_sp3_measuregui_functions.htm"><b>i33</b></a> <br><nobr><a name="bms_ID"></a><a name="subkey_ID"></a>id <a href="../changing_displaying_parameters.htm"><b>1</b></a> <a href="../add_point_on_edge.htm"><b>2</b></a> <a href="../close_contour.htm"><b>3</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>4</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>5</b></a> <a href="../files/salome2_sp3_displaygui_functions.htm"><b>6</b></a> <a href="../files/salome2_sp3_buildgui_functions.htm"><b>7</b></a> <a href="../multi_transformation.htm"><b>8</b></a> <a href="../suppress_internal_wires.htm"><b>9</b></a> <a href="../suppress_holes.htm"><b>10</b></a> <a href="../suppress_faces.htm"><b>11</b></a> <a href="../working_with_groups.htm"><b>12</b></a> </nobr><br><a href="../basic_geometrical_objects.htm"><b>id_arc</b></a> <br><a href="../basic_operations.htm"><b>id_archimede</b></a> <br><a href="../transformation_operations.htm"><b>id_axis</b></a> <br><a href="../basic_geometrical_objects.htm"><b>id_bezier</b></a> <br><nobr>id_box <a href="../blocks_operations.htm"><b>1</b></a> <a href="../basic_operations.htm"><b>2</b></a> <a href="../transformation_operations.htm"><b>3</b></a> <a href="../repairing_operations.htm"><b>4</b></a> </nobr><br><a href="../blocks_operations.htm"><b>id_box_tr1</b></a> <br><a href="../blocks_operations.htm"><b>id_box_tr2</b></a> <br><a href="../primitives.htm"><b>id_box1</b></a> <br><a href="../primitives.htm"><b>id_box2</b></a> <br><a href="../primitives.htm"><b>id_box3</b></a> <br><a href="../transformation_operations.htm"><b>id_chamfer_all</b></a> <br><a href="../transformation_operations.htm"><b>id_chamfer_e</b></a> <br><a href="../transformation_operations.htm"><b>id_chamfer_f</b></a> <br><a href="../transformation_operations.htm"><b>id_chamfer_f1</b></a> <br><a href="../basic_geometrical_objects.htm"><b>id_circle1</b></a> <br><a href="../basic_geometrical_objects.htm"><b>id_circle2</b></a> <br><a href="../boolean_operations.htm"><b>id_common</b></a> <br><nobr>id_compound <a href="../blocks_operations.htm"><b>1</b></a> <a href="../complex_objects.htm"><b>2</b></a> </nobr><br><a href="../primitives.htm"><b>id_cone1</b></a> <br><a href="../primitives.htm"><b>id_cone2</b></a> <br><a href="../transformation_operations.htm"><b>id_cs1</b></a> <br><a href="../transformation_operations.htm"><b>id_cs2</b></a> <br><nobr>id_cut <a href="../boolean_operations.htm"><b>1</b></a> <a href="../repairing_operations.htm"><b>2</b></a> </nobr><br><a href="../repairing_operations.htm"><b>id_cut_without_f_2</b></a> <br><nobr>id_cylinder <a href="../boolean_operations.htm"><b>1</b></a> <a href="../transformation_operations.htm"><b>2</b></a> </nobr><br><a href="../repairing_operations.htm"><b>id_divide</b></a> <br><nobr>id_edge <a href="../complex_objects.htm"><b>1</b></a> <a href="../geometrical_objects.htm"><b>2</b></a> <a href="../repairing_operations.htm"><b>3</b></a> </nobr><br><a href="../building_by_blocks.htm"><b>id_edge1</b></a> <br><a href="../building_by_blocks.htm"><b>id_edge2</b></a> <br><a href="../building_by_blocks.htm"><b>id_edge3</b></a> <br><a href="../building_by_blocks.htm"><b>id_edge4</b></a> <br><a href="../basic_geometrical_objects.htm"><b>id_ellipse</b></a> <br><nobr>id_face <a href="../basic_geometrical_objects.htm"><b>1</b></a> <a href="../sketcher_tui.htm"><b>2</b></a> <a href="../repairing_operations.htm"><b>3</b></a> </nobr><br><a href="../repairing_operations.htm"><b>id_face_rot</b></a> <br><nobr>id_face1 <a href="../complex_objects.htm"><b>1</b></a> <a href="../geometrical_objects.htm"><b>2</b></a> </nobr><br><nobr>id_face2 <a href="../complex_objects.htm"><b>1</b></a> <a href="../geometrical_objects.htm"><b>2</b></a> </nobr><br><a href="../geometrical_objects.htm"><b>id_face3</b></a> <br><a href="../transformation_operations.htm"><b>id_fillet</b></a> <br><a href="../transformation_operations.htm"><b>id_filletall</b></a> <br><a href="../complex_objects.htm"><b>id_filling</b></a> <br><a href="../boolean_operations.htm"><b>id_fuse</b></a> <br><a href="../groups.htm"><b>id_group1</b></a> <br><a href="../repairing_operations.htm"><b>id_importbrep</b></a> <br><a href="../basic_geometrical_objects.htm"><b>id_interpol</b></a> <br><a href="../basic_geometrical_objects.htm"><b>id_line1</b></a> <br><a href="../basic_geometrical_objects.htm"><b>id_line2</b></a> <br><a href="../blocks_operations.htm"><b>id_make_block_explode</b></a> <br><a href="../transformation_operations.htm"><b>id_mirror1</b></a> <br><a href="../transformation_operations.htm"><b>id_mirror2</b></a> <br><a href="../transformation_operations.htm"><b>id_mirror3</b></a> <br><a href="../transformation_operations.htm"><b>id_offset</b></a> <br><a href="../basic_geometrical_objects.htm"><b>id_p_on_arc</b></a> <br><a href="../basic_geometrical_objects.htm"><b>id_p0</b></a> <br><nobr>id_p1 <a href="../building_by_blocks.htm"><b>1</b></a> <a href="../basic_geometrical_objects.htm"><b>2</b></a> </nobr><br><a href="../basic_geometrical_objects.htm"><b>id_p100</b></a> <br><nobr>id_p2 <a href="../building_by_blocks.htm"><b>1</b></a> <a href="../basic_geometrical_objects.htm"><b>2</b></a> </nobr><br><nobr>id_p3 <a href="../building_by_blocks.htm"><b>1</b></a> <a href="../basic_geometrical_objects.htm"><b>2</b></a> </nobr><br><nobr>id_p4 <a href="../building_by_blocks.htm"><b>1</b></a> <a href="../basic_geometrical_objects.htm"><b>2</b></a> <a href="../transformation_operations.htm"><b>3</b></a> </nobr><br><a href="../basic_operations.htm"><b>id_partition1</b></a> <br><a href="../basic_operations.htm"><b>id_partition2</b></a> <br><a href="../basic_operations.htm"><b>id_partition3</b></a> <br><a href="../complex_objects.htm"><b>id_pipe</b></a> <br><nobr>id_plane <a href="../basic_operations.htm"><b>1</b></a> <a href="../transformation_operations.htm"><b>2</b></a> </nobr><br><a href="../basic_geometrical_objects.htm"><b>id_plane1</b></a> <br><a href="../basic_geometrical_objects.htm"><b>id_plane2</b></a> <br><a href="../basic_geometrical_objects.htm"><b>id_plane3</b></a> <br><a href="../basic_geometrical_objects.htm"><b>id_polyline</b></a> <br><a href="../transformation_operations.htm"><b>id_position</b></a> <br><a href="../transformation_operations.htm"><b>id_prism</b></a> <br><a href="../complex_objects.htm"><b>id_prism1</b></a> <br><a href="../complex_objects.htm"><b>id_prism2</b></a> <br><a href="../repairing_operations.htm"><b>id_ps</b></a> <br><a href="../basic_geometrical_objects.htm"><b>id_px</b></a> <br><a href="../basic_geometrical_objects.htm"><b>id_py</b></a> <br><a href="../basic_geometrical_objects.htm"><b>id_pz</b></a> <br><a href="../building_by_blocks.htm"><b>id_qface1</b></a> <br><a href="../building_by_blocks.htm"><b>id_qface2</b></a> <br><a href="../building_by_blocks.htm"><b>id_qface3</b></a> <br><a href="../repairing_operations.htm"><b>id_result</b></a> <br><a href="../complex_objects.htm"><b>id_revolution</b></a> <br><a href="../transformation_operations.htm"><b>id_rot1d</b></a> <br><a href="../transformation_operations.htm"><b>id_rot2d</b></a> <br><a href="../transformation_operations.htm"><b>id_rotation</b></a> <br><a href="../transformation_operations.htm"><b>id_scale</b></a> <br><a href="../boolean_operations.htm"><b>id_section</b></a> <br><a href="../repairing_operations.htm"><b>id_sewing</b></a> <br><a href="../repairing_operations.htm"><b>id_shape</b></a> <br><a href="../geometrical_objects.htm"><b>id_shell</b></a> <br><a href="../sketcher_tui.htm"><b>id_sketcher1</b></a> <br><a href="../sketcher_tui.htm"><b>id_sketcher2</b></a> <br><a href="../geometrical_objects.htm"><b>id_solid</b></a> <br><a href="../building_by_blocks.htm"><b>id_solid1</b></a> <br><a href="../building_by_blocks.htm"><b>id_solid2</b></a> <br><a href="../boolean_operations.htm"><b>id_sphere</b></a> <br><a href="../primitives.htm"><b>id_sphere1</b></a> <br><a href="../primitives.htm"><b>id_sphere2</b></a> <br><a href="../primitives.htm"><b>id_sphere3</b></a> <br><a href="../primitives.htm"><b>id_torus1</b></a> <br><a href="../primitives.htm"><b>id_torus2</b></a> <br><a href="../transformation_operations.htm"><b>id_tr1d</b></a> <br><a href="../transformation_operations.htm"><b>id_tr2d</b></a> <br><a href="../transformation_operations.htm"><b>id_translation1</b></a> <br><a href="../transformation_operations.htm"><b>id_translation2</b></a> <br><a href="../transformation_operations.htm"><b>id_translation3</b></a> <br><a href="../basic_geometrical_objects.htm"><b>id_vector</b></a> <br><a href="../basic_geometrical_objects.htm"><b>id_vector1</b></a> <br><a href="../basic_geometrical_objects.htm"><b>id_vector2</b></a> <br><a href="../complex_objects.htm"><b>id_vector3</b></a> <br><a href="../transformation_operations.htm"><b>id_vr</b></a> <br><a href="../basic_geometrical_objects.htm"><b>id_vxy</b></a> <br><nobr>id_wire <a href="../complex_objects.htm"><b>1</b></a> <a href="../geometrical_objects.htm"><b>2</b></a> <a href="../repairing_operations.htm"><b>3</b></a> </nobr><br><a href="../repairing_operations.htm"><b>id_wire_close</b></a> <br><nobr>idlist <a href="../transformation_operations.htm"><b>1</b></a> <a href="../repairing_operations.htm"><b>2</b></a> </nobr><br><a href="../transformation_operations.htm"><b>idlist_e</b></a> <br><a href="../transformation_operations.htm"><b>idlist_f</b></a> <br><nobr>ids <a href="../check_free_faces.htm"><b>1</b></a> <a href="../explode.htm"><b>2</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>3</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>4</b></a> <a href="../files/salome2_sp3_buildgui_functions.htm"><b>5</b></a> <a href="../working_with_groups.htm"><b>6</b></a> </nobr><br><br><br></p><p class="ftsbody" align="center"><a href="whlstf6.htm" target="_self" title="previous search group"><b>>></b></a>\r
+<nobr><a name="bm_I"></a><a name="subkey_I{"></a>i <a href="../complex_objects.htm"><b>1</b></a> <a href="../files/salome2_sp3_displaygui_functions.htm"><b>2</b></a> <a href="../groups.htm"><b>3</b></a> <a href="../repairing_operations.htm"><b>4</b></a> </nobr><br><a href="../files/salome2_sp3_measuregui_functions.htm"><b>i11</b></a> <br><a href="../files/salome2_sp3_measuregui_functions.htm"><b>i12</b></a> <br><a href="../files/salome2_sp3_measuregui_functions.htm"><b>i13</b></a> <br><a href="../files/salome2_sp3_measuregui_functions.htm"><b>i21</b></a> <br><a href="../files/salome2_sp3_measuregui_functions.htm"><b>i22</b></a> <br><a href="../files/salome2_sp3_measuregui_functions.htm"><b>i23</b></a> <br><a href="../files/salome2_sp3_measuregui_functions.htm"><b>i31</b></a> <br><a href="../files/salome2_sp3_measuregui_functions.htm"><b>i32</b></a> <br><a href="../files/salome2_sp3_measuregui_functions.htm"><b>i33</b></a> <br><nobr><a name="bms_ID"></a><a name="subkey_ID"></a>id <a href="../changing_displaying_parameters.htm"><b>1</b></a> <a href="../add_point_on_edge.htm"><b>2</b></a> <a href="../color.htm"><b>3</b></a> <a href="../close_contour.htm"><b>4</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>5</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>6</b></a> <a href="../files/salome2_sp3_displaygui_functions.htm"><b>7</b></a> <a href="../files/salome2_sp3_buildgui_functions.htm"><b>8</b></a> <a href="../multi_transformation.htm"><b>9</b></a> <a href="../suppress_holes.htm"><b>10</b></a> <a href="../suppress_faces.htm"><b>11</b></a> <a href="../working_with_groups.htm"><b>12</b></a> <a href="../wireframe_and_shading.htm"><b>13</b></a> <a href="../transparency.htm"><b>14</b></a> <a href="../suppress_internal_wires.htm"><b>15</b></a> </nobr><br><a href="../basic_geometrical_objects.htm"><b>id_arc</b></a> <br><a href="../basic_operations.htm"><b>id_archimede</b></a> <br><a href="../transformation_operations.htm"><b>id_axis</b></a> <br><a href="../basic_geometrical_objects.htm"><b>id_bezier</b></a> <br><nobr>id_box <a href="../blocks_operations.htm"><b>1</b></a> <a href="../basic_operations.htm"><b>2</b></a> <a href="../repairing_operations.htm"><b>3</b></a> <a href="../transformation_operations.htm"><b>4</b></a> </nobr><br><a href="../blocks_operations.htm"><b>id_box_tr1</b></a> <br><a href="../blocks_operations.htm"><b>id_box_tr2</b></a> <br><nobr>id_box1 <a href="../repairing_operations.htm"><b>1</b></a> <a href="../primitives.htm"><b>2</b></a> </nobr><br><nobr>id_box2 <a href="../repairing_operations.htm"><b>1</b></a> <a href="../primitives.htm"><b>2</b></a> </nobr><br><a href="../primitives.htm"><b>id_box3</b></a> <br><a href="../transformation_operations.htm"><b>id_chamfer_all</b></a> <br><a href="../transformation_operations.htm"><b>id_chamfer_e</b></a> <br><a href="../transformation_operations.htm"><b>id_chamfer_f</b></a> <br><a href="../transformation_operations.htm"><b>id_chamfer_f1</b></a> <br><a href="../basic_geometrical_objects.htm"><b>id_circle1</b></a> <br><a href="../basic_geometrical_objects.htm"><b>id_circle2</b></a> <br><a href="../boolean_operations.htm"><b>id_common</b></a> <br><nobr>id_compound <a href="../blocks_operations.htm"><b>1</b></a> <a href="../complex_objects.htm"><b>2</b></a> <a href="../repairing_operations.htm"><b>3</b></a> </nobr><br><a href="../primitives.htm"><b>id_cone1</b></a> <br><a href="../primitives.htm"><b>id_cone2</b></a> <br><a href="../transformation_operations.htm"><b>id_cs1</b></a> <br><a href="../transformation_operations.htm"><b>id_cs2</b></a> <br><nobr>id_cut <a href="../boolean_operations.htm"><b>1</b></a> <a href="../repairing_operations.htm"><b>2</b></a> </nobr><br><a href="../repairing_operations.htm"><b>id_cut_without_f_2</b></a> <br><nobr>id_cylinder <a href="../boolean_operations.htm"><b>1</b></a> <a href="../transformation_operations.htm"><b>2</b></a> </nobr><br><a href="../repairing_operations.htm"><b>id_divide</b></a> <br><nobr>id_edge <a href="../complex_objects.htm"><b>1</b></a> <a href="../geometrical_objects.htm"><b>2</b></a> <a href="../repairing_operations.htm"><b>3</b></a> </nobr><br><a href="../building_by_blocks.htm"><b>id_edge1</b></a> <br><a href="../building_by_blocks.htm"><b>id_edge2</b></a> <br><a href="../building_by_blocks.htm"><b>id_edge3</b></a> <br><a href="../building_by_blocks.htm"><b>id_edge4</b></a> <br><a href="../basic_geometrical_objects.htm"><b>id_ellipse</b></a> <br><nobr>id_face <a href="../basic_geometrical_objects.htm"><b>1</b></a> <a href="../sketcher_tui.htm"><b>2</b></a> <a href="../repairing_operations.htm"><b>3</b></a> </nobr><br><a href="../repairing_operations.htm"><b>id_face_rot</b></a> <br><nobr>id_face1 <a href="../complex_objects.htm"><b>1</b></a> <a href="../geometrical_objects.htm"><b>2</b></a> </nobr><br><nobr>id_face2 <a href="../complex_objects.htm"><b>1</b></a> <a href="../geometrical_objects.htm"><b>2</b></a> </nobr><br><a href="../geometrical_objects.htm"><b>id_face3</b></a> <br><a href="../transformation_operations.htm"><b>id_fillet</b></a> <br><a href="../transformation_operations.htm"><b>id_filletall</b></a> <br><a href="../complex_objects.htm"><b>id_filling</b></a> <br><a href="../boolean_operations.htm"><b>id_fuse</b></a> <br><a href="../repairing_operations.htm"><b>id_glue</b></a> <br><a href="../groups.htm"><b>id_group1</b></a> <br><a href="../repairing_operations.htm"><b>id_importbrep</b></a> <br><a href="../basic_geometrical_objects.htm"><b>id_interpol</b></a> <br><a href="../basic_geometrical_objects.htm"><b>id_line1</b></a> <br><a href="../basic_geometrical_objects.htm"><b>id_line2</b></a> <br><a href="../blocks_operations.htm"><b>id_make_block_explode</b></a> <br><a href="../transformation_operations.htm"><b>id_mirror1</b></a> <br><a href="../transformation_operations.htm"><b>id_mirror2</b></a> <br><a href="../transformation_operations.htm"><b>id_mirror3</b></a> <br><a href="../transformation_operations.htm"><b>id_offset</b></a> <br><a href="../basic_geometrical_objects.htm"><b>id_p_on_arc</b></a> <br><a href="../basic_geometrical_objects.htm"><b>id_p0</b></a> <br><nobr>id_p1 <a href="../building_by_blocks.htm"><b>1</b></a> <a href="../basic_geometrical_objects.htm"><b>2</b></a> </nobr><br><a href="../basic_geometrical_objects.htm"><b>id_p100</b></a> <br><nobr>id_p2 <a href="../building_by_blocks.htm"><b>1</b></a> <a href="../basic_geometrical_objects.htm"><b>2</b></a> </nobr><br><nobr>id_p3 <a href="../building_by_blocks.htm"><b>1</b></a> <a href="../basic_geometrical_objects.htm"><b>2</b></a> </nobr><br><nobr>id_p4 <a href="../building_by_blocks.htm"><b>1</b></a> <a href="../basic_geometrical_objects.htm"><b>2</b></a> <a href="../transformation_operations.htm"><b>3</b></a> </nobr><br><a href="../basic_operations.htm"><b>id_partition1</b></a> <br><a href="../basic_operations.htm"><b>id_partition2</b></a> <br><a href="../basic_operations.htm"><b>id_partition3</b></a> <br><a href="../complex_objects.htm"><b>id_pipe</b></a> <br><nobr>id_plane <a href="../basic_operations.htm"><b>1</b></a> <a href="../transformation_operations.htm"><b>2</b></a> </nobr><br><a href="../basic_geometrical_objects.htm"><b>id_plane1</b></a> <br><a href="../basic_geometrical_objects.htm"><b>id_plane2</b></a> <br><a href="../basic_geometrical_objects.htm"><b>id_plane3</b></a> <br><a href="../basic_geometrical_objects.htm"><b>id_polyline</b></a> <br><a href="../transformation_operations.htm"><b>id_position</b></a> <br><a href="../transformation_operations.htm"><b>id_prism</b></a> <br><a href="../complex_objects.htm"><b>id_prism1</b></a> <br><a href="../complex_objects.htm"><b>id_prism2</b></a> <br><a href="../repairing_operations.htm"><b>id_ps</b></a> <br><a href="../basic_geometrical_objects.htm"><b>id_px</b></a> <br><a href="../basic_geometrical_objects.htm"><b>id_py</b></a> <br><a href="../basic_geometrical_objects.htm"><b>id_pz</b></a> <br><a href="../building_by_blocks.htm"><b>id_qface1</b></a> <br><a href="../building_by_blocks.htm"><b>id_qface2</b></a> <br><a href="../building_by_blocks.htm"><b>id_qface3</b></a> <br><a href="../repairing_operations.htm"><b>id_result</b></a> <br><a href="../complex_objects.htm"><b>id_revolution</b></a> <br><a href="../transformation_operations.htm"><b>id_rot1d</b></a> <br><a href="../transformation_operations.htm"><b>id_rot2d</b></a> <br><a href="../transformation_operations.htm"><b>id_rotation</b></a> <br><a href="../transformation_operations.htm"><b>id_scale</b></a> <br><a href="../boolean_operations.htm"><b>id_section</b></a> <br><a href="../repairing_operations.htm"><b>id_sewing</b></a> <br><a href="../repairing_operations.htm"><b>id_shape</b></a> <br><a href="../geometrical_objects.htm"><b>id_shell</b></a> <br><a href="../sketcher_tui.htm"><b>id_sketcher1</b></a> <br><a href="../sketcher_tui.htm"><b>id_sketcher2</b></a> <br><a href="../geometrical_objects.htm"><b>id_solid</b></a> <br><a href="../building_by_blocks.htm"><b>id_solid1</b></a> <br><a href="../building_by_blocks.htm"><b>id_solid2</b></a> <br><a href="../boolean_operations.htm"><b>id_sphere</b></a> <br><a href="../primitives.htm"><b>id_sphere1</b></a> <br><a href="../primitives.htm"><b>id_sphere2</b></a> <br><a href="../primitives.htm"><b>id_sphere3</b></a> <br><a href="../primitives.htm"><b>id_torus1</b></a> <br><a href="../primitives.htm"><b>id_torus2</b></a> <br><a href="../transformation_operations.htm"><b>id_tr1d</b></a> <br><a href="../transformation_operations.htm"><b>id_tr2d</b></a> <br><a href="../transformation_operations.htm"><b>id_translation1</b></a> <br><a href="../transformation_operations.htm"><b>id_translation2</b></a> <br><a href="../transformation_operations.htm"><b>id_translation3</b></a> <br><a href="../basic_geometrical_objects.htm"><b>id_vector</b></a> <br><a href="../basic_geometrical_objects.htm"><b>id_vector1</b></a> <br><a href="../basic_geometrical_objects.htm"><b>id_vector2</b></a> <br><a href="../complex_objects.htm"><b>id_vector3</b></a> <br><a href="../transformation_operations.htm"><b>id_vr</b></a> <br><a href="../basic_geometrical_objects.htm"><b>id_vxy</b></a> <br><nobr>id_wire <a href="../complex_objects.htm"><b>1</b></a> <a href="../geometrical_objects.htm"><b>2</b></a> <a href="../repairing_operations.htm"><b>3</b></a> </nobr><br><a href="../repairing_operations.htm"><b>id_wire_close</b></a> <br><nobr>idlist <a href="../repairing_operations.htm"><b>1</b></a> <a href="../transformation_operations.htm"><b>2</b></a> </nobr><br><a href="../transformation_operations.htm"><b>idlist_e</b></a> <br><a href="../transformation_operations.htm"><b>idlist_f</b></a> <br><nobr>ids <a href="../check_free_faces.htm"><b>1</b></a> <a href="../explode.htm"><b>2</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>3</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>4</b></a> <a href="../files/salome2_sp3_buildgui_functions.htm"><b>5</b></a> <a href="../multi_transformation.htm"><b>6</b></a> <a href="../repairing_operations.htm"><b>7</b></a> <a href="../working_with_groups.htm"><b>8</b></a> <a href="../transformation_operations.htm"><b>9</b></a> </nobr><br><br><br></p><p class="ftsbody" align="center"><a href="whlstf6.htm" target="_self" title="previous search group"><b>>></b></a>\r
\r
</body>\r
\r
<body marginheight="0" marginwidth="0" bgproperties="fixed">\r
<p class="ftsbody" align="center"><a href="whlstf5.htm" target="_self" title="previous search group"><b><<</b></a><br><br></p>\r
<p class="ftsbody" >\r
-<nobr><a name="bms_IF"></a><a name="subkey_IF"></a>if <a href="../check_free_boundaries.htm"><b>1</b></a> <a href="../add_point_on_edge.htm"><b>2</b></a> <a href="../face.htm"><b>3</b></a> <a href="../cone.htm"><b>4</b></a> <a href="../close_contour.htm"><b>5</b></a> <a href="../groups.htm"><b>6</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>7</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>8</b></a> <a href="../files/salome2_sp3_measuregui_functions.htm"><b>9</b></a> <a href="../files/salome2_sp3_buildgui_functions.htm"><b>10</b></a> <a href="../partition.htm"><b>11</b></a> <a href="../measurement_tools.htm"><b>12</b></a> <a href="../suppress_internal_wires.htm"><b>13</b></a> <a href="../suppress_holes.htm"><b>14</b></a> <a href="../shape_processing.htm"><b>15</b></a> <a href="../repairing_operations.htm"><b>16</b></a> <a href="../working_with_groups.htm"><b>17</b></a> </nobr><br><nobr><a name="bms_IG"></a><a name="subkey_IG"></a>iges <a href="../files/introduction_to_geom.htm"><b>1</b></a> <a href="../files/salome2_sp3_geomtoolsgui_functions.htm"><b>2</b></a> </nobr><br><nobr><a name="bms_IM"></a><a name="subkey_IM"></a>image <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>1</b></a> <a href="../mirror_image.htm"><b>2</b></a> <a href="../transformation_operations.htm"><b>3</b></a> </nobr><br><nobr>import <a href="../changing_display_parameters.htm"><b>1</b></a> <a href="../building_by_blocks.htm"><b>2</b></a> <a href="../boolean_operations.htm"><b>3</b></a> <a href="../blocks_operations.htm"><b>4</b></a> <a href="../basic_operations.htm"><b>5</b></a> <a href="../basic_geometrical_objects.htm"><b>6</b></a> <a href="../files/introduction_to_geom.htm"><b>7</b></a> <a href="../complex_objects.htm"><b>8</b></a> <a href="../groups.htm"><b>9</b></a> <a href="../geometrical_objects.htm"><b>10</b></a> <a href="../files/salome2_sp3_geomtoolsgui_functions.htm"><b>11</b></a> <a href="../primitives.htm"><b>12</b></a> <a href="../measurement_tools.htm"><b>13</b></a> <a href="../transformation_operations.htm"><b>14</b></a> <a href="../sketcher_tui.htm"><b>15</b></a> <a href="../repairing_operations.htm"><b>16</b></a> </nobr><br><a href="../files/salome2_sp3_geomtoolsgui_functions.htm"><b>importation</b></a> <br><a href="../repairing_operations.htm"><b>importbrep</b></a> <br><nobr>importcomponentgui <a href="../changing_display_parameters.htm"><b>1</b></a> <a href="../building_by_blocks.htm"><b>2</b></a> <a href="../boolean_operations.htm"><b>3</b></a> <a href="../blocks_operations.htm"><b>4</b></a> <a href="../basic_operations.htm"><b>5</b></a> <a href="../basic_geometrical_objects.htm"><b>6</b></a> <a href="../complex_objects.htm"><b>7</b></a> <a href="../groups.htm"><b>8</b></a> <a href="../geometrical_objects.htm"><b>9</b></a> <a href="../primitives.htm"><b>10</b></a> <a href="../measurement_tools.htm"><b>11</b></a> <a href="../transformation_operations.htm"><b>12</b></a> <a href="../sketcher_tui.htm"><b>13</b></a> <a href="../repairing_operations.htm"><b>14</b></a> </nobr><br><nobr>imported <a href="../files/salome2_sp3_measuregui_functions.htm"><b>1</b></a> <a href="../files/salome2_sp3_geomtoolsgui_functions.htm"><b>2</b></a> <a href="../files/salome2_sp3_displaygui_functions.htm"><b>3</b></a> <a href="../repairing_operations.htm"><b>4</b></a> </nobr><br><a href="../files/salome2_sp3_geomtoolsgui_functions.htm"><b>importing</b></a> <br><a href="../face.htm"><b>impossible</b></a> <br><a href="../blocks_operations.htm"><b>improve</b></a> <br><a name="bms_IN"></a><a name="subkey_IN"></a><a href="../groups.htm"><b>included</b></a> <br><nobr>increased <a href="../close_contour.htm"><b>1</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>2</b></a> </nobr><br><a href="../common.htm"><b>independent</b></a> <br><a href="../files/salome2_sp3_displaygui_functions.htm"><b>independently</b></a> <br><a href="../explode.htm"><b>index</b></a> <br><a href="../repairing_operations.htm"><b>indexes</b></a> <br><a href="../multi_translation.htm"><b>indicate</b></a> <br><a href="../point.htm"><b>indicating</b></a> <br><nobr>indices <a href="../chamfer.htm"><b>1</b></a> <a href="../explode.htm"><b>2</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>3</b></a> <a href="../partition.htm"><b>4</b></a> </nobr><br><nobr>inertia <a href="../files/salome2_sp3_measuregui_functions.htm"><b>1</b></a> <a href="../measurement_tools.htm"><b>2</b></a> </nobr><br><a href="../files/salome2_sp3_measuregui_functions.htm"><b>informs</b></a> <br><nobr>initial <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>1</b></a> <a href="../multi_rotation.htm"><b>2</b></a> <a href="../modify_the_location.htm"><b>3</b></a> <a href="../mirror_image.htm"><b>4</b></a> <a href="../scale_transform.htm"><b>5</b></a> <a href="../rotation.htm"><b>6</b></a> <a href="../translation.htm"><b>7</b></a> </nobr><br><nobr>inner <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>1</b></a> <a href="../offset_surface.htm"><b>2</b></a> </nobr><br><a href="../files/salome2_sp3_measuregui_functions.htm"><b>inquired</b></a> <br><a href="../files/salome2_sp3_measuregui_functions.htm"><b>inretia</b></a> <br><nobr>inserted <a href="../close_contour.htm"><b>1</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>2</b></a> </nobr><br><nobr>inside <a href="../files/salome2_sp3_operationgui_functions.htm"><b>1</b></a> <a href="../partition.htm"><b>2</b></a> </nobr><br><a href="../cone.htm"><b>instead</b></a> <br><nobr>integer <a href="../explode_on_blocks.htm"><b>1</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>2</b></a> <a href="../multi_transformation.htm"><b>3</b></a> </nobr><br><nobr>integers <a href="../files/salome2_sp3_operationgui_functions.htm"><b>1</b></a> <a href="../multi_transformation.htm"><b>2</b></a> </nobr><br><nobr>intended <a href="../files/salome2_sp3_repairgui_functions.htm"><b>1</b></a> <a href="../shape_processing.htm"><b>2</b></a> </nobr><br><nobr>interactively <a href="../explode_on_blocks.htm"><b>1</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>2</b></a> </nobr><br><a href="../newentity_blocks.htm"><b>intermediate</b></a> <br><nobr>internal <a href="../files/salome2_sp3_repairgui_functions.htm"><b>1</b></a> <a href="../suppress_internal_wires.htm"><b>2</b></a> <a href="../repairing_operations.htm"><b>3</b></a> </nobr><br><a href="../basic_geometrical_objects.htm"><b>interpol</b></a> <br><a href="../curve.htm"><b>interpolated</b></a> <br><a href="../basic_geometrical_objects.htm"><b>interpolation</b></a> <br><nobr>intersect <a href="../files/salome2_sp3_operationgui_functions.htm"><b>1</b></a> <a href="../partition.htm"><b>2</b></a> </nobr><br><nobr>intersected <a href="../files/salome2_sp3_operationgui_functions.htm"><b>1</b></a> <a href="../partition.htm"><b>2</b></a> </nobr><br><nobr>intersection <a href="../files/salome2_sp3_operationgui_functions.htm"><b>1</b></a> <a href="../partition.htm"><b>2</b></a> </nobr><br><nobr>introduction <a href="../files/introduction_to_geom.htm"><b>1</b></a> <a href="../newentity_blocks.htm"><b>2</b></a> </nobr><br><nobr>invalid <a href="../files/salome2_sp3_repairgui_functions.htm"><b>1</b></a> <a href="../measurement_tools.htm"><b>2</b></a> <a href="../shape_processing.htm"><b>3</b></a> <a href="../repairing_operations.htm"><b>4</b></a> </nobr><br><a href="../files/salome2_sp3_measuregui_functions.htm"><b>investigated</b></a> <br><a name="bms_IO"></a><a name="subkey_IO"></a><a href="../wire.htm"><b>ion</b></a> <br><nobr><a name="bms_IS"></a><a name="subkey_IS"></a>isbyparameter <a href="../add_point_on_edge.htm"><b>1</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>2</b></a> </nobr><br><nobr>iscommonvertex <a href="../close_contour.htm"><b>1</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>2</b></a> </nobr><br><a href="../changing_displaying_parameters.htm"><b>isolines</b></a> <br><a href="../changing_displaying_parameters.htm"><b>isos</b></a> <br><a href="../geometrical_objects.htm"><b>isplanarface</b></a> <br><nobr>isplanarwanted <a href="../basic_geometrical_objects.htm"><b>1</b></a> <a href="../face.htm"><b>2</b></a> <a href="../complex_objects.htm"><b>3</b></a> <a href="../sketcher_tui.htm"><b>4</b></a> </nobr><br><a href="../repairing_operations.htm"><b>issuccess</b></a> <br><nobr>isvalid <a href="../measurement_tools.htm"><b>1</b></a> <a href="../repairing_operations.htm"><b>2</b></a> </nobr><br><nobr><a name="bms_IT"></a><a name="subkey_IT"></a>iterations <a href="../filling.htm"><b>1</b></a> <a href="../files/salome2_sp3_generationgui_functions.htm"><b>2</b></a> </nobr><br><nobr>itself <a href="../close_contour.htm"><b>1</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>2</b></a> </nobr><br><nobr><a name="bms_IX"></a><a name="subkey_IX"></a>ix <a href="../files/salome2_sp3_measuregui_functions.htm"><b>1</b></a> <a href="../measurement_tools.htm"><b>2</b></a> </nobr><br><nobr><a name="bms_IY"></a><a name="subkey_IY"></a>iy <a href="../files/salome2_sp3_measuregui_functions.htm"><b>1</b></a> <a href="../measurement_tools.htm"><b>2</b></a> </nobr><br><nobr><a name="bms_IZ"></a><a name="subkey_IZ"></a>iz <a href="../files/salome2_sp3_measuregui_functions.htm"><b>1</b></a> <a href="../measurement_tools.htm"><b>2</b></a> </nobr><br>\r
+<nobr><a name="bms_IF"></a><a name="subkey_IF"></a>if <a href="../check_free_boundaries.htm"><b>1</b></a> <a href="../add_point_on_edge.htm"><b>2</b></a> <a href="../face.htm"><b>3</b></a> <a href="../cone.htm"><b>4</b></a> <a href="../close_contour.htm"><b>5</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>6</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>7</b></a> <a href="../files/salome2_sp3_measuregui_functions.htm"><b>8</b></a> <a href="../files/salome2_sp3_buildgui_functions.htm"><b>9</b></a> <a href="../partition.htm"><b>10</b></a> <a href="../measurement_tools.htm"><b>11</b></a> <a href="../groups.htm"><b>12</b></a> <a href="../suppress_holes.htm"><b>13</b></a> <a href="../shape_processing.htm"><b>14</b></a> <a href="../repairing_operations.htm"><b>15</b></a> <a href="../suppress_internal_wires.htm"><b>16</b></a> </nobr><br><nobr><a name="bms_IG"></a><a name="subkey_IG"></a>iges <a href="../files/introduction_to_geom.htm"><b>1</b></a> <a href="../files/salome2_sp3_geomtoolsgui_functions.htm"><b>2</b></a> </nobr><br><nobr><a name="bms_IM"></a><a name="subkey_IM"></a>image <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>1</b></a> <a href="../mirror_image.htm"><b>2</b></a> <a href="../transformation_operations.htm"><b>3</b></a> </nobr><br><a href="../files/salome2_sp3_geomtoolsgui_functions.htm"><b>implemented</b></a> <br><nobr>import <a href="../changing_display_parameters.htm"><b>1</b></a> <a href="../building_by_blocks.htm"><b>2</b></a> <a href="../boolean_operations.htm"><b>3</b></a> <a href="../blocks_operations.htm"><b>4</b></a> <a href="../basic_operations.htm"><b>5</b></a> <a href="../basic_geometrical_objects.htm"><b>6</b></a> <a href="../files/introduction_to_geom.htm"><b>7</b></a> <a href="../complex_objects.htm"><b>8</b></a> <a href="../geometrical_objects.htm"><b>9</b></a> <a href="../files/salome2_sp3_geomtoolsgui_functions.htm"><b>10</b></a> <a href="../measurement_tools.htm"><b>11</b></a> <a href="../groups.htm"><b>12</b></a> <a href="../sketcher_tui.htm"><b>13</b></a> <a href="../repairing_operations.htm"><b>14</b></a> <a href="../primitives.htm"><b>15</b></a> <a href="../transformation_operations.htm"><b>16</b></a> </nobr><br><a href="../files/salome2_sp3_geomtoolsgui_functions.htm"><b>importation</b></a> <br><a href="../repairing_operations.htm"><b>importbrep</b></a> <br><nobr>importcomponentgui <a href="../changing_display_parameters.htm"><b>1</b></a> <a href="../building_by_blocks.htm"><b>2</b></a> <a href="../boolean_operations.htm"><b>3</b></a> <a href="../blocks_operations.htm"><b>4</b></a> <a href="../basic_operations.htm"><b>5</b></a> <a href="../basic_geometrical_objects.htm"><b>6</b></a> <a href="../complex_objects.htm"><b>7</b></a> <a href="../geometrical_objects.htm"><b>8</b></a> <a href="../measurement_tools.htm"><b>9</b></a> <a href="../groups.htm"><b>10</b></a> <a href="../sketcher_tui.htm"><b>11</b></a> <a href="../repairing_operations.htm"><b>12</b></a> <a href="../primitives.htm"><b>13</b></a> <a href="../transformation_operations.htm"><b>14</b></a> </nobr><br><nobr>imported <a href="../files/salome2_sp3_measuregui_functions.htm"><b>1</b></a> <a href="../files/salome2_sp3_geomtoolsgui_functions.htm"><b>2</b></a> <a href="../files/salome2_sp3_displaygui_functions.htm"><b>3</b></a> <a href="../repairing_operations.htm"><b>4</b></a> </nobr><br><a href="../files/salome2_sp3_geomtoolsgui_functions.htm"><b>importing</b></a> <br><a href="../face.htm"><b>impossible</b></a> <br><a href="../blocks_operations.htm"><b>improve</b></a> <br><a name="bms_IN"></a><a name="subkey_IN"></a><a href="../groups.htm"><b>included</b></a> <br><nobr>increased <a href="../close_contour.htm"><b>1</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>2</b></a> </nobr><br><a href="../common.htm"><b>independent</b></a> <br><a href="../files/salome2_sp3_displaygui_functions.htm"><b>independently</b></a> <br><a href="../explode.htm"><b>index</b></a> <br><a href="../working_with_groups.htm"><b>indexes</b></a> <br><a href="../multi_translation.htm"><b>indicate</b></a> <br><a href="../point.htm"><b>indicating</b></a> <br><nobr>indices <a href="../chamfer.htm"><b>1</b></a> <a href="../explode.htm"><b>2</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>3</b></a> <a href="../partition.htm"><b>4</b></a> <a href="../repairing_operations.htm"><b>5</b></a> </nobr><br><nobr>inertia <a href="../files/salome2_sp3_measuregui_functions.htm"><b>1</b></a> <a href="../measurement_tools.htm"><b>2</b></a> </nobr><br><a href="../files/salome2_sp3_measuregui_functions.htm"><b>informs</b></a> <br><nobr>initial <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>1</b></a> <a href="../multi_rotation.htm"><b>2</b></a> <a href="../modify_the_location.htm"><b>3</b></a> <a href="../mirror_image.htm"><b>4</b></a> <a href="../scale_transform.htm"><b>5</b></a> <a href="../rotation.htm"><b>6</b></a> <a href="../translation.htm"><b>7</b></a> </nobr><br><nobr>inner <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>1</b></a> <a href="../offset_surface.htm"><b>2</b></a> </nobr><br><a href="../files/salome2_sp3_measuregui_functions.htm"><b>inquired</b></a> <br><a href="../files/salome2_sp3_geomtoolsgui_functions.htm"><b>ins</b></a> <br><nobr>inserted <a href="../close_contour.htm"><b>1</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>2</b></a> </nobr><br><nobr>inside <a href="../files/salome2_sp3_operationgui_functions.htm"><b>1</b></a> <a href="../partition.htm"><b>2</b></a> </nobr><br><a href="../cone.htm"><b>instead</b></a> <br><nobr>integer <a href="../files/salome2_sp3_operationgui_functions.htm"><b>1</b></a> <a href="../multi_transformation.htm"><b>2</b></a> </nobr><br><nobr>integers <a href="../explode_on_blocks.htm"><b>1</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>2</b></a> <a href="../multi_transformation.htm"><b>3</b></a> </nobr><br><nobr>intended <a href="../files/salome2_sp3_repairgui_functions.htm"><b>1</b></a> <a href="../shape_processing.htm"><b>2</b></a> </nobr><br><nobr>interactively <a href="../explode_on_blocks.htm"><b>1</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>2</b></a> </nobr><br><a href="../newentity_blocks.htm"><b>intermediate</b></a> <br><nobr>internal <a href="../files/salome2_sp3_repairgui_functions.htm"><b>1</b></a> <a href="../repairing_operations.htm"><b>2</b></a> <a href="../suppress_internal_wires.htm"><b>3</b></a> </nobr><br><a href="../basic_geometrical_objects.htm"><b>interpol</b></a> <br><a href="../curve.htm"><b>interpolated</b></a> <br><nobr>intersect <a href="../files/salome2_sp3_operationgui_functions.htm"><b>1</b></a> <a href="../partition.htm"><b>2</b></a> </nobr><br><nobr>intersected <a href="../files/salome2_sp3_operationgui_functions.htm"><b>1</b></a> <a href="../partition.htm"><b>2</b></a> </nobr><br><nobr>intersection <a href="../files/salome2_sp3_operationgui_functions.htm"><b>1</b></a> <a href="../partition.htm"><b>2</b></a> </nobr><br><nobr>introduction <a href="../files/introduction_to_geom.htm"><b>1</b></a> <a href="../newentity_blocks.htm"><b>2</b></a> </nobr><br><nobr>invalid <a href="../files/salome2_sp3_repairgui_functions.htm"><b>1</b></a> <a href="../measurement_tools.htm"><b>2</b></a> <a href="../shape_processing.htm"><b>3</b></a> <a href="../repairing_operations.htm"><b>4</b></a> </nobr><br><a href="../transparency.htm"><b>invisible</b></a> <br><nobr><a name="bms_IS"></a><a name="subkey_IS"></a>isbyparameter <a href="../add_point_on_edge.htm"><b>1</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>2</b></a> </nobr><br><nobr>iscommonvertex <a href="../close_contour.htm"><b>1</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>2</b></a> </nobr><br><a href="../isos.htm"><b>isolines</b></a> <br><a href="../changing_displaying_parameters.htm"><b>isos</b></a> <br><a href="../geometrical_objects.htm"><b>isplanarface</b></a> <br><nobr>isplanarwanted <a href="../basic_geometrical_objects.htm"><b>1</b></a> <a href="../face.htm"><b>2</b></a> <a href="../complex_objects.htm"><b>3</b></a> <a href="../sketcher_tui.htm"><b>4</b></a> </nobr><br><a href="../repairing_operations.htm"><b>issuccess</b></a> <br><nobr>isvalid <a href="../measurement_tools.htm"><b>1</b></a> <a href="../repairing_operations.htm"><b>2</b></a> </nobr><br><nobr><a name="bms_IT"></a><a name="subkey_IT"></a>iterations <a href="../filling.htm"><b>1</b></a> <a href="../files/salome2_sp3_generationgui_functions.htm"><b>2</b></a> </nobr><br><nobr>itself <a href="../close_contour.htm"><b>1</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>2</b></a> </nobr><br><nobr><a name="bms_IX"></a><a name="subkey_IX"></a>ix <a href="../files/salome2_sp3_measuregui_functions.htm"><b>1</b></a> <a href="../measurement_tools.htm"><b>2</b></a> </nobr><br><nobr><a name="bms_IY"></a><a name="subkey_IY"></a>iy <a href="../files/salome2_sp3_measuregui_functions.htm"><b>1</b></a> <a href="../measurement_tools.htm"><b>2</b></a> </nobr><br><nobr><a name="bms_IZ"></a><a name="subkey_IZ"></a>iz <a href="../files/salome2_sp3_measuregui_functions.htm"><b>1</b></a> <a href="../measurement_tools.htm"><b>2</b></a> </nobr><br>\r
<br><br>\r
<a name="bm_J"></a><a name="subkey_JU"></a><a href="../newentity_blocks.htm"><b>just</b></a> <br>\r
<br><br>\r
-<nobr><a name="bm_K"></a><a name="subkey_KE"></a>keep <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>1</b></a> <a href="../modify_the_location.htm"><b>2</b></a> <a href="../mirror_image.htm"><b>3</b></a> <a href="../rotation.htm"><b>4</b></a> <a href="../translation.htm"><b>5</b></a> </nobr><br><a name="bms_KO"></a><a name="subkey_KO"></a><a href="../repairing_operations.htm"><b>ko</b></a> <br>\r
+<nobr><a name="bm_K"></a><a name="subkey_KE"></a>keep <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>1</b></a> <a href="../modify_the_location.htm"><b>2</b></a> <a href="../mirror_image.htm"><b>3</b></a> <a href="../rotation.htm"><b>4</b></a> <a href="../working_with_groups.htm"><b>5</b></a> <a href="../translation.htm"><b>6</b></a> </nobr><br><a href="../working_with_groups.htm"><b>keyboard</b></a> <br><a name="bms_KO"></a><a name="subkey_KO"></a><a href="../repairing_operations.htm"><b>ko</b></a> <br>\r
<br><br>\r
-<nobr><a name="bm_L"></a><a name="subkey_L{"></a>l <a href="../geometrical_objects.htm"><b>1</b></a> <a href="../sketcher_tui.htm"><b>2</b></a> </nobr><br><nobr><a name="bms_LA"></a><a name="subkey_LA"></a>last <a href="../files/salome2_sp3_basicgui_functions.htm"><b>1</b></a> <a href="../edge.htm"><b>2</b></a> <a href="../files/salome2_sp3_buildgui_functions.htm"><b>3</b></a> </nobr><br><nobr><a name="bms_LC"></a><a name="subkey_LC"></a>lcs <a href="../files/salome2_sp3_basicgui_functions.htm"><b>1</b></a> <a href="../local_coordinate_system.htm"><b>2</b></a> </nobr><br><nobr><a name="bms_LE"></a><a name="subkey_LE"></a>least <a href="../files/salome2_sp3_basicgui_functions.htm"><b>1</b></a> <a href="../curve.htm"><b>2</b></a> </nobr><br><a href="../repairing_operations.htm"><b>len</b></a> <br><nobr>length <a href="../add_point_on_edge.htm"><b>1</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>2</b></a> <a href="../files/salome2_sp3_measuregui_functions.htm"><b>3</b></a> <a href="../measurement_tools.htm"><b>4</b></a> <a href="../sketcher.htm"><b>5</b></a> </nobr><br><nobr>less <a href="../files/salome2_sp3_repairgui_functions.htm"><b>1</b></a> <a href="../shape_processing.htm"><b>2</b></a> </nobr><br><nobr><a name="bms_LI"></a><a name="subkey_LI"></a>lie <a href="../circle.htm"><b>1</b></a> <a href="../arc.htm"><b>2</b></a> </nobr><br><nobr>limit <a href="../files/salome2_sp3_operationgui_functions.htm"><b>1</b></a> <a href="../partition.htm"><b>2</b></a> </nobr><br><nobr>line <a href="../basic_geometrical_objects.htm"><b>1</b></a> <a href="../archimede.htm"><b>2</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>3</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>4</b></a> <a href="../line.htm"><b>5</b></a> <a href="../sketcher.htm"><b>6</b></a> </nobr><br><a href="../basic_geometrical_objects.htm"><b>line1</b></a> <br><a href="../basic_geometrical_objects.htm"><b>line2</b></a> <br><a href="../sketcher.htm"><b>linear</b></a> <br><a href="../basic_geometrical_objects.htm"><b>lines</b></a> <br><nobr>list <a href="../check_free_faces.htm"><b>1</b></a> <a href="../check_free_boundaries.htm"><b>2</b></a> <a href="../chamfer.htm"><b>3</b></a> <a href="../basic_geometrical_objects.htm"><b>4</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>5</b></a> <a href="../face.htm"><b>6</b></a> <a href="../explode.htm"><b>7</b></a> <a href="../curve.htm"><b>8</b></a> <a href="../compound.htm"><b>9</b></a> <a href="../close_contour.htm"><b>10</b></a> <a href="../groups.htm"><b>11</b></a> <a href="../filling.htm"><b>12</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>13</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>14</b></a> <a href="../files/salome2_sp3_generationgui_functions.htm"><b>15</b></a> <a href="../files/salome2_sp3_buildgui_functions.htm"><b>16</b></a> <a href="../propagate.htm"><b>17</b></a> <a href="../partition.htm"><b>18</b></a> <a href="../suppress_internal_wires.htm"><b>19</b></a> <a href="../suppress_holes.htm"><b>20</b></a> <a href="../suppress_faces.htm"><b>21</b></a> <a href="../solid.htm"><b>22</b></a> <a href="../sketcher.htm"><b>23</b></a> <a href="../shell.htm"><b>24</b></a> <a href="../shape_processing.htm"><b>25</b></a> <a href="../sewing.htm"><b>26</b></a> <a href="../working_with_groups.htm"><b>27</b></a> <a href="../wire.htm"><b>28</b></a> </nobr><br><a href="../blocks_operations.htm"><b>listchains</b></a> <br><nobr>listoffaceid <a href="../chamfer.htm"><b>1</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>2</b></a> </nobr><br><nobr>listofgeomshapes <a href="../files/salome2_sp3_repairgui_functions.htm"><b>1</b></a> <a href="../suppress_faces.htm"><b>2</b></a> </nobr><br><nobr>listofid <a href="../files/salome2_sp3_repairgui_functions.htm"><b>1</b></a> <a href="../files/salome2_sp3_buildgui_functions.htm"><b>2</b></a> <a href="../suppress_faces.htm"><b>3</b></a> </nobr><br><a href="../explode.htm"><b>listofind</b></a> <br><nobr>listofkeepinside <a href="../files/salome2_sp3_operationgui_functions.htm"><b>1</b></a> <a href="../partition.htm"><b>2</b></a> </nobr><br><nobr>listofmaterials <a href="../files/salome2_sp3_operationgui_functions.htm"><b>1</b></a> <a href="../partition.htm"><b>2</b></a> </nobr><br><nobr>listofremoveinside <a href="../files/salome2_sp3_operationgui_functions.htm"><b>1</b></a> <a href="../partition.htm"><b>2</b></a> </nobr><br><nobr>listofshape <a href="../files/salome2_sp3_basicgui_functions.htm"><b>1</b></a> <a href="../curve.htm"><b>2</b></a> <a href="../compound.htm"><b>3</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>4</b></a> <a href="../files/salome2_sp3_buildgui_functions.htm"><b>5</b></a> <a href="../solid.htm"><b>6</b></a> <a href="../shell.htm"><b>7</b></a> <a href="../sewing.htm"><b>8</b></a> <a href="../wire.htm"><b>9</b></a> </nobr><br><a href="../files/salome2_sp3_operationgui_functions.htm"><b>listofshapeid</b></a> <br><nobr>listofshapes <a href="../files/salome2_sp3_basicgui_functions.htm"><b>1</b></a> <a href="../curve.htm"><b>2</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>3</b></a> <a href="../partition.htm"><b>4</b></a> </nobr><br><nobr>listoftools <a href="../files/salome2_sp3_operationgui_functions.htm"><b>1</b></a> <a href="../partition.htm"><b>2</b></a> </nobr><br><nobr>listofwireid <a href="../files/salome2_sp3_repairgui_functions.htm"><b>1</b></a> <a href="../suppress_holes.htm"><b>2</b></a> </nobr><br><a href="../fillet.htm"><b>listshapes</b></a> <br><nobr><a name="bms_LO"></a><a name="subkey_LO"></a>local <a href="../files/salome2_sp3_basicgui_functions.htm"><b>1</b></a> <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>2</b></a> <a href="../offset_surface.htm"><b>3</b></a> <a href="../local_coordinate_system.htm"><b>4</b></a> <a href="../transformation_operations.htm"><b>5</b></a> <a href="../sketcher.htm"><b>6</b></a> </nobr><br><a href="../blocks_operations.htm"><b>localop</b></a> <br><nobr>located <a href="../files/salome2_sp3_basicgui_functions.htm"><b>1</b></a> <a href="../point.htm"><b>2</b></a> <a href="../local_coordinate_system.htm"><b>3</b></a> </nobr><br><nobr>location <a href="../files/salome2_sp3_basicgui_functions.htm"><b>1</b></a> <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>2</b></a> <a href="../files/salome2_sp3_geomtoolsgui_functions.htm"><b>3</b></a> <a href="../modify_the_location.htm"><b>4</b></a> <a href="../local_coordinate_system.htm"><b>5</b></a> <a href="../transformation_operations.htm"><b>6</b></a> </nobr><br><nobr><a name="bms_LY"></a><a name="subkey_LY"></a>lying <a href="../files/salome2_sp3_repairgui_functions.htm"><b>1</b></a> <a href="../suppress_internal_wires.htm"><b>2</b></a> <a href="../sketcher.htm"><b>3</b></a> </nobr><br>\r
-<br><br>\r
-<nobr><a name="bm_M"></a><a name="subkey_MA"></a>main <a href="../circle.htm"><b>1</b></a> <a href="../check_free_faces.htm"><b>2</b></a> <a href="../check_free_boundaries.htm"><b>3</b></a> <a href="../chamfer.htm"><b>4</b></a> <a href="../box.htm"><b>5</b></a> <a href="../blocks.htm"><b>6</b></a> <a href="../archimede.htm"><b>7</b></a> <a href="../arc.htm"><b>8</b></a> <a href="../add_point_on_edge.htm"><b>9</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>10</b></a> <a href="../face.htm"><b>11</b></a> <a href="../extrusion.htm"><b>12</b></a> <a href="../explode_on_blocks.htm"><b>13</b></a> <a href="../explode.htm"><b>14</b></a> <a href="../ellipse.htm"><b>15</b></a> <a href="../edge.htm"><b>16</b></a> <a href="../cylinder.htm"><b>17</b></a> <a href="../cut.htm"><b>18</b></a> <a href="../curve.htm"><b>19</b></a> <a href="../cone.htm"><b>20</b></a> <a href="../compound.htm"><b>21</b></a> <a href="../common.htm"><b>22</b></a> <a href="../close_contour.htm"><b>23</b></a> <a href="../glue_faces.htm"><b>24</b></a> <a href="../fuse.htm"><b>25</b></a> <a href="../filling.htm"><b>26</b></a> <a href="../fillet.htm"><b>27</b></a> <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>28</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>29</b></a> <a href="../files/salome2_sp3_primitivegui_functions.htm"><b>30</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>31</b></a> <a href="../files/salome2_sp3_measuregui_functions.htm"><b>32</b></a> <a href="../files/salome2_sp3_generationgui_functions.htm"><b>33</b></a> <a href="../files/salome2_sp3_displaygui_functions.htm"><b>34</b></a> <a href="../files/salome2_sp3_buildgui_functions.htm"><b>35</b></a> <a href="../propagate.htm"><b>36</b></a> <a href="../point.htm"><b>37</b></a> <a href="../plane.htm"><b>38</b></a> <a href="../pipe_creation.htm"><b>39</b></a> <a href="../partition.htm"><b>40</b></a> <a href="../offset_surface.htm"><b>41</b></a> <a href="../newentity_blocks.htm"><b>42</b></a> <a href="../multi_translation.htm"><b>43</b></a> <a href="../multi_transformation.htm"><b>44</b></a> <a href="../multi_rotation.htm"><b>45</b></a> <a href="../modify_the_location.htm"><b>46</b></a> <a href="../mirror_image.htm"><b>47</b></a> <a href="../measurement_tools.htm"><b>48</b></a> <a href="../local_coordinate_system.htm"><b>49</b></a> <a href="../line.htm"><b>50</b></a> <a href="../suppress_internal_wires.htm"><b>51</b></a> <a href="../suppress_holes.htm"><b>52</b></a> <a href="../suppress_faces.htm"><b>53</b></a> <a href="../sphere.htm"><b>54</b></a> <a href="../solid.htm"><b>55</b></a> <a href="../sketcher.htm"><b>56</b></a> <a href="../shell.htm"><b>57</b></a> <a href="../shape_processing.htm"><b>58</b></a> <a href="../sewing.htm"><b>59</b></a> <a href="../section.htm"><b>60</b></a> <a href="../scale_transform.htm"><b>61</b></a> <a href="../rotation.htm"><b>62</b></a> <a href="../revolution.htm"><b>63</b></a> <a href="../working_with_groups.htm"><b>64</b></a> <a href="../working_plane.htm"><b>65</b></a> <a href="../wire.htm"><b>66</b></a> <a href="../vector.htm"><b>67</b></a> <a href="../turus.htm"><b>68</b></a> <a href="../translation.htm"><b>69</b></a> </nobr><br><a href="../working_with_groups.htm"><b>mainshape</b></a> <br><nobr>major <a href="../files/salome2_sp3_basicgui_functions.htm"><b>1</b></a> <a href="../ellipse.htm"><b>2</b></a> <a href="../files/salome2_sp3_primitivegui_functions.htm"><b>3</b></a> <a href="../turus.htm"><b>4</b></a> </nobr><br><nobr>make <a href="../chamfer.htm"><b>1</b></a> <a href="../boolean_operations.htm"><b>2</b></a> <a href="../blocks_operations.htm"><b>3</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>4</b></a> <a href="../measurement_tools.htm"><b>5</b></a> <a href="../transformation_operations.htm"><b>6</b></a> <a href="../repairing_operations.htm"><b>7</b></a> </nobr><br><a href="../blocks_operations.htm"><b>make_block_explode</b></a> <br><nobr>makearc <a href="../basic_geometrical_objects.htm"><b>1</b></a> <a href="../arc.htm"><b>2</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>3</b></a> <a href="../complex_objects.htm"><b>4</b></a> <a href="../geometrical_objects.htm"><b>5</b></a> <a href="../transformation_operations.htm"><b>6</b></a> <a href="../sketcher_tui.htm"><b>7</b></a> <a href="../repairing_operations.htm"><b>8</b></a> </nobr><br><nobr>makebezier <a href="../basic_geometrical_objects.htm"><b>1</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>2</b></a> <a href="../curve.htm"><b>3</b></a> </nobr><br><nobr>makeblockexplode <a href="../blocks_operations.htm"><b>1</b></a> <a href="../explode_on_blocks.htm"><b>2</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>3</b></a> </nobr><br><nobr>makeboolean <a href="../changing_display_parameters.htm"><b>1</b></a> <a href="../files/salome2_sp3_booleangui_functions.htm"><b>2</b></a> </nobr><br><nobr>makebox <a href="../changing_display_parameters.htm"><b>1</b></a> <a href="../box.htm"><b>2</b></a> <a href="../files/salome2_sp3_primitivegui_functions.htm"><b>3</b></a> <a href="../primitives.htm"><b>4</b></a> <a href="../measurement_tools.htm"><b>5</b></a> <a href="../transformation_operations.htm"><b>6</b></a> <a href="../repairing_operations.htm"><b>7</b></a> </nobr><br><nobr>makeboxdxdydz <a href="../box.htm"><b>1</b></a> <a href="../blocks_operations.htm"><b>2</b></a> <a href="../primitives.htm"><b>3</b></a> <a href="../measurement_tools.htm"><b>4</b></a> <a href="../transformation_operations.htm"><b>5</b></a> <a href="../repairing_operations.htm"><b>6</b></a> </nobr><br><nobr>makeboxtwopnt <a href="../box.htm"><b>1</b></a> <a href="../basic_operations.htm"><b>2</b></a> <a href="../groups.htm"><b>3</b></a> <a href="../primitives.htm"><b>4</b></a> </nobr><br><nobr>makecdg <a href="../files/salome2_sp3_measuregui_functions.htm"><b>1</b></a> <a href="../measurement_tools.htm"><b>2</b></a> </nobr><br><a href="../transformation_operations.htm"><b>makechamfer</b></a> <br><nobr>makechamferall <a href="../chamfer.htm"><b>1</b></a> <a href="../transformation_operations.htm"><b>2</b></a> </nobr><br><nobr>makechamferedge <a href="../chamfer.htm"><b>1</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>2</b></a> <a href="../transformation_operations.htm"><b>3</b></a> </nobr><br><nobr>makechamferface <a href="../chamfer.htm"><b>1</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>2</b></a> </nobr><br><a href="../transformation_operations.htm"><b>makechamferfaces</b></a> <br><nobr>makecircle <a href="../circle.htm"><b>1</b></a> <a href="../basic_geometrical_objects.htm"><b>2</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>3</b></a> </nobr><br><nobr>makecirclethreepnt <a href="../circle.htm"><b>1</b></a> <a href="../basic_geometrical_objects.htm"><b>2</b></a> </nobr><br><nobr>makecommon <a href="../boolean_operations.htm"><b>1</b></a> <a href="../common.htm"><b>2</b></a> </nobr><br><nobr>makecompound <a href="../blocks_operations.htm"><b>1</b></a> <a href="../compound.htm"><b>2</b></a> <a href="../complex_objects.htm"><b>3</b></a> <a href="../files/salome2_sp3_buildgui_functions.htm"><b>4</b></a> <a href="../measurement_tools.htm"><b>5</b></a> <a href="../repairing_operations.htm"><b>6</b></a> </nobr><br><nobr>makecone <a href="../cone.htm"><b>1</b></a> <a href="../files/salome2_sp3_primitivegui_functions.htm"><b>2</b></a> <a href="../primitives.htm"><b>3</b></a> <a href="../repairing_operations.htm"><b>4</b></a> </nobr><br><nobr>makeconer1r2h <a href="../cone.htm"><b>1</b></a> <a href="../primitives.htm"><b>2</b></a> </nobr><br><nobr>makecut <a href="../boolean_operations.htm"><b>1</b></a> <a href="../repairing_operations.htm"><b>2</b></a> </nobr><br><nobr>makecylinder <a href="../boolean_operations.htm"><b>1</b></a> <a href="../cylinder.htm"><b>2</b></a> <a href="../files/salome2_sp3_primitivegui_functions.htm"><b>3</b></a> <a href="../transformation_operations.htm"><b>4</b></a> <a href="../repairing_operations.htm"><b>5</b></a> </nobr><br><a href="../cylinder.htm"><b>makecylinderrh</b></a> <br><nobr>makeedge <a href="../building_by_blocks.htm"><b>1</b></a> <a href="../edge.htm"><b>2</b></a> <a href="../complex_objects.htm"><b>3</b></a> <a href="../geometrical_objects.htm"><b>4</b></a> <a href="../files/salome2_sp3_buildgui_functions.htm"><b>5</b></a> <a href="../repairing_operations.htm"><b>6</b></a> </nobr><br><nobr>makeellipse <a href="../basic_geometrical_objects.htm"><b>1</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>2</b></a> <a href="../ellipse.htm"><b>3</b></a> </nobr><br><nobr>makeface <a href="../basic_geometrical_objects.htm"><b>1</b></a> <a href="../face.htm"><b>2</b></a> <a href="../complex_objects.htm"><b>3</b></a> <a href="../geometrical_objects.htm"><b>4</b></a> <a href="../files/salome2_sp3_buildgui_functions.htm"><b>5</b></a> <a href="../transformation_operations.htm"><b>6</b></a> <a href="../sketcher_tui.htm"><b>7</b></a> <a href="../repairing_operations.htm"><b>8</b></a> </nobr><br><nobr>makefaces <a href="../face.htm"><b>1</b></a> <a href="../geometrical_objects.htm"><b>2</b></a> </nobr><br><nobr>makefacewires <a href="../face.htm"><b>1</b></a> <a href="../geometrical_objects.htm"><b>2</b></a> </nobr><br><nobr>makefillet <a href="../fillet.htm"><b>1</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>2</b></a> <a href="../transformation_operations.htm"><b>3</b></a> </nobr><br><nobr>makefilletall <a href="../fillet.htm"><b>1</b></a> <a href="../transformation_operations.htm"><b>2</b></a> </nobr><br><nobr>makefilling <a href="../complex_objects.htm"><b>1</b></a> <a href="../filling.htm"><b>2</b></a> <a href="../files/salome2_sp3_generationgui_functions.htm"><b>3</b></a> </nobr><br><nobr>makefuse <a href="../boolean_operations.htm"><b>1</b></a> <a href="../fuse.htm"><b>2</b></a> </nobr><br><nobr>makegluefaces <a href="../glue_faces.htm"><b>1</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>2</b></a> <a href="../measurement_tools.htm"><b>3</b></a> </nobr><br><nobr>makehalfpartition <a href="../basic_operations.htm"><b>1</b></a> <a href="../partition.htm"><b>2</b></a> </nobr><br><a href="../building_by_blocks.htm"><b>makehexa</b></a> <br><a href="../building_by_blocks.htm"><b>makehexa2faces</b></a> <br><a href="../newentity_blocks.htm"><b>makehexasolid</b></a> <br><a href="../newentity_blocks.htm"><b>makehexasolidtwofaces</b></a> <br><nobr>makeinterpol <a href="../basic_geometrical_objects.htm"><b>1</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>2</b></a> <a href="../curve.htm"><b>3</b></a> </nobr><br><nobr>makeline <a href="../basic_geometrical_objects.htm"><b>1</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>2</b></a> <a href="../line.htm"><b>3</b></a> </nobr><br><a href="../basic_geometrical_objects.htm"><b>makelinetwopnt</b></a> <br><nobr>makemarker <a href="../files/salome2_sp3_basicgui_functions.htm"><b>1</b></a> <a href="../local_coordinate_system.htm"><b>2</b></a> <a href="../transformation_operations.htm"><b>3</b></a> </nobr><br><nobr>makemirrorbyaxis <a href="../mirror_image.htm"><b>1</b></a> <a href="../transformation_operations.htm"><b>2</b></a> </nobr><br><nobr>makemirrorbyplane <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>1</b></a> <a href="../mirror_image.htm"><b>2</b></a> <a href="../transformation_operations.htm"><b>3</b></a> </nobr><br><nobr>makemirrorbypoint <a href="../mirror_image.htm"><b>1</b></a> <a href="../transformation_operations.htm"><b>2</b></a> </nobr><br><nobr>makemultirotation1d <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>1</b></a> <a href="../multi_rotation.htm"><b>2</b></a> </nobr><br><nobr>makemultirotation2d <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>1</b></a> <a href="../multi_rotation.htm"><b>2</b></a> </nobr><br><nobr>makemultitransformation1d <a href="../blocks_operations.htm"><b>1</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>2</b></a> <a href="../multi_transformation.htm"><b>3</b></a> </nobr><br><nobr>makemultitransformation2d <a href="../blocks_operations.htm"><b>1</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>2</b></a> <a href="../multi_transformation.htm"><b>3</b></a> </nobr><br><nobr>makemultitranslation1d <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>1</b></a> <a href="../multi_translation.htm"><b>2</b></a> <a href="../transformation_operations.htm"><b>3</b></a> </nobr><br><nobr>makemultitranslation2d <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>1</b></a> <a href="../multi_translation.htm"><b>2</b></a> <a href="../transformation_operations.htm"><b>3</b></a> </nobr><br><nobr>makeoffset <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>1</b></a> <a href="../offset_surface.htm"><b>2</b></a> <a href="../transformation_operations.htm"><b>3</b></a> </nobr><br><nobr>makepartition <a href="../basic_operations.htm"><b>1</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>2</b></a> <a href="../partition.htm"><b>3</b></a> </nobr><br><nobr>makepipe <a href="../complex_objects.htm"><b>1</b></a> <a href="../files/salome2_sp3_generationgui_functions.htm"><b>2</b></a> <a href="../pipe_creation.htm"><b>3</b></a> </nobr><br><nobr>makeplane <a href="../basic_operations.htm"><b>1</b></a> <a href="../basic_geometrical_objects.htm"><b>2</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>3</b></a> <a href="../plane.htm"><b>4</b></a> </nobr><br><nobr>makeplaneface <a href="../basic_geometrical_objects.htm"><b>1</b></a> <a href="../plane.htm"><b>2</b></a> </nobr><br><nobr>makeplanethreepnt <a href="../basic_geometrical_objects.htm"><b>1</b></a> <a href="../plane.htm"><b>2</b></a> <a href="../transformation_operations.htm"><b>3</b></a> </nobr><br><nobr>makepolyline <a href="../basic_geometrical_objects.htm"><b>1</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>2</b></a> <a href="../curve.htm"><b>3</b></a> </nobr><br><nobr>makeposition <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>1</b></a> <a href="../modify_the_location.htm"><b>2</b></a> <a href="../transformation_operations.htm"><b>3</b></a> </nobr><br><nobr>makeprism <a href="../extrusion.htm"><b>1</b></a> <a href="../complex_objects.htm"><b>2</b></a> <a href="../geometrical_objects.htm"><b>3</b></a> <a href="../files/salome2_sp3_generationgui_functions.htm"><b>4</b></a> </nobr><br><nobr>makeprismvech <a href="../extrusion.htm"><b>1</b></a> <a href="../complex_objects.htm"><b>2</b></a> <a href="../transformation_operations.htm"><b>3</b></a> <a href="../repairing_operations.htm"><b>4</b></a> </nobr><br><a href="../building_by_blocks.htm"><b>makequad</b></a> <br><a href="../building_by_blocks.htm"><b>makequad2edges</b></a> <br><a href="../building_by_blocks.htm"><b>makequad4vertices</b></a> <br><a href="../newentity_blocks.htm"><b>makequadface</b></a> <br><a href="../newentity_blocks.htm"><b>makequadfaceedges</b></a> <br><a href="../newentity_blocks.htm"><b>makequadfacevertices</b></a> <br><nobr>makerevolution <a href="../complex_objects.htm"><b>1</b></a> <a href="../files/salome2_sp3_generationgui_functions.htm"><b>2</b></a> <a href="../revolution.htm"><b>3</b></a> </nobr><br><nobr>makerotation <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>1</b></a> <a href="../transformation_operations.htm"><b>2</b></a> <a href="../rotation.htm"><b>3</b></a> <a href="../repairing_operations.htm"><b>4</b></a> </nobr><br><nobr>makes <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>1</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>2</b></a> <a href="../partition.htm"><b>3</b></a> <a href="../multi_translation.htm"><b>4</b></a> <a href="../multi_transformation.htm"><b>5</b></a> <a href="../working_with_groups.htm"><b>6</b></a> <a href="../translation.htm"><b>7</b></a> </nobr><br><nobr>makescaletransform <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>1</b></a> <a href="../transformation_operations.htm"><b>2</b></a> <a href="../scale_transform.htm"><b>3</b></a> </nobr><br><nobr>makesection <a href="../boolean_operations.htm"><b>1</b></a> <a href="../section.htm"><b>2</b></a> </nobr><br><nobr>makesewing <a href="../files/salome2_sp3_repairgui_functions.htm"><b>1</b></a> <a href="../sewing.htm"><b>2</b></a> <a href="../repairing_operations.htm"><b>3</b></a> </nobr><br><nobr>makeshell <a href="../geometrical_objects.htm"><b>1</b></a> <a href="../files/salome2_sp3_buildgui_functions.htm"><b>2</b></a> <a href="../shell.htm"><b>3</b></a> </nobr><br><nobr>makesketcher <a href="../geometrical_objects.htm"><b>1</b></a> <a href="../sketcher_tui.htm"><b>2</b></a> <a href="../sketcher.htm"><b>3</b></a> </nobr><br><a href="../sketcher_tui.htm"><b>makesketcheronplane</b></a> <br><nobr>makesolid <a href="../geometrical_objects.htm"><b>1</b></a> <a href="../files/salome2_sp3_buildgui_functions.htm"><b>2</b></a> <a href="../solid.htm"><b>3</b></a> </nobr><br><nobr>makesphere <a href="../changing_display_parameters.htm"><b>1</b></a> <a href="../files/salome2_sp3_primitivegui_functions.htm"><b>2</b></a> <a href="../primitives.htm"><b>3</b></a> <a href="../sphere.htm"><b>4</b></a> </nobr><br><a href="../primitives.htm"><b>makespherepntr</b></a> <br><nobr>makespherer <a href="../boolean_operations.htm"><b>1</b></a> <a href="../blocks_operations.htm"><b>2</b></a> <a href="../primitives.htm"><b>3</b></a> <a href="../sphere.htm"><b>4</b></a> </nobr><br><nobr>maketorus <a href="../files/salome2_sp3_primitivegui_functions.htm"><b>1</b></a> <a href="../primitives.htm"><b>2</b></a> <a href="../turus.htm"><b>3</b></a> </nobr><br><nobr>maketorusrr <a href="../primitives.htm"><b>1</b></a> <a href="../turus.htm"><b>2</b></a> </nobr><br><nobr>maketranslation <a href="../complex_objects.htm"><b>1</b></a> <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>2</b></a> <a href="../transformation_operations.htm"><b>3</b></a> <a href="../translation.htm"><b>4</b></a> </nobr><br><nobr>maketranslationtwopoints <a href="../transformation_operations.htm"><b>1</b></a> <a href="../translation.htm"><b>2</b></a> </nobr><br><nobr>maketranslationvector <a href="../transformation_operations.htm"><b>1</b></a> <a href="../translation.htm"><b>2</b></a> </nobr><br><nobr>makevector <a href="../boolean_operations.htm"><b>1</b></a> <a href="../basic_geometrical_objects.htm"><b>2</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>3</b></a> <a href="../complex_objects.htm"><b>4</b></a> <a href="../geometrical_objects.htm"><b>5</b></a> <a href="../primitives.htm"><b>6</b></a> <a href="../transformation_operations.htm"><b>7</b></a> <a href="../sketcher_tui.htm"><b>8</b></a> <a href="../repairing_operations.htm"><b>9</b></a> <a href="../vector.htm"><b>10</b></a> </nobr><br><nobr>makevectordxdydz <a href="../basic_operations.htm"><b>1</b></a> <a href="../basic_geometrical_objects.htm"><b>2</b></a> <a href="../complex_objects.htm"><b>3</b></a> <a href="../vector.htm"><b>4</b></a> </nobr><br><nobr>makevertex <a href="../building_by_blocks.htm"><b>1</b></a> <a href="../boolean_operations.htm"><b>2</b></a> <a href="../blocks_operations.htm"><b>3</b></a> <a href="../basic_operations.htm"><b>4</b></a> <a href="../basic_geometrical_objects.htm"><b>5</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>6</b></a> <a href="../complex_objects.htm"><b>7</b></a> <a href="../groups.htm"><b>8</b></a> <a href="../geometrical_objects.htm"><b>9</b></a> <a href="../primitives.htm"><b>10</b></a> <a href="../point.htm"><b>11</b></a> <a href="../measurement_tools.htm"><b>12</b></a> <a href="../transformation_operations.htm"><b>13</b></a> <a href="../sketcher_tui.htm"><b>14</b></a> <a href="../repairing_operations.htm"><b>15</b></a> </nobr><br><nobr>makevertexoncurve <a href="../basic_geometrical_objects.htm"><b>1</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>2</b></a> <a href="../point.htm"><b>3</b></a> </nobr><br><nobr>makevertexwithref <a href="../basic_geometrical_objects.htm"><b>1</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>2</b></a> <a href="../point.htm"><b>3</b></a> </nobr><br><nobr>makewire <a href="../basic_geometrical_objects.htm"><b>1</b></a> <a href="../complex_objects.htm"><b>2</b></a> <a href="../geometrical_objects.htm"><b>3</b></a> <a href="../files/salome2_sp3_buildgui_functions.htm"><b>4</b></a> <a href="../transformation_operations.htm"><b>5</b></a> <a href="../sketcher_tui.htm"><b>6</b></a> <a href="../repairing_operations.htm"><b>7</b></a> <a href="../wire.htm"><b>8</b></a> </nobr><br><a href="../files/salome2_sp3_basicgui_functions.htm"><b>manually</b></a> <br><a href="../files/salome2_sp3_measuregui_functions.htm"><b>mass</b></a> <br><a href="../measurement_tools.htm"><b>masses</b></a> <br><nobr>materials <a href="../files/salome2_sp3_operationgui_functions.htm"><b>1</b></a> <a href="../partition.htm"><b>2</b></a> </nobr><br><nobr>math <a href="../measurement_tools.htm"><b>1</b></a> <a href="../transformation_operations.htm"><b>2</b></a> <a href="../repairing_operations.htm"><b>3</b></a> </nobr><br><nobr>matrix <a href="../files/salome2_sp3_measuregui_functions.htm"><b>1</b></a> <a href="../measurement_tools.htm"><b>2</b></a> </nobr><br><nobr>max <a href="../explode_on_blocks.htm"><b>1</b></a> <a href="../filling.htm"><b>2</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>3</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>4</b></a> <a href="../files/salome2_sp3_generationgui_functions.htm"><b>5</b></a> <a href="../measurement_tools.htm"><b>6</b></a> <a href="../shape_processing.htm"><b>7</b></a> </nobr><br><a href="../complex_objects.htm"><b>maxdeg</b></a> <br><nobr>maxdegree <a href="../filling.htm"><b>1</b></a> <a href="../files/salome2_sp3_generationgui_functions.htm"><b>2</b></a> </nobr><br><nobr>maximal <a href="../explode_on_blocks.htm"><b>1</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>2</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>3</b></a> <a href="../files/salome2_sp3_measuregui_functions.htm"><b>4</b></a> <a href="../files/salome2_sp3_generationgui_functions.htm"><b>5</b></a> <a href="../shape_processing.htm"><b>6</b></a> </nobr><br><nobr>maximum <a href="../explode_on_blocks.htm"><b>1</b></a> <a href="../glue_faces.htm"><b>2</b></a> <a href="../filling.htm"><b>3</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>4</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>5</b></a> <a href="../shape_processing.htm"><b>6</b></a> </nobr><br><nobr>maxnbfaces <a href="../explode_on_blocks.htm"><b>1</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>2</b></a> </nobr><br><nobr>maxtolerance <a href="../files/salome2_sp3_repairgui_functions.htm"><b>1</b></a> <a href="../shape_processing.htm"><b>2</b></a> </nobr><br><nobr>maxtolerance3d <a href="../files/salome2_sp3_repairgui_functions.htm"><b>1</b></a> <a href="../shape_processing.htm"><b>2</b></a> </nobr><br><br><br></p><p class="ftsbody" align="center"><a href="whlstf7.htm" target="_self" title="previous search group"><b>>></b></a>\r
+<nobr><a name="bm_L"></a><a name="subkey_L{"></a>l <a href="../geometrical_objects.htm"><b>1</b></a> <a href="../sketcher_tui.htm"><b>2</b></a> </nobr><br><nobr><a name="bms_LA"></a><a name="subkey_LA"></a>last <a href="../edge.htm"><b>1</b></a> <a href="../files/salome2_sp3_buildgui_functions.htm"><b>2</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>3</b></a> <a href="../local_coordinate_system.htm"><b>4</b></a> </nobr><br><nobr><a name="bms_LC"></a><a name="subkey_LC"></a>lcs <a href="../files/salome2_sp3_basicgui_functions.htm"><b>1</b></a> <a href="../local_coordinate_system.htm"><b>2</b></a> </nobr><br><nobr><a name="bms_LE"></a><a name="subkey_LE"></a>least <a href="../curve.htm"><b>1</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>2</b></a> </nobr><br><a href="../working_with_groups.htm"><b>leaves</b></a> <br><a href="../modify_the_location.htm"><b>left</b></a> <br><a href="../repairing_operations.htm"><b>len</b></a> <br><nobr>length <a href="../add_point_on_edge.htm"><b>1</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>2</b></a> <a href="../files/salome2_sp3_measuregui_functions.htm"><b>3</b></a> <a href="../measurement_tools.htm"><b>4</b></a> <a href="../sketcher.htm"><b>5</b></a> </nobr><br><nobr>less <a href="../files/salome2_sp3_repairgui_functions.htm"><b>1</b></a> <a href="../shape_processing.htm"><b>2</b></a> </nobr><br><nobr><a name="bms_LI"></a><a name="subkey_LI"></a>lie <a href="../circle.htm"><b>1</b></a> <a href="../arc.htm"><b>2</b></a> </nobr><br><nobr>limit <a href="../files/salome2_sp3_operationgui_functions.htm"><b>1</b></a> <a href="../partition.htm"><b>2</b></a> </nobr><br><nobr>line <a href="../basic_geometrical_objects.htm"><b>1</b></a> <a href="../archimede.htm"><b>2</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>3</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>4</b></a> <a href="../line.htm"><b>5</b></a> <a href="../sketcher.htm"><b>6</b></a> </nobr><br><a href="../basic_geometrical_objects.htm"><b>line1</b></a> <br><a href="../basic_geometrical_objects.htm"><b>line2</b></a> <br><a href="../sketcher.htm"><b>linear</b></a> <br><nobr>lines <a href="../basic_geometrical_objects.htm"><b>1</b></a> <a href="../working_with_groups.htm"><b>2</b></a> </nobr><br><nobr>list <a href="../check_free_faces.htm"><b>1</b></a> <a href="../check_free_boundaries.htm"><b>2</b></a> <a href="../chamfer.htm"><b>3</b></a> <a href="../basic_geometrical_objects.htm"><b>4</b></a> <a href="../face.htm"><b>5</b></a> <a href="../explode.htm"><b>6</b></a> <a href="../curve.htm"><b>7</b></a> <a href="../compound.htm"><b>8</b></a> <a href="../close_contour.htm"><b>9</b></a> <a href="../filling.htm"><b>10</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>11</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>12</b></a> <a href="../files/salome2_sp3_generationgui_functions.htm"><b>13</b></a> <a href="../files/salome2_sp3_buildgui_functions.htm"><b>14</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>15</b></a> <a href="../partition.htm"><b>16</b></a> <a href="../groups.htm"><b>17</b></a> <a href="../suppress_holes.htm"><b>18</b></a> <a href="../suppress_faces.htm"><b>19</b></a> <a href="../solid.htm"><b>20</b></a> <a href="../sketcher.htm"><b>21</b></a> <a href="../shell.htm"><b>22</b></a> <a href="../shape_processing.htm"><b>23</b></a> <a href="../sewing.htm"><b>24</b></a> <a href="../repairing_operations.htm"><b>25</b></a> <a href="../propagate.htm"><b>26</b></a> <a href="../working_with_groups.htm"><b>27</b></a> <a href="../wire.htm"><b>28</b></a> <a href="../transformation_operations.htm"><b>29</b></a> <a href="../suppress_internal_wires.htm"><b>30</b></a> </nobr><br><a href="../blocks_operations.htm"><b>listchains</b></a> <br><nobr>listoffaceid <a href="../chamfer.htm"><b>1</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>2</b></a> </nobr><br><nobr>listofgeomshapes <a href="../files/salome2_sp3_repairgui_functions.htm"><b>1</b></a> <a href="../suppress_faces.htm"><b>2</b></a> </nobr><br><nobr>listofid <a href="../files/salome2_sp3_repairgui_functions.htm"><b>1</b></a> <a href="../files/salome2_sp3_buildgui_functions.htm"><b>2</b></a> <a href="../suppress_faces.htm"><b>3</b></a> </nobr><br><a href="../explode.htm"><b>listofind</b></a> <br><nobr>listofkeepinside <a href="../files/salome2_sp3_operationgui_functions.htm"><b>1</b></a> <a href="../partition.htm"><b>2</b></a> </nobr><br><nobr>listofmaterials <a href="../files/salome2_sp3_operationgui_functions.htm"><b>1</b></a> <a href="../partition.htm"><b>2</b></a> </nobr><br><nobr>listofremoveinside <a href="../files/salome2_sp3_operationgui_functions.htm"><b>1</b></a> <a href="../partition.htm"><b>2</b></a> </nobr><br><nobr>listofshape <a href="../curve.htm"><b>1</b></a> <a href="../compound.htm"><b>2</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>3</b></a> <a href="../files/salome2_sp3_buildgui_functions.htm"><b>4</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>5</b></a> <a href="../solid.htm"><b>6</b></a> <a href="../shell.htm"><b>7</b></a> <a href="../sewing.htm"><b>8</b></a> <a href="../wire.htm"><b>9</b></a> </nobr><br><a href="../files/salome2_sp3_operationgui_functions.htm"><b>listofshapeid</b></a> <br><nobr>listofshapes <a href="../curve.htm"><b>1</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>2</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>3</b></a> <a href="../partition.htm"><b>4</b></a> </nobr><br><nobr>listoftools <a href="../files/salome2_sp3_operationgui_functions.htm"><b>1</b></a> <a href="../partition.htm"><b>2</b></a> </nobr><br><nobr>listofwireid <a href="../files/salome2_sp3_repairgui_functions.htm"><b>1</b></a> <a href="../suppress_holes.htm"><b>2</b></a> </nobr><br><a href="../fillet.htm"><b>listshapes</b></a> <br><nobr><a name="bms_LO"></a><a name="subkey_LO"></a>local <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>1</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>2</b></a> <a href="../offset_surface.htm"><b>3</b></a> <a href="../modify_the_location.htm"><b>4</b></a> <a href="../local_coordinate_system.htm"><b>5</b></a> <a href="../sketcher.htm"><b>6</b></a> <a href="../transformation_operations.htm"><b>7</b></a> </nobr><br><a href="../blocks_operations.htm"><b>localop</b></a> <br><nobr>located <a href="../files/salome2_sp3_basicgui_functions.htm"><b>1</b></a> <a href="../point.htm"><b>2</b></a> </nobr><br><nobr>location <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>1</b></a> <a href="../files/salome2_sp3_geomtoolsgui_functions.htm"><b>2</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>3</b></a> <a href="../modify_the_location.htm"><b>4</b></a> <a href="../local_coordinate_system.htm"><b>5</b></a> <a href="../transformation_operations.htm"><b>6</b></a> </nobr><br><a name="bms_LS"></a><a name="subkey_LS"></a><a href="../modify_the_location.htm"><b>lsc</b></a> <br><nobr><a name="bms_LY"></a><a name="subkey_LY"></a>lying <a href="../files/salome2_sp3_repairgui_functions.htm"><b>1</b></a> <a href="../sketcher.htm"><b>2</b></a> <a href="../suppress_internal_wires.htm"><b>3</b></a> </nobr><br><br><br></p><p class="ftsbody" align="center"><a href="whlstf7.htm" target="_self" title="previous search group"><b>>></b></a>\r
\r
</body>\r
\r
<body marginheight="0" marginwidth="0" bgproperties="fixed">\r
<p class="ftsbody" align="center"><a href="whlstf6.htm" target="_self" title="previous search group"><b><<</b></a><br><br></p>\r
<p class="ftsbody" >\r
-<nobr><a name="bms_ME"></a><a name="subkey_ME"></a>meaning <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>1</b></a> <a href="../offset_surface.htm"><b>2</b></a> </nobr><br><nobr>means <a href="../point.htm"><b>1</b></a> <a href="../sketcher.htm"><b>2</b></a> </nobr><br><nobr>measurement <a href="../files/salome2_sp3_measuregui_functions.htm"><b>1</b></a> <a href="../measurement_tools.htm"><b>2</b></a> </nobr><br><a href="../files/salome2_sp3_measuregui_functions.htm"><b>measures</b></a> <br><a href="../newentity_blocks.htm"><b>mentioned</b></a> <br><nobr>menu <a href="../circle.htm"><b>1</b></a> <a href="../check_free_faces.htm"><b>2</b></a> <a href="../check_free_boundaries.htm"><b>3</b></a> <a href="../changing_displaying_parameters.htm"><b>4</b></a> <a href="../chamfer.htm"><b>5</b></a> <a href="../box.htm"><b>6</b></a> <a href="../blocks.htm"><b>7</b></a> <a href="../archimede.htm"><b>8</b></a> <a href="../arc.htm"><b>9</b></a> <a href="../add_point_on_edge.htm"><b>10</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>11</b></a> <a href="../face.htm"><b>12</b></a> <a href="../extrusion.htm"><b>13</b></a> <a href="../explode_on_blocks.htm"><b>14</b></a> <a href="../explode.htm"><b>15</b></a> <a href="../ellipse.htm"><b>16</b></a> <a href="../edge.htm"><b>17</b></a> <a href="../cylinder.htm"><b>18</b></a> <a href="../cut.htm"><b>19</b></a> <a href="../curve.htm"><b>20</b></a> <a href="../cone.htm"><b>21</b></a> <a href="../compound.htm"><b>22</b></a> <a href="../common.htm"><b>23</b></a> <a href="../close_contour.htm"><b>24</b></a> <a href="../glue_faces.htm"><b>25</b></a> <a href="../fuse.htm"><b>26</b></a> <a href="../filling.htm"><b>27</b></a> <a href="../fillet.htm"><b>28</b></a> <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>29</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>30</b></a> <a href="../files/salome2_sp3_primitivegui_functions.htm"><b>31</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>32</b></a> <a href="../files/salome2_sp3_measuregui_functions.htm"><b>33</b></a> <a href="../files/salome2_sp3_geomtoolsgui_functions.htm"><b>34</b></a> <a href="../files/salome2_sp3_generationgui_functions.htm"><b>35</b></a> <a href="../files/salome2_sp3_displaygui_functions.htm"><b>36</b></a> <a href="../files/salome2_sp3_buildgui_functions.htm"><b>37</b></a> <a href="../propagate.htm"><b>38</b></a> <a href="../point.htm"><b>39</b></a> <a href="../plane.htm"><b>40</b></a> <a href="../pipe_creation.htm"><b>41</b></a> <a href="../partition.htm"><b>42</b></a> <a href="../offset_surface.htm"><b>43</b></a> <a href="../newentity_blocks.htm"><b>44</b></a> <a href="../multi_translation.htm"><b>45</b></a> <a href="../multi_transformation.htm"><b>46</b></a> <a href="../multi_rotation.htm"><b>47</b></a> <a href="../modify_the_location.htm"><b>48</b></a> <a href="../mirror_image.htm"><b>49</b></a> <a href="../local_coordinate_system.htm"><b>50</b></a> <a href="../line.htm"><b>51</b></a> <a href="../suppress_internal_wires.htm"><b>52</b></a> <a href="../suppress_holes.htm"><b>53</b></a> <a href="../suppress_faces.htm"><b>54</b></a> <a href="../sphere.htm"><b>55</b></a> <a href="../solid.htm"><b>56</b></a> <a href="../sketcher.htm"><b>57</b></a> <a href="../shell.htm"><b>58</b></a> <a href="../shape_processing.htm"><b>59</b></a> <a href="../sewing.htm"><b>60</b></a> <a href="../section.htm"><b>61</b></a> <a href="../scale_transform.htm"><b>62</b></a> <a href="../rotation.htm"><b>63</b></a> <a href="../revolution.htm"><b>64</b></a> <a href="../working_with_groups.htm"><b>65</b></a> <a href="../working_plane.htm"><b>66</b></a> <a href="../wire.htm"><b>67</b></a> <a href="../vector.htm"><b>68</b></a> <a href="../turus.htm"><b>69</b></a> <a href="../translation.htm"><b>70</b></a> </nobr><br><nobr>merging <a href="../files/salome2_sp3_repairgui_functions.htm"><b>1</b></a> <a href="../shape_processing.htm"><b>2</b></a> </nobr><br><nobr>mesh <a href="../archimede.htm"><b>1</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>2</b></a> </nobr><br><nobr>meshing <a href="../archimede.htm"><b>1</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>2</b></a> <a href="../newentity_blocks.htm"><b>3</b></a> </nobr><br><nobr>meshingdeflection <a href="../basic_operations.htm"><b>1</b></a> <a href="../archimede.htm"><b>2</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>3</b></a> </nobr><br><a href="../files/salome2_sp3_buildgui_functions.htm"><b>method</b></a> <br><nobr><a name="bms_MI"></a><a name="subkey_MI"></a>middle <a href="../arc.htm"><b>1</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>2</b></a> <a href="../point.htm"><b>3</b></a> </nobr><br><nobr>min <a href="../explode_on_blocks.htm"><b>1</b></a> <a href="../filling.htm"><b>2</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>3</b></a> <a href="../files/salome2_sp3_measuregui_functions.htm"><b>4</b></a> <a href="../files/salome2_sp3_generationgui_functions.htm"><b>5</b></a> <a href="../measurement_tools.htm"><b>6</b></a> </nobr><br><a href="../measurement_tools.htm"><b>min_dist</b></a> <br><a href="../complex_objects.htm"><b>mindeg</b></a> <br><nobr>mindegree <a href="../filling.htm"><b>1</b></a> <a href="../files/salome2_sp3_generationgui_functions.htm"><b>2</b></a> </nobr><br><nobr>mindistance <a href="../files/salome2_sp3_measuregui_functions.htm"><b>1</b></a> <a href="../measurement_tools.htm"><b>2</b></a> </nobr><br><nobr>minimal <a href="../face.htm"><b>1</b></a> <a href="../explode_on_blocks.htm"><b>2</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>3</b></a> <a href="../files/salome2_sp3_measuregui_functions.htm"><b>4</b></a> <a href="../files/salome2_sp3_generationgui_functions.htm"><b>5</b></a> <a href="../measurement_tools.htm"><b>6</b></a> </nobr><br><nobr>minimum <a href="../explode_on_blocks.htm"><b>1</b></a> <a href="../filling.htm"><b>2</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>3</b></a> </nobr><br><nobr>minnbfaces <a href="../explode_on_blocks.htm"><b>1</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>2</b></a> </nobr><br><nobr>minor <a href="../files/salome2_sp3_basicgui_functions.htm"><b>1</b></a> <a href="../ellipse.htm"><b>2</b></a> <a href="../files/salome2_sp3_primitivegui_functions.htm"><b>3</b></a> <a href="../turus.htm"><b>4</b></a> </nobr><br><nobr>mirror <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>1</b></a> <a href="../mirror_image.htm"><b>2</b></a> <a href="../transformation_operations.htm"><b>3</b></a> </nobr><br><a href="../transformation_operations.htm"><b>mirror1</b></a> <br><a href="../transformation_operations.htm"><b>mirror2</b></a> <br><a href="../transformation_operations.htm"><b>mirror3</b></a> <br><nobr>mirrored <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>1</b></a> <a href="../mirror_image.htm"><b>2</b></a> </nobr><br><nobr><a name="bms_MO"></a><a name="subkey_MO"></a>mode <a href="../changing_displaying_parameters.htm"><b>1</b></a> <a href="../changing_display_parameters.htm"><b>2</b></a> <a href="../add_point_on_edge.htm"><b>3</b></a> <a href="../close_contour.htm"><b>4</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>5</b></a> <a href="../shape_processing.htm"><b>6</b></a> </nobr><br><nobr>modeled <a href="../archimede.htm"><b>1</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>2</b></a> </nobr><br><a href="../files/introduction_to_geom.htm"><b>models</b></a> <br><nobr>modes <a href="../add_point_on_edge.htm"><b>1</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>2</b></a> </nobr><br><nobr>modification <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>1</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>2</b></a> </nobr><br><nobr>modified <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>1</b></a> <a href="../modify_the_location.htm"><b>2</b></a> </nobr><br><nobr>modifies <a href="../files/salome2_sp3_basicgui_functions.htm"><b>1</b></a> <a href="../close_contour.htm"><b>2</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>3</b></a> <a href="../modify_the_location.htm"><b>4</b></a> <a href="../local_coordinate_system.htm"><b>5</b></a> </nobr><br><nobr>modify <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>1</b></a> <a href="../modify_the_location.htm"><b>2</b></a> <a href="../transformation_operations.htm"><b>3</b></a> </nobr><br><nobr>module <a href="../files/introduction_to_geom.htm"><b>1</b></a> <a href="../files/salome2_sp3_displaygui_functions.htm"><b>2</b></a> </nobr><br><a href="../files/salome2_sp3_measuregui_functions.htm"><b>moment</b></a> <br><nobr>moments <a href="../files/salome2_sp3_measuregui_functions.htm"><b>1</b></a> <a href="../measurement_tools.htm"><b>2</b></a> </nobr><br><nobr>move <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>1</b></a> <a href="../modify_the_location.htm"><b>2</b></a> </nobr><br><nobr>moved <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>1</b></a> <a href="../multi_translation.htm"><b>2</b></a> </nobr><br><a name="bms_MU"></a><a name="subkey_MU"></a><a href="../working_with_groups.htm"><b>much</b></a> <br><nobr>multi <a href="../blocks_operations.htm"><b>1</b></a> <a href="../blocks.htm"><b>2</b></a> <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>3</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>4</b></a> <a href="../multi_translation.htm"><b>5</b></a> <a href="../multi_transformation.htm"><b>6</b></a> <a href="../multi_rotation.htm"><b>7</b></a> <a href="../transformation_operations.htm"><b>8</b></a> </nobr><br><a href="../transformation_operations.htm"><b>multirotate1d</b></a> <br><a href="../transformation_operations.htm"><b>multirotate2d</b></a> <br><nobr>multitude <a href="../files/salome2_sp3_operationgui_functions.htm"><b>1</b></a> <a href="../propagate.htm"><b>2</b></a> </nobr><br><nobr>must <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>1</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>2</b></a> <a href="../files/salome2_sp3_measuregui_functions.htm"><b>3</b></a> <a href="../multi_translation.htm"><b>4</b></a> <a href="../multi_rotation.htm"><b>5</b></a> <a href="../measurement_tools.htm"><b>6</b></a> <a href="../suppress_holes.htm"><b>7</b></a> </nobr><br>\r
-<br><br>\r
-<nobr><a name="bm_N"></a><a name="subkey_NA"></a>name <a href="../circle.htm"><b>1</b></a> <a href="../chamfer.htm"><b>2</b></a> <a href="../box.htm"><b>3</b></a> <a href="../archimede.htm"><b>4</b></a> <a href="../arc.htm"><b>5</b></a> <a href="../add_point_on_edge.htm"><b>6</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>7</b></a> <a href="../face.htm"><b>8</b></a> <a href="../extrusion.htm"><b>9</b></a> <a href="../ellipse.htm"><b>10</b></a> <a href="../edge.htm"><b>11</b></a> <a href="../cylinder.htm"><b>12</b></a> <a href="../cut.htm"><b>13</b></a> <a href="../curve.htm"><b>14</b></a> <a href="../cone.htm"><b>15</b></a> <a href="../compound.htm"><b>16</b></a> <a href="../common.htm"><b>17</b></a> <a href="../close_contour.htm"><b>18</b></a> <a href="../glue_faces.htm"><b>19</b></a> <a href="../fuse.htm"><b>20</b></a> <a href="../filling.htm"><b>21</b></a> <a href="../fillet.htm"><b>22</b></a> <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>23</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>24</b></a> <a href="../files/salome2_sp3_primitivegui_functions.htm"><b>25</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>26</b></a> <a href="../files/salome2_sp3_geomtoolsgui_functions.htm"><b>27</b></a> <a href="../files/salome2_sp3_generationgui_functions.htm"><b>28</b></a> <a href="../files/salome2_sp3_buildgui_functions.htm"><b>29</b></a> <a href="../point.htm"><b>30</b></a> <a href="../plane.htm"><b>31</b></a> <a href="../pipe_creation.htm"><b>32</b></a> <a href="../partition.htm"><b>33</b></a> <a href="../offset_surface.htm"><b>34</b></a> <a href="../newentity_blocks.htm"><b>35</b></a> <a href="../multi_translation.htm"><b>36</b></a> <a href="../multi_transformation.htm"><b>37</b></a> <a href="../multi_rotation.htm"><b>38</b></a> <a href="../modify_the_location.htm"><b>39</b></a> <a href="../mirror_image.htm"><b>40</b></a> <a href="../local_coordinate_system.htm"><b>41</b></a> <a href="../line.htm"><b>42</b></a> <a href="../suppress_internal_wires.htm"><b>43</b></a> <a href="../suppress_holes.htm"><b>44</b></a> <a href="../suppress_faces.htm"><b>45</b></a> <a href="../sphere.htm"><b>46</b></a> <a href="../solid.htm"><b>47</b></a> <a href="../shell.htm"><b>48</b></a> <a href="../sewing.htm"><b>49</b></a> <a href="../section.htm"><b>50</b></a> <a href="../scale_transform.htm"><b>51</b></a> <a href="../revolution.htm"><b>52</b></a> <a href="../working_plane.htm"><b>53</b></a> <a href="../wire.htm"><b>54</b></a> <a href="../vector.htm"><b>55</b></a> <a href="../turus.htm"><b>56</b></a> <a href="../translation.htm"><b>57</b></a> </nobr><br><nobr>names <a href="../files/salome2_sp3_repairgui_functions.htm"><b>1</b></a> <a href="../shape_processing.htm"><b>2</b></a> </nobr><br><nobr><a name="bms_NB"></a><a name="subkey_NB"></a>nb <a href="../box.htm"><b>1</b></a> <a href="../extrusion.htm"><b>2</b></a> <a href="../line.htm"><b>3</b></a> <a href="../sphere.htm"><b>4</b></a> </nobr><br><a href="../explode.htm"><b>nb_sub</b></a> <br><nobr>nbiter <a href="../complex_objects.htm"><b>1</b></a> <a href="../filling.htm"><b>2</b></a> <a href="../files/salome2_sp3_generationgui_functions.htm"><b>3</b></a> </nobr><br><a href="../measurement_tools.htm"><b>nbounding</b></a> <br><a href="../measurement_tools.htm"><b>nbox</b></a> <br><nobr>nbsplitpoints <a href="../files/salome2_sp3_repairgui_functions.htm"><b>1</b></a> <a href="../shape_processing.htm"><b>2</b></a> </nobr><br><nobr>nbtimes <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>1</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>2</b></a> <a href="../multi_translation.htm"><b>3</b></a> <a href="../multi_transformation.htm"><b>4</b></a> <a href="../multi_rotation.htm"><b>5</b></a> </nobr><br><nobr>nbtimes1 <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>1</b></a> <a href="../multi_translation.htm"><b>2</b></a> <a href="../multi_rotation.htm"><b>3</b></a> </nobr><br><nobr>nbtimes2 <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>1</b></a> <a href="../multi_translation.htm"><b>2</b></a> <a href="../multi_rotation.htm"><b>3</b></a> </nobr><br><nobr>nbtimesu <a href="../files/salome2_sp3_operationgui_functions.htm"><b>1</b></a> <a href="../multi_transformation.htm"><b>2</b></a> </nobr><br><nobr>nbtimesv <a href="../files/salome2_sp3_operationgui_functions.htm"><b>1</b></a> <a href="../multi_transformation.htm"><b>2</b></a> </nobr><br><a name="bms_NC"></a><a name="subkey_NC"></a><a href="../measurement_tools.htm"><b>ncentre</b></a> <br><a href="../measurement_tools.htm"><b>ncompound</b></a> <br><nobr><a name="bms_NE"></a><a name="subkey_NE"></a>necessary <a href="../chamfer.htm"><b>1</b></a> <a href="../fillet.htm"><b>2</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>3</b></a> <a href="../files/salome2_sp3_measuregui_functions.htm"><b>4</b></a> <a href="../files/salome2_sp3_displaygui_functions.htm"><b>5</b></a> <a href="../sketcher.htm"><b>6</b></a> <a href="../shape_processing.htm"><b>7</b></a> </nobr><br><nobr>need <a href="../chamfer.htm"><b>1</b></a> <a href="../box.htm"><b>2</b></a> <a href="../face.htm"><b>3</b></a> <a href="../extrusion.htm"><b>4</b></a> <a href="../explode.htm"><b>5</b></a> <a href="../filling.htm"><b>6</b></a> <a href="../fillet.htm"><b>7</b></a> <a href="../pipe_creation.htm"><b>8</b></a> <a href="../multi_translation.htm"><b>9</b></a> <a href="../multi_rotation.htm"><b>10</b></a> <a href="../sphere.htm"><b>11</b></a> <a href="../scale_transform.htm"><b>12</b></a> <a href="../rotation.htm"><b>13</b></a> <a href="../revolution.htm"><b>14</b></a> <a href="../translation.htm"><b>15</b></a> </nobr><br><nobr>needed <a href="../close_contour.htm"><b>1</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>2</b></a> </nobr><br><nobr>negative <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>1</b></a> <a href="../offset_surface.htm"><b>2</b></a> </nobr><br><nobr>neigbour <a href="../files/salome2_sp3_repairgui_functions.htm"><b>1</b></a> <a href="../shape_processing.htm"><b>2</b></a> </nobr><br><nobr>new <a href="../circle.htm"><b>1</b></a> <a href="../box.htm"><b>2</b></a> <a href="../arc.htm"><b>3</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>4</b></a> <a href="../face.htm"><b>5</b></a> <a href="../extrusion.htm"><b>6</b></a> <a href="../explode.htm"><b>7</b></a> <a href="../ellipse.htm"><b>8</b></a> <a href="../edge.htm"><b>9</b></a> <a href="../cylinder.htm"><b>10</b></a> <a href="../curve.htm"><b>11</b></a> <a href="../cone.htm"><b>12</b></a> <a href="../compound.htm"><b>13</b></a> <a href="../close_contour.htm"><b>14</b></a> <a href="../filling.htm"><b>15</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>16</b></a> <a href="../files/salome2_sp3_primitivegui_functions.htm"><b>17</b></a> <a href="../files/salome2_sp3_generationgui_functions.htm"><b>18</b></a> <a href="../files/salome2_sp3_buildgui_functions.htm"><b>19</b></a> <a href="../point.htm"><b>20</b></a> <a href="../plane.htm"><b>21</b></a> <a href="../pipe_creation.htm"><b>22</b></a> <a href="../newentity_blocks.htm"><b>23</b></a> <a href="../local_coordinate_system.htm"><b>24</b></a> <a href="../line.htm"><b>25</b></a> <a href="../transformation_operations.htm"><b>26</b></a> <a href="../sphere.htm"><b>27</b></a> <a href="../solid.htm"><b>28</b></a> <a href="../sketcher.htm"><b>29</b></a> <a href="../shell.htm"><b>30</b></a> <a href="../revolution.htm"><b>31</b></a> <a href="../working_with_groups.htm"><b>32</b></a> <a href="../working_plane.htm"><b>33</b></a> <a href="../wire.htm"><b>34</b></a> <a href="../vector.htm"><b>35</b></a> <a href="../turus.htm"><b>36</b></a> </nobr><br><a name="bms_NI"></a><a name="subkey_NI"></a><a href="../measurement_tools.htm"><b>ninertia</b></a> <br><a name="bms_NM"></a><a name="subkey_NM"></a><a href="../measurement_tools.htm"><b>nminimal</b></a> <br><nobr><a name="bms_NO"></a><a name="subkey_NO"></a>nodes <a href="../files/salome2_sp3_basicgui_functions.htm"><b>1</b></a> <a href="../curve.htm"><b>2</b></a> </nobr><br><nobr>noerror <a href="../check_free_boundaries.htm"><b>1</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>2</b></a> </nobr><br><a href="../measurement_tools.htm"><b>none</b></a> <br><nobr>normal <a href="../circle.htm"><b>1</b></a> <a href="../basic_geometrical_objects.htm"><b>2</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>3</b></a> <a href="../extrusion.htm"><b>4</b></a> <a href="../ellipse.htm"><b>5</b></a> <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>6</b></a> <a href="../files/salome2_sp3_generationgui_functions.htm"><b>7</b></a> <a href="../plane.htm"><b>8</b></a> <a href="../offset_surface.htm"><b>9</b></a> <a href="../turus.htm"><b>10</b></a> </nobr><br><a href="../cone.htm"><b>note</b></a> <br><a href="../face.htm"><b>nothing</b></a> <br><a href="../newentity_blocks.htm"><b>notions</b></a> <br><br><br></p><p class="ftsbody" align="center"><a href="whlstf8.htm" target="_self" title="previous search group"><b>>></b></a>\r
+\r
+\r
+<nobr><a name="bm_M"></a><a name="subkey_MA"></a>main <a href="../circle.htm"><b>1</b></a> <a href="../check_free_faces.htm"><b>2</b></a> <a href="../check_free_boundaries.htm"><b>3</b></a> <a href="../chamfer.htm"><b>4</b></a> <a href="../box.htm"><b>5</b></a> <a href="../blocks.htm"><b>6</b></a> <a href="../archimede.htm"><b>7</b></a> <a href="../arc.htm"><b>8</b></a> <a href="../add_point_on_edge.htm"><b>9</b></a> <a href="../face.htm"><b>10</b></a> <a href="../extrusion.htm"><b>11</b></a> <a href="../explode_on_blocks.htm"><b>12</b></a> <a href="../explode.htm"><b>13</b></a> <a href="../ellipse.htm"><b>14</b></a> <a href="../edge.htm"><b>15</b></a> <a href="../cylinder.htm"><b>16</b></a> <a href="../cut.htm"><b>17</b></a> <a href="../curve.htm"><b>18</b></a> <a href="../cone.htm"><b>19</b></a> <a href="../compound.htm"><b>20</b></a> <a href="../common.htm"><b>21</b></a> <a href="../close_contour.htm"><b>22</b></a> <a href="../glue_faces.htm"><b>23</b></a> <a href="../fuse.htm"><b>24</b></a> <a href="../filling.htm"><b>25</b></a> <a href="../fillet.htm"><b>26</b></a> <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>27</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>28</b></a> <a href="../files/salome2_sp3_primitivegui_functions.htm"><b>29</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>30</b></a> <a href="../files/salome2_sp3_measuregui_functions.htm"><b>31</b></a> <a href="../files/salome2_sp3_generationgui_functions.htm"><b>32</b></a> <a href="../files/salome2_sp3_displaygui_functions.htm"><b>33</b></a> <a href="../files/salome2_sp3_buildgui_functions.htm"><b>34</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>35</b></a> <a href="../point.htm"><b>36</b></a> <a href="../plane.htm"><b>37</b></a> <a href="../pipe_creation.htm"><b>38</b></a> <a href="../partition.htm"><b>39</b></a> <a href="../offset_surface.htm"><b>40</b></a> <a href="../newentity_blocks.htm"><b>41</b></a> <a href="../multi_translation.htm"><b>42</b></a> <a href="../multi_transformation.htm"><b>43</b></a> <a href="../multi_rotation.htm"><b>44</b></a> <a href="../modify_the_location.htm"><b>45</b></a> <a href="../mirror_image.htm"><b>46</b></a> <a href="../measurement_tools.htm"><b>47</b></a> <a href="../local_coordinate_system.htm"><b>48</b></a> <a href="../line.htm"><b>49</b></a> <a href="../suppress_holes.htm"><b>50</b></a> <a href="../suppress_faces.htm"><b>51</b></a> <a href="../sphere.htm"><b>52</b></a> <a href="../solid.htm"><b>53</b></a> <a href="../sketcher.htm"><b>54</b></a> <a href="../shell.htm"><b>55</b></a> <a href="../shape_processing.htm"><b>56</b></a> <a href="../sewing.htm"><b>57</b></a> <a href="../section.htm"><b>58</b></a> <a href="../scale_transform.htm"><b>59</b></a> <a href="../rotation.htm"><b>60</b></a> <a href="../revolution.htm"><b>61</b></a> <a href="../propagate.htm"><b>62</b></a> <a href="../working_with_groups.htm"><b>63</b></a> <a href="../working_plane.htm"><b>64</b></a> <a href="../wire.htm"><b>65</b></a> <a href="../vector.htm"><b>66</b></a> <a href="../turus.htm"><b>67</b></a> <a href="../translation.htm"><b>68</b></a> <a href="../suppress_internal_wires.htm"><b>69</b></a> </nobr><br><a href="../working_with_groups.htm"><b>mainshape</b></a> <br><nobr>major <a href="../ellipse.htm"><b>1</b></a> <a href="../files/salome2_sp3_primitivegui_functions.htm"><b>2</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>3</b></a> <a href="../turus.htm"><b>4</b></a> </nobr><br><nobr>make <a href="../chamfer.htm"><b>1</b></a> <a href="../boolean_operations.htm"><b>2</b></a> <a href="../blocks_operations.htm"><b>3</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>4</b></a> <a href="../measurement_tools.htm"><b>5</b></a> <a href="../repairing_operations.htm"><b>6</b></a> <a href="../transformation_operations.htm"><b>7</b></a> </nobr><br><a href="../blocks_operations.htm"><b>make_block_explode</b></a> <br><nobr>makearc <a href="../basic_geometrical_objects.htm"><b>1</b></a> <a href="../arc.htm"><b>2</b></a> <a href="../complex_objects.htm"><b>3</b></a> <a href="../geometrical_objects.htm"><b>4</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>5</b></a> <a href="../sketcher_tui.htm"><b>6</b></a> <a href="../repairing_operations.htm"><b>7</b></a> <a href="../transformation_operations.htm"><b>8</b></a> </nobr><br><nobr>makebezier <a href="../basic_geometrical_objects.htm"><b>1</b></a> <a href="../curve.htm"><b>2</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>3</b></a> </nobr><br><nobr>makeblockexplode <a href="../blocks_operations.htm"><b>1</b></a> <a href="../explode_on_blocks.htm"><b>2</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>3</b></a> </nobr><br><nobr>makeboolean <a href="../changing_display_parameters.htm"><b>1</b></a> <a href="../files/salome2_sp3_booleangui_functions.htm"><b>2</b></a> </nobr><br><nobr>makebox <a href="../changing_display_parameters.htm"><b>1</b></a> <a href="../box.htm"><b>2</b></a> <a href="../files/salome2_sp3_primitivegui_functions.htm"><b>3</b></a> <a href="../measurement_tools.htm"><b>4</b></a> <a href="../repairing_operations.htm"><b>5</b></a> <a href="../primitives.htm"><b>6</b></a> <a href="../transformation_operations.htm"><b>7</b></a> </nobr><br><nobr>makeboxdxdydz <a href="../box.htm"><b>1</b></a> <a href="../blocks_operations.htm"><b>2</b></a> <a href="../measurement_tools.htm"><b>3</b></a> <a href="../repairing_operations.htm"><b>4</b></a> <a href="../primitives.htm"><b>5</b></a> <a href="../transformation_operations.htm"><b>6</b></a> </nobr><br><nobr>makeboxtwopnt <a href="../box.htm"><b>1</b></a> <a href="../basic_operations.htm"><b>2</b></a> <a href="../groups.htm"><b>3</b></a> <a href="../primitives.htm"><b>4</b></a> </nobr><br><nobr>makecdg <a href="../files/salome2_sp3_measuregui_functions.htm"><b>1</b></a> <a href="../measurement_tools.htm"><b>2</b></a> </nobr><br><a href="../transformation_operations.htm"><b>makechamfer</b></a> <br><nobr>makechamferall <a href="../chamfer.htm"><b>1</b></a> <a href="../transformation_operations.htm"><b>2</b></a> </nobr><br><nobr>makechamferedge <a href="../chamfer.htm"><b>1</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>2</b></a> <a href="../transformation_operations.htm"><b>3</b></a> </nobr><br><a href="../files/salome2_sp3_operationgui_functions.htm"><b>makechamferface</b></a> <br><nobr>makechamferfaces <a href="../chamfer.htm"><b>1</b></a> <a href="../transformation_operations.htm"><b>2</b></a> </nobr><br><nobr>makecircle <a href="../circle.htm"><b>1</b></a> <a href="../basic_geometrical_objects.htm"><b>2</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>3</b></a> </nobr><br><nobr>makecirclethreepnt <a href="../circle.htm"><b>1</b></a> <a href="../basic_geometrical_objects.htm"><b>2</b></a> </nobr><br><nobr>makecommon <a href="../boolean_operations.htm"><b>1</b></a> <a href="../common.htm"><b>2</b></a> </nobr><br><nobr>makecompound <a href="../blocks_operations.htm"><b>1</b></a> <a href="../compound.htm"><b>2</b></a> <a href="../complex_objects.htm"><b>3</b></a> <a href="../files/salome2_sp3_buildgui_functions.htm"><b>4</b></a> <a href="../measurement_tools.htm"><b>5</b></a> <a href="../repairing_operations.htm"><b>6</b></a> </nobr><br><nobr>makecone <a href="../cone.htm"><b>1</b></a> <a href="../files/salome2_sp3_primitivegui_functions.htm"><b>2</b></a> <a href="../repairing_operations.htm"><b>3</b></a> <a href="../primitives.htm"><b>4</b></a> </nobr><br><nobr>makeconer1r2h <a href="../cone.htm"><b>1</b></a> <a href="../primitives.htm"><b>2</b></a> </nobr><br><nobr>makecut <a href="../boolean_operations.htm"><b>1</b></a> <a href="../repairing_operations.htm"><b>2</b></a> </nobr><br><nobr>makecylinder <a href="../boolean_operations.htm"><b>1</b></a> <a href="../cylinder.htm"><b>2</b></a> <a href="../files/salome2_sp3_primitivegui_functions.htm"><b>3</b></a> <a href="../repairing_operations.htm"><b>4</b></a> <a href="../transformation_operations.htm"><b>5</b></a> </nobr><br><a href="../cylinder.htm"><b>makecylinderrh</b></a> <br><nobr>makeedge <a href="../building_by_blocks.htm"><b>1</b></a> <a href="../edge.htm"><b>2</b></a> <a href="../complex_objects.htm"><b>3</b></a> <a href="../geometrical_objects.htm"><b>4</b></a> <a href="../files/salome2_sp3_buildgui_functions.htm"><b>5</b></a> <a href="../repairing_operations.htm"><b>6</b></a> </nobr><br><nobr>makeellipse <a href="../basic_geometrical_objects.htm"><b>1</b></a> <a href="../ellipse.htm"><b>2</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>3</b></a> </nobr><br><nobr>makeface <a href="../basic_geometrical_objects.htm"><b>1</b></a> <a href="../face.htm"><b>2</b></a> <a href="../complex_objects.htm"><b>3</b></a> <a href="../geometrical_objects.htm"><b>4</b></a> <a href="../files/salome2_sp3_buildgui_functions.htm"><b>5</b></a> <a href="../sketcher_tui.htm"><b>6</b></a> <a href="../repairing_operations.htm"><b>7</b></a> <a href="../transformation_operations.htm"><b>8</b></a> </nobr><br><nobr>makefaces <a href="../face.htm"><b>1</b></a> <a href="../geometrical_objects.htm"><b>2</b></a> </nobr><br><nobr>makefacewires <a href="../face.htm"><b>1</b></a> <a href="../geometrical_objects.htm"><b>2</b></a> </nobr><br><nobr>makefillet <a href="../fillet.htm"><b>1</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>2</b></a> <a href="../transformation_operations.htm"><b>3</b></a> </nobr><br><nobr>makefilletall <a href="../fillet.htm"><b>1</b></a> <a href="../transformation_operations.htm"><b>2</b></a> </nobr><br><nobr>makefilling <a href="../complex_objects.htm"><b>1</b></a> <a href="../filling.htm"><b>2</b></a> <a href="../files/salome2_sp3_generationgui_functions.htm"><b>3</b></a> </nobr><br><nobr>makefuse <a href="../boolean_operations.htm"><b>1</b></a> <a href="../fuse.htm"><b>2</b></a> </nobr><br><nobr>makegluefaces <a href="../glue_faces.htm"><b>1</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>2</b></a> <a href="../measurement_tools.htm"><b>3</b></a> <a href="../repairing_operations.htm"><b>4</b></a> </nobr><br><nobr>makehalfpartition <a href="../basic_operations.htm"><b>1</b></a> <a href="../partition.htm"><b>2</b></a> </nobr><br><nobr>makehexa <a href="../building_by_blocks.htm"><b>1</b></a> <a href="../newentity_blocks.htm"><b>2</b></a> </nobr><br><nobr>makehexa2faces <a href="../building_by_blocks.htm"><b>1</b></a> <a href="../newentity_blocks.htm"><b>2</b></a> </nobr><br><nobr>makeinterpol <a href="../basic_geometrical_objects.htm"><b>1</b></a> <a href="../curve.htm"><b>2</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>3</b></a> </nobr><br><nobr>makeline <a href="../basic_geometrical_objects.htm"><b>1</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>2</b></a> <a href="../line.htm"><b>3</b></a> </nobr><br><nobr>makelinetwopnt <a href="../basic_geometrical_objects.htm"><b>1</b></a> <a href="../line.htm"><b>2</b></a> </nobr><br><nobr>makemarker <a href="../files/salome2_sp3_basicgui_functions.htm"><b>1</b></a> <a href="../local_coordinate_system.htm"><b>2</b></a> <a href="../transformation_operations.htm"><b>3</b></a> </nobr><br><nobr>makemirrorbyaxis <a href="../mirror_image.htm"><b>1</b></a> <a href="../transformation_operations.htm"><b>2</b></a> </nobr><br><nobr>makemirrorbyplane <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>1</b></a> <a href="../mirror_image.htm"><b>2</b></a> <a href="../transformation_operations.htm"><b>3</b></a> </nobr><br><nobr>makemirrorbypoint <a href="../mirror_image.htm"><b>1</b></a> <a href="../transformation_operations.htm"><b>2</b></a> </nobr><br><a href="../multi_rotation.htm"><b>makemultirotate1d</b></a> <br><a href="../multi_rotation.htm"><b>makemultirotate2d</b></a> <br><nobr>makemultirotation1d <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>1</b></a> <a href="../multi_rotation.htm"><b>2</b></a> </nobr><br><nobr>makemultirotation2d <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>1</b></a> <a href="../multi_rotation.htm"><b>2</b></a> </nobr><br><nobr>makemultitransformation1d <a href="../blocks_operations.htm"><b>1</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>2</b></a> <a href="../multi_transformation.htm"><b>3</b></a> </nobr><br><nobr>makemultitransformation2d <a href="../blocks_operations.htm"><b>1</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>2</b></a> <a href="../multi_transformation.htm"><b>3</b></a> </nobr><br><nobr>makemultitranslation1d <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>1</b></a> <a href="../multi_translation.htm"><b>2</b></a> <a href="../transformation_operations.htm"><b>3</b></a> </nobr><br><nobr>makemultitranslation2d <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>1</b></a> <a href="../multi_translation.htm"><b>2</b></a> <a href="../transformation_operations.htm"><b>3</b></a> </nobr><br><nobr>makeoffset <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>1</b></a> <a href="../offset_surface.htm"><b>2</b></a> <a href="../transformation_operations.htm"><b>3</b></a> </nobr><br><nobr>makepartition <a href="../basic_operations.htm"><b>1</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>2</b></a> <a href="../partition.htm"><b>3</b></a> </nobr><br><nobr>makepipe <a href="../complex_objects.htm"><b>1</b></a> <a href="../files/salome2_sp3_generationgui_functions.htm"><b>2</b></a> <a href="../pipe_creation.htm"><b>3</b></a> </nobr><br><nobr>makeplane <a href="../basic_operations.htm"><b>1</b></a> <a href="../basic_geometrical_objects.htm"><b>2</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>3</b></a> <a href="../plane.htm"><b>4</b></a> </nobr><br><nobr>makeplaneface <a href="../basic_geometrical_objects.htm"><b>1</b></a> <a href="../plane.htm"><b>2</b></a> </nobr><br><nobr>makeplanethreepnt <a href="../basic_geometrical_objects.htm"><b>1</b></a> <a href="../plane.htm"><b>2</b></a> <a href="../transformation_operations.htm"><b>3</b></a> </nobr><br><nobr>makepolyline <a href="../basic_geometrical_objects.htm"><b>1</b></a> <a href="../curve.htm"><b>2</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>3</b></a> </nobr><br><nobr>makeposition <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>1</b></a> <a href="../modify_the_location.htm"><b>2</b></a> <a href="../transformation_operations.htm"><b>3</b></a> </nobr><br><nobr>makeprism <a href="../extrusion.htm"><b>1</b></a> <a href="../complex_objects.htm"><b>2</b></a> <a href="../geometrical_objects.htm"><b>3</b></a> <a href="../files/salome2_sp3_generationgui_functions.htm"><b>4</b></a> </nobr><br><nobr>makeprismvech <a href="../extrusion.htm"><b>1</b></a> <a href="../complex_objects.htm"><b>2</b></a> <a href="../repairing_operations.htm"><b>3</b></a> <a href="../transformation_operations.htm"><b>4</b></a> </nobr><br><nobr>makequad <a href="../building_by_blocks.htm"><b>1</b></a> <a href="../newentity_blocks.htm"><b>2</b></a> </nobr><br><nobr>makequad2edges <a href="../building_by_blocks.htm"><b>1</b></a> <a href="../newentity_blocks.htm"><b>2</b></a> </nobr><br><nobr>makequad4vertices <a href="../building_by_blocks.htm"><b>1</b></a> <a href="../newentity_blocks.htm"><b>2</b></a> </nobr><br><nobr>makerevolution <a href="../complex_objects.htm"><b>1</b></a> <a href="../files/salome2_sp3_generationgui_functions.htm"><b>2</b></a> <a href="../revolution.htm"><b>3</b></a> </nobr><br><nobr>makerotation <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>1</b></a> <a href="../rotation.htm"><b>2</b></a> <a href="../repairing_operations.htm"><b>3</b></a> <a href="../transformation_operations.htm"><b>4</b></a> </nobr><br><nobr>makes <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>1</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>2</b></a> <a href="../partition.htm"><b>3</b></a> <a href="../multi_translation.htm"><b>4</b></a> <a href="../multi_transformation.htm"><b>5</b></a> <a href="../working_with_groups.htm"><b>6</b></a> <a href="../translation.htm"><b>7</b></a> </nobr><br><nobr>makescaletransform <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>1</b></a> <a href="../scale_transform.htm"><b>2</b></a> <a href="../transformation_operations.htm"><b>3</b></a> </nobr><br><nobr>makesection <a href="../boolean_operations.htm"><b>1</b></a> <a href="../section.htm"><b>2</b></a> </nobr><br><nobr>makesewing <a href="../files/salome2_sp3_repairgui_functions.htm"><b>1</b></a> <a href="../sewing.htm"><b>2</b></a> <a href="../repairing_operations.htm"><b>3</b></a> </nobr><br><nobr>makeshell <a href="../geometrical_objects.htm"><b>1</b></a> <a href="../files/salome2_sp3_buildgui_functions.htm"><b>2</b></a> <a href="../shell.htm"><b>3</b></a> </nobr><br><nobr>makesketcher <a href="../geometrical_objects.htm"><b>1</b></a> <a href="../sketcher_tui.htm"><b>2</b></a> <a href="../sketcher.htm"><b>3</b></a> </nobr><br><a href="../sketcher_tui.htm"><b>makesketcheronplane</b></a> <br><nobr>makesolid <a href="../geometrical_objects.htm"><b>1</b></a> <a href="../files/salome2_sp3_buildgui_functions.htm"><b>2</b></a> <a href="../solid.htm"><b>3</b></a> </nobr><br><nobr>makesphere <a href="../changing_display_parameters.htm"><b>1</b></a> <a href="../files/salome2_sp3_primitivegui_functions.htm"><b>2</b></a> <a href="../sphere.htm"><b>3</b></a> <a href="../primitives.htm"><b>4</b></a> </nobr><br><a href="../primitives.htm"><b>makespherepntr</b></a> <br><nobr>makespherer <a href="../boolean_operations.htm"><b>1</b></a> <a href="../blocks_operations.htm"><b>2</b></a> <a href="../sphere.htm"><b>3</b></a> <a href="../primitives.htm"><b>4</b></a> </nobr><br><nobr>maketorus <a href="../files/salome2_sp3_primitivegui_functions.htm"><b>1</b></a> <a href="../primitives.htm"><b>2</b></a> <a href="../turus.htm"><b>3</b></a> </nobr><br><nobr>maketorusrr <a href="../primitives.htm"><b>1</b></a> <a href="../turus.htm"><b>2</b></a> </nobr><br><nobr>maketranslation <a href="../complex_objects.htm"><b>1</b></a> <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>2</b></a> <a href="../translation.htm"><b>3</b></a> <a href="../transformation_operations.htm"><b>4</b></a> </nobr><br><nobr>maketranslationtwopoints <a href="../translation.htm"><b>1</b></a> <a href="../transformation_operations.htm"><b>2</b></a> </nobr><br><nobr>maketranslationvector <a href="../translation.htm"><b>1</b></a> <a href="../transformation_operations.htm"><b>2</b></a> </nobr><br><nobr>makevector <a href="../boolean_operations.htm"><b>1</b></a> <a href="../basic_geometrical_objects.htm"><b>2</b></a> <a href="../complex_objects.htm"><b>3</b></a> <a href="../geometrical_objects.htm"><b>4</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>5</b></a> <a href="../sketcher_tui.htm"><b>6</b></a> <a href="../repairing_operations.htm"><b>7</b></a> <a href="../primitives.htm"><b>8</b></a> <a href="../vector.htm"><b>9</b></a> <a href="../transformation_operations.htm"><b>10</b></a> </nobr><br><nobr>makevectordxdydz <a href="../basic_operations.htm"><b>1</b></a> <a href="../basic_geometrical_objects.htm"><b>2</b></a> <a href="../complex_objects.htm"><b>3</b></a> <a href="../vector.htm"><b>4</b></a> </nobr><br><nobr>makevertex <a href="../building_by_blocks.htm"><b>1</b></a> <a href="../boolean_operations.htm"><b>2</b></a> <a href="../blocks_operations.htm"><b>3</b></a> <a href="../basic_operations.htm"><b>4</b></a> <a href="../basic_geometrical_objects.htm"><b>5</b></a> <a href="../complex_objects.htm"><b>6</b></a> <a href="../geometrical_objects.htm"><b>7</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>8</b></a> <a href="../point.htm"><b>9</b></a> <a href="../measurement_tools.htm"><b>10</b></a> <a href="../groups.htm"><b>11</b></a> <a href="../sketcher_tui.htm"><b>12</b></a> <a href="../repairing_operations.htm"><b>13</b></a> <a href="../primitives.htm"><b>14</b></a> <a href="../transformation_operations.htm"><b>15</b></a> </nobr><br><nobr>makevertexoncurve <a href="../basic_geometrical_objects.htm"><b>1</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>2</b></a> <a href="../point.htm"><b>3</b></a> </nobr><br><nobr>makevertexwithref <a href="../basic_geometrical_objects.htm"><b>1</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>2</b></a> <a href="../point.htm"><b>3</b></a> </nobr><br><nobr>makewire <a href="../basic_geometrical_objects.htm"><b>1</b></a> <a href="../complex_objects.htm"><b>2</b></a> <a href="../geometrical_objects.htm"><b>3</b></a> <a href="../files/salome2_sp3_buildgui_functions.htm"><b>4</b></a> <a href="../sketcher_tui.htm"><b>5</b></a> <a href="../repairing_operations.htm"><b>6</b></a> <a href="../wire.htm"><b>7</b></a> <a href="../transformation_operations.htm"><b>8</b></a> </nobr><br><nobr>manually <a href="../files/salome2_sp3_basicgui_functions.htm"><b>1</b></a> <a href="../working_with_groups.htm"><b>2</b></a> </nobr><br><a href="../files/salome2_sp3_measuregui_functions.htm"><b>mass</b></a> <br><a href="../measurement_tools.htm"><b>masses</b></a> <br><nobr>materials <a href="../files/salome2_sp3_operationgui_functions.htm"><b>1</b></a> <a href="../partition.htm"><b>2</b></a> </nobr><br><nobr>math <a href="../measurement_tools.htm"><b>1</b></a> <a href="../repairing_operations.htm"><b>2</b></a> <a href="../transformation_operations.htm"><b>3</b></a> </nobr><br><nobr>matrix <a href="../files/salome2_sp3_measuregui_functions.htm"><b>1</b></a> <a href="../measurement_tools.htm"><b>2</b></a> </nobr><br><nobr>max <a href="../explode_on_blocks.htm"><b>1</b></a> <a href="../filling.htm"><b>2</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>3</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>4</b></a> <a href="../files/salome2_sp3_generationgui_functions.htm"><b>5</b></a> <a href="../measurement_tools.htm"><b>6</b></a> <a href="../shape_processing.htm"><b>7</b></a> </nobr><br><a href="../complex_objects.htm"><b>maxdeg</b></a> <br><nobr>maxdegree <a href="../filling.htm"><b>1</b></a> <a href="../files/salome2_sp3_generationgui_functions.htm"><b>2</b></a> </nobr><br><nobr>maximal <a href="../explode_on_blocks.htm"><b>1</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>2</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>3</b></a> <a href="../files/salome2_sp3_measuregui_functions.htm"><b>4</b></a> <a href="../files/salome2_sp3_generationgui_functions.htm"><b>5</b></a> <a href="../shape_processing.htm"><b>6</b></a> </nobr><br><nobr>maximum <a href="../explode_on_blocks.htm"><b>1</b></a> <a href="../glue_faces.htm"><b>2</b></a> <a href="../filling.htm"><b>3</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>4</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>5</b></a> <a href="../shape_processing.htm"><b>6</b></a> </nobr><br><nobr>maxnbfaces <a href="../explode_on_blocks.htm"><b>1</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>2</b></a> </nobr><br><nobr>maxtolerance <a href="../files/salome2_sp3_repairgui_functions.htm"><b>1</b></a> <a href="../shape_processing.htm"><b>2</b></a> </nobr><br><nobr>maxtolerance3d <a href="../files/salome2_sp3_repairgui_functions.htm"><b>1</b></a> <a href="../shape_processing.htm"><b>2</b></a> </nobr><br><br><br></p><p class="ftsbody" align="center"><a href="whlstf8.htm" target="_self" title="previous search group"><b>>></b></a>\r
\r
</body>\r
\r
<body marginheight="0" marginwidth="0" bgproperties="fixed">\r
<p class="ftsbody" align="center"><a href="whlstf7.htm" target="_self" title="previous search group"><b><<</b></a><br><br></p>\r
<p class="ftsbody" >\r
-<nobr><a name="bms_NU"></a><a name="subkey_NU"></a>number <a href="../changing_displaying_parameters.htm"><b>1</b></a> <a href="../explode_on_blocks.htm"><b>2</b></a> <a href="../filling.htm"><b>3</b></a> <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>4</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>5</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>6</b></a> <a href="../files/salome2_sp3_generationgui_functions.htm"><b>7</b></a> <a href="../offset_surface.htm"><b>8</b></a> <a href="../multi_translation.htm"><b>9</b></a> <a href="../multi_transformation.htm"><b>10</b></a> <a href="../multi_rotation.htm"><b>11</b></a> <a href="../transformation_operations.htm"><b>12</b></a> <a href="../suppress_holes.htm"><b>13</b></a> <a href="../shape_processing.htm"><b>14</b></a> <a href="../sewing.htm"><b>15</b></a> <a href="../repairing_operations.htm"><b>16</b></a> </nobr><br><nobr>numbers <a href="../files/salome2_sp3_operationgui_functions.htm"><b>1</b></a> <a href="../multi_transformation.htm"><b>2</b></a> </nobr><br><a href="../files/salome2_sp3_operationgui_functions.htm"><b>numeber</b></a> <br>\r
+<nobr><a name="bms_ME"></a><a name="subkey_ME"></a>meaning <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>1</b></a> <a href="../offset_surface.htm"><b>2</b></a> </nobr><br><nobr>means <a href="../changing_displaying_parameters.htm"><b>1</b></a> <a href="../point.htm"><b>2</b></a> <a href="../sketcher.htm"><b>3</b></a> <a href="../wireframe_and_shading.htm"><b>4</b></a> </nobr><br><nobr>measurement <a href="../files/salome2_sp3_measuregui_functions.htm"><b>1</b></a> <a href="../measurement_tools.htm"><b>2</b></a> </nobr><br><a href="../files/salome2_sp3_measuregui_functions.htm"><b>measures</b></a> <br><a href="../files/salome2_sp3_geomtoolsgui_functions.htm"><b>mechanisms</b></a> <br><a href="../newentity_blocks.htm"><b>mentioned</b></a> <br><nobr>menu <a href="../circle.htm"><b>1</b></a> <a href="../check_free_faces.htm"><b>2</b></a> <a href="../check_free_boundaries.htm"><b>3</b></a> <a href="../changing_displaying_parameters.htm"><b>4</b></a> <a href="../chamfer.htm"><b>5</b></a> <a href="../box.htm"><b>6</b></a> <a href="../blocks.htm"><b>7</b></a> <a href="../archimede.htm"><b>8</b></a> <a href="../arc.htm"><b>9</b></a> <a href="../add_point_on_edge.htm"><b>10</b></a> <a href="../face.htm"><b>11</b></a> <a href="../extrusion.htm"><b>12</b></a> <a href="../explode_on_blocks.htm"><b>13</b></a> <a href="../explode.htm"><b>14</b></a> <a href="../ellipse.htm"><b>15</b></a> <a href="../edge.htm"><b>16</b></a> <a href="../cylinder.htm"><b>17</b></a> <a href="../cut.htm"><b>18</b></a> <a href="../curve.htm"><b>19</b></a> <a href="../cone.htm"><b>20</b></a> <a href="../compound.htm"><b>21</b></a> <a href="../common.htm"><b>22</b></a> <a href="../color.htm"><b>23</b></a> <a href="../close_contour.htm"><b>24</b></a> <a href="../glue_faces.htm"><b>25</b></a> <a href="../fuse.htm"><b>26</b></a> <a href="../filling.htm"><b>27</b></a> <a href="../fillet.htm"><b>28</b></a> <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>29</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>30</b></a> <a href="../files/salome2_sp3_primitivegui_functions.htm"><b>31</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>32</b></a> <a href="../files/salome2_sp3_measuregui_functions.htm"><b>33</b></a> <a href="../files/salome2_sp3_geomtoolsgui_functions.htm"><b>34</b></a> <a href="../files/salome2_sp3_generationgui_functions.htm"><b>35</b></a> <a href="../files/salome2_sp3_displaygui_functions.htm"><b>36</b></a> <a href="../files/salome2_sp3_buildgui_functions.htm"><b>37</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>38</b></a> <a href="../point.htm"><b>39</b></a> <a href="../plane.htm"><b>40</b></a> <a href="../pipe_creation.htm"><b>41</b></a> <a href="../partition.htm"><b>42</b></a> <a href="../offset_surface.htm"><b>43</b></a> <a href="../newentity_blocks.htm"><b>44</b></a> <a href="../multi_translation.htm"><b>45</b></a> <a href="../multi_transformation.htm"><b>46</b></a> <a href="../multi_rotation.htm"><b>47</b></a> <a href="../modify_the_location.htm"><b>48</b></a> <a href="../mirror_image.htm"><b>49</b></a> <a href="../local_coordinate_system.htm"><b>50</b></a> <a href="../line.htm"><b>51</b></a> <a href="../isos.htm"><b>52</b></a> <a href="../suppress_holes.htm"><b>53</b></a> <a href="../suppress_faces.htm"><b>54</b></a> <a href="../sphere.htm"><b>55</b></a> <a href="../solid.htm"><b>56</b></a> <a href="../sketcher.htm"><b>57</b></a> <a href="../shell.htm"><b>58</b></a> <a href="../shape_processing.htm"><b>59</b></a> <a href="../sewing.htm"><b>60</b></a> <a href="../section.htm"><b>61</b></a> <a href="../scale_transform.htm"><b>62</b></a> <a href="../rotation.htm"><b>63</b></a> <a href="../revolution.htm"><b>64</b></a> <a href="../propagate.htm"><b>65</b></a> <a href="../working_with_groups.htm"><b>66</b></a> <a href="../working_plane.htm"><b>67</b></a> <a href="../wireframe_and_shading.htm"><b>68</b></a> <a href="../wire.htm"><b>69</b></a> <a href="../vector.htm"><b>70</b></a> <a href="../turus.htm"><b>71</b></a> <a href="../translation.htm"><b>72</b></a> <a href="../suppress_internal_wires.htm"><b>73</b></a> </nobr><br><nobr>merging <a href="../files/salome2_sp3_repairgui_functions.htm"><b>1</b></a> <a href="../shape_processing.htm"><b>2</b></a> </nobr><br><nobr>mesh <a href="../archimede.htm"><b>1</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>2</b></a> </nobr><br><nobr>meshing <a href="../archimede.htm"><b>1</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>2</b></a> <a href="../newentity_blocks.htm"><b>3</b></a> </nobr><br><nobr>meshingdeflection <a href="../basic_operations.htm"><b>1</b></a> <a href="../archimede.htm"><b>2</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>3</b></a> </nobr><br><a href="../files/salome2_sp3_buildgui_functions.htm"><b>method</b></a> <br><nobr><a name="bms_MI"></a><a name="subkey_MI"></a>middle <a href="../files/salome2_sp3_basicgui_functions.htm"><b>1</b></a> <a href="../point.htm"><b>2</b></a> </nobr><br><nobr>min <a href="../explode_on_blocks.htm"><b>1</b></a> <a href="../filling.htm"><b>2</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>3</b></a> <a href="../files/salome2_sp3_measuregui_functions.htm"><b>4</b></a> <a href="../files/salome2_sp3_generationgui_functions.htm"><b>5</b></a> <a href="../measurement_tools.htm"><b>6</b></a> </nobr><br><a href="../measurement_tools.htm"><b>min_dist</b></a> <br><a href="../complex_objects.htm"><b>mindeg</b></a> <br><nobr>mindegree <a href="../filling.htm"><b>1</b></a> <a href="../files/salome2_sp3_generationgui_functions.htm"><b>2</b></a> </nobr><br><nobr>mindistance <a href="../files/salome2_sp3_measuregui_functions.htm"><b>1</b></a> <a href="../measurement_tools.htm"><b>2</b></a> </nobr><br><nobr>minimal <a href="../face.htm"><b>1</b></a> <a href="../explode_on_blocks.htm"><b>2</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>3</b></a> <a href="../files/salome2_sp3_measuregui_functions.htm"><b>4</b></a> <a href="../files/salome2_sp3_generationgui_functions.htm"><b>5</b></a> <a href="../measurement_tools.htm"><b>6</b></a> </nobr><br><nobr>minimum <a href="../explode_on_blocks.htm"><b>1</b></a> <a href="../filling.htm"><b>2</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>3</b></a> </nobr><br><nobr>minnbfaces <a href="../explode_on_blocks.htm"><b>1</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>2</b></a> </nobr><br><nobr>minor <a href="../ellipse.htm"><b>1</b></a> <a href="../files/salome2_sp3_primitivegui_functions.htm"><b>2</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>3</b></a> <a href="../turus.htm"><b>4</b></a> </nobr><br><nobr>mirror <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>1</b></a> <a href="../mirror_image.htm"><b>2</b></a> <a href="../transformation_operations.htm"><b>3</b></a> </nobr><br><a href="../transformation_operations.htm"><b>mirror1</b></a> <br><a href="../transformation_operations.htm"><b>mirror2</b></a> <br><a href="../transformation_operations.htm"><b>mirror3</b></a> <br><nobr>mirrored <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>1</b></a> <a href="../mirror_image.htm"><b>2</b></a> </nobr><br><nobr><a name="bms_MO"></a><a name="subkey_MO"></a>mode <a href="../changing_displaying_parameters.htm"><b>1</b></a> <a href="../changing_display_parameters.htm"><b>2</b></a> <a href="../add_point_on_edge.htm"><b>3</b></a> <a href="../close_contour.htm"><b>4</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>5</b></a> <a href="../shape_processing.htm"><b>6</b></a> <a href="../wireframe_and_shading.htm"><b>7</b></a> </nobr><br><nobr>modeled <a href="../archimede.htm"><b>1</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>2</b></a> </nobr><br><a href="../files/introduction_to_geom.htm"><b>models</b></a> <br><nobr>modes <a href="../add_point_on_edge.htm"><b>1</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>2</b></a> </nobr><br><nobr>modification <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>1</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>2</b></a> </nobr><br><nobr>modified <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>1</b></a> <a href="../modify_the_location.htm"><b>2</b></a> </nobr><br><nobr>modifies <a href="../close_contour.htm"><b>1</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>2</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>3</b></a> <a href="../modify_the_location.htm"><b>4</b></a> </nobr><br><nobr>modify <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>1</b></a> <a href="../modify_the_location.htm"><b>2</b></a> <a href="../transformation_operations.htm"><b>3</b></a> </nobr><br><nobr>module <a href="../files/introduction_to_geom.htm"><b>1</b></a> <a href="../files/salome2_sp3_displaygui_functions.htm"><b>2</b></a> </nobr><br><a href="../files/salome2_sp3_measuregui_functions.htm"><b>moment</b></a> <br><nobr>moments <a href="../files/salome2_sp3_measuregui_functions.htm"><b>1</b></a> <a href="../measurement_tools.htm"><b>2</b></a> </nobr><br><nobr>move <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>1</b></a> <a href="../modify_the_location.htm"><b>2</b></a> </nobr><br><nobr>moved <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>1</b></a> <a href="../multi_translation.htm"><b>2</b></a> </nobr><br><a name="bms_MU"></a><a name="subkey_MU"></a><a href="../working_with_groups.htm"><b>much</b></a> <br><nobr>multi <a href="../blocks_operations.htm"><b>1</b></a> <a href="../blocks.htm"><b>2</b></a> <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>3</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>4</b></a> <a href="../multi_translation.htm"><b>5</b></a> <a href="../multi_transformation.htm"><b>6</b></a> <a href="../multi_rotation.htm"><b>7</b></a> <a href="../transformation_operations.htm"><b>8</b></a> </nobr><br><a href="../transformation_operations.htm"><b>multirotate1d</b></a> <br><a href="../transformation_operations.htm"><b>multirotate2d</b></a> <br><nobr>multitude <a href="../files/salome2_sp3_operationgui_functions.htm"><b>1</b></a> <a href="../propagate.htm"><b>2</b></a> </nobr><br><nobr>must <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>1</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>2</b></a> <a href="../files/salome2_sp3_measuregui_functions.htm"><b>3</b></a> <a href="../multi_translation.htm"><b>4</b></a> <a href="../multi_rotation.htm"><b>5</b></a> <a href="../measurement_tools.htm"><b>6</b></a> <a href="../suppress_holes.htm"><b>7</b></a> </nobr><br>\r
<br><br>\r
-<nobr><a name="bm_O"></a><a name="subkey_OB"></a>object <a href="../changing_displaying_parameters.htm"><b>1</b></a> <a href="../chamfer.htm"><b>2</b></a> <a href="../archimede.htm"><b>3</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>4</b></a> <a href="../face.htm"><b>5</b></a> <a href="../extrusion.htm"><b>6</b></a> <a href="../explode.htm"><b>7</b></a> <a href="../common.htm"><b>8</b></a> <a href="../groups.htm"><b>9</b></a> <a href="../geometrical_objects.htm"><b>10</b></a> <a href="../fillet.htm"><b>11</b></a> <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>12</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>13</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>14</b></a> <a href="../files/salome2_sp3_measuregui_functions.htm"><b>15</b></a> <a href="../files/salome2_sp3_geomtoolsgui_functions.htm"><b>16</b></a> <a href="../files/salome2_sp3_generationgui_functions.htm"><b>17</b></a> <a href="../files/salome2_sp3_displaygui_functions.htm"><b>18</b></a> <a href="../propagate.htm"><b>19</b></a> <a href="../pipe_creation.htm"><b>20</b></a> <a href="../offset_surface.htm"><b>21</b></a> <a href="../multi_rotation.htm"><b>22</b></a> <a href="../modify_the_location.htm"><b>23</b></a> <a href="../mirror_image.htm"><b>24</b></a> <a href="../local_coordinate_system.htm"><b>25</b></a> <a href="../transformation_operations.htm"><b>26</b></a> <a href="../suppress_internal_wires.htm"><b>27</b></a> <a href="../rotation.htm"><b>28</b></a> <a href="../revolution.htm"><b>29</b></a> <a href="../repairing_operations.htm"><b>30</b></a> <a href="../working_with_groups.htm"><b>31</b></a> <a href="../wire.htm"><b>32</b></a> <a href="../translation.htm"><b>33</b></a> </nobr><br><nobr>objects <a href="../circle.htm"><b>1</b></a> <a href="../changing_displaying_parameters.htm"><b>2</b></a> <a href="../building_by_blocks.htm"><b>3</b></a> <a href="../boolean_operations.htm"><b>4</b></a> <a href="../blocks_operations.htm"><b>5</b></a> <a href="../basic_operations.htm"><b>6</b></a> <a href="../basic_geometrical_objects.htm"><b>7</b></a> <a href="../arc.htm"><b>8</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>9</b></a> <a href="../files/introduction_to_geom.htm"><b>10</b></a> <a href="../face.htm"><b>11</b></a> <a href="../extrusion.htm"><b>12</b></a> <a href="../ellipse.htm"><b>13</b></a> <a href="../edge.htm"><b>14</b></a> <a href="../curve.htm"><b>15</b></a> <a href="../compound.htm"><b>16</b></a> <a href="../complex_objects.htm"><b>17</b></a> <a href="../groups.htm"><b>18</b></a> <a href="../geometrical_objects.htm"><b>19</b></a> <a href="../filling.htm"><b>20</b></a> <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>21</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>22</b></a> <a href="../files/salome2_sp3_primitivegui_functions.htm"><b>23</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>24</b></a> <a href="../files/salome2_sp3_measuregui_functions.htm"><b>25</b></a> <a href="../files/salome2_sp3_geomtoolsgui_functions.htm"><b>26</b></a> <a href="../files/salome2_sp3_generationgui_functions.htm"><b>27</b></a> <a href="../files/salome2_sp3_displaygui_functions.htm"><b>28</b></a> <a href="../files/salome2_sp3_buildgui_functions.htm"><b>29</b></a> <a href="../files/salome2_sp3_booleangui_functions.htm"><b>30</b></a> <a href="../primitives.htm"><b>31</b></a> <a href="../point.htm"><b>32</b></a> <a href="../plane.htm"><b>33</b></a> <a href="../pipe_creation.htm"><b>34</b></a> <a href="../offset_surface.htm"><b>35</b></a> <a href="../multi_rotation.htm"><b>36</b></a> <a href="../line.htm"><b>37</b></a> <a href="../transformation_operations.htm"><b>38</b></a> <a href="../solid.htm"><b>39</b></a> <a href="../sketcher_tui.htm"><b>40</b></a> <a href="../shell.htm"><b>41</b></a> <a href="../revolution.htm"><b>42</b></a> <a href="../repairing_operations.htm"><b>43</b></a> <a href="../wire.htm"><b>44</b></a> <a href="../vector.htm"><b>45</b></a> </nobr><br><a href="../explode.htm"><b>obtain</b></a> <br><a href="../measurement_tools.htm"><b>obtained</b></a> <br><nobr><a name="bms_OC"></a><a name="subkey_OC"></a>occ <a href="../changing_displaying_parameters.htm"><b>1</b></a> <a href="../add_point_on_edge.htm"><b>2</b></a> <a href="../close_contour.htm"><b>3</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>4</b></a> <a href="../files/salome2_sp3_displaygui_functions.htm"><b>5</b></a> <a href="../suppress_internal_wires.htm"><b>6</b></a> <a href="../suppress_holes.htm"><b>7</b></a> <a href="../suppress_faces.htm"><b>8</b></a> <a href="../working_with_groups.htm"><b>9</b></a> </nobr><br><nobr>occurred <a href="../check_free_boundaries.htm"><b>1</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>2</b></a> </nobr><br><a name="bms_OF"></a><a name="subkey_OF"></a><a href="../working_with_groups.htm"><b>offers</b></a> <br><nobr>offset <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>1</b></a> <a href="../offset_surface.htm"><b>2</b></a> <a href="../transformation_operations.htm"><b>3</b></a> </nobr><br><nobr><a name="bms_OK"></a><a name="subkey_OK"></a>ok <a href="../files/salome2_sp3_basicgui_functions.htm"><b>1</b></a> <a href="../files/salome2_sp3_geomtoolsgui_functions.htm"><b>2</b></a> <a href="../measurement_tools.htm"><b>3</b></a> <a href="../local_coordinate_system.htm"><b>4</b></a> <a href="../repairing_operations.htm"><b>5</b></a> </nobr><br><a name="bms_OL"></a><a name="subkey_OL"></a><a href="../point.htm"><b>old</b></a> <br><nobr><a name="bms_ON"></a><a name="subkey_ON"></a>one <a href="../add_point_on_edge.htm"><b>1</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>2</b></a> <a href="../cut.htm"><b>3</b></a> <a href="../close_contour.htm"><b>4</b></a> <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>5</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>6</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>7</b></a> <a href="../files/salome2_sp3_displaygui_functions.htm"><b>8</b></a> <a href="../point.htm"><b>9</b></a> <a href="../plane.htm"><b>10</b></a> <a href="../multi_translation.htm"><b>11</b></a> <a href="../multi_transformation.htm"><b>12</b></a> <a href="../multi_rotation.htm"><b>13</b></a> <a href="../transformation_operations.htm"><b>14</b></a> <a href="../sketcher.htm"><b>15</b></a> <a href="../repairing_operations.htm"><b>16</b></a> <a href="../working_plane.htm"><b>17</b></a> </nobr><br><nobr>ones <a href="../files/salome2_sp3_repairgui_functions.htm"><b>1</b></a> <a href="../shape_processing.htm"><b>2</b></a> </nobr><br><nobr><a name="bms_OP"></a><a name="subkey_OP"></a>open <a href="../check_free_boundaries.htm"><b>1</b></a> <a href="../close_contour.htm"><b>2</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>3</b></a> <a href="../repairing_operations.htm"><b>4</b></a> </nobr><br><nobr>openwires <a href="../check_free_boundaries.htm"><b>1</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>2</b></a> <a href="../repairing_operations.htm"><b>3</b></a> </nobr><br><nobr>operation <a href="../circle.htm"><b>1</b></a> <a href="../check_free_faces.htm"><b>2</b></a> <a href="../check_free_boundaries.htm"><b>3</b></a> <a href="../chamfer.htm"><b>4</b></a> <a href="../box.htm"><b>5</b></a> <a href="../basic_operations.htm"><b>6</b></a> <a href="../archimede.htm"><b>7</b></a> <a href="../arc.htm"><b>8</b></a> <a href="../add_point_on_edge.htm"><b>9</b></a> <a href="../extrusion.htm"><b>10</b></a> <a href="../explode_on_blocks.htm"><b>11</b></a> <a href="../explode.htm"><b>12</b></a> <a href="../ellipse.htm"><b>13</b></a> <a href="../cylinder.htm"><b>14</b></a> <a href="../cut.htm"><b>15</b></a> <a href="../curve.htm"><b>16</b></a> <a href="../cone.htm"><b>17</b></a> <a href="../common.htm"><b>18</b></a> <a href="../close_contour.htm"><b>19</b></a> <a href="../glue_faces.htm"><b>20</b></a> <a href="../fuse.htm"><b>21</b></a> <a href="../filling.htm"><b>22</b></a> <a href="../fillet.htm"><b>23</b></a> <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>24</b></a> <a href="../files/salome2_sp3_displaygui_functions.htm"><b>25</b></a> <a href="../files/salome2_sp3_booleangui_functions.htm"><b>26</b></a> <a href="../propagate.htm"><b>27</b></a> <a href="../point.htm"><b>28</b></a> <a href="../plane.htm"><b>29</b></a> <a href="../pipe_creation.htm"><b>30</b></a> <a href="../partition.htm"><b>31</b></a> <a href="../offset_surface.htm"><b>32</b></a> <a href="../newentity_blocks.htm"><b>33</b></a> <a href="../multi_translation.htm"><b>34</b></a> <a href="../multi_transformation.htm"><b>35</b></a> <a href="../multi_rotation.htm"><b>36</b></a> <a href="../modify_the_location.htm"><b>37</b></a> <a href="../mirror_image.htm"><b>38</b></a> <a href="../line.htm"><b>39</b></a> <a href="../transformation_operations.htm"><b>40</b></a> <a href="../suppress_internal_wires.htm"><b>41</b></a> <a href="../suppress_holes.htm"><b>42</b></a> <a href="../suppress_faces.htm"><b>43</b></a> <a href="../sphere.htm"><b>44</b></a> <a href="../shape_processing.htm"><b>45</b></a> <a href="../sewing.htm"><b>46</b></a> <a href="../section.htm"><b>47</b></a> <a href="../scale_transform.htm"><b>48</b></a> <a href="../rotation.htm"><b>49</b></a> <a href="../revolution.htm"><b>50</b></a> <a href="../vector.htm"><b>51</b></a> <a href="../turus.htm"><b>52</b></a> <a href="../translation.htm"><b>53</b></a> </nobr><br><nobr>operations <a href="../check_free_faces.htm"><b>1</b></a> <a href="../check_free_boundaries.htm"><b>2</b></a> <a href="../chamfer.htm"><b>3</b></a> <a href="../boolean_operations.htm"><b>4</b></a> <a href="../blocks_operations.htm"><b>5</b></a> <a href="../basic_operations.htm"><b>6</b></a> <a href="../archimede.htm"><b>7</b></a> <a href="../add_point_on_edge.htm"><b>8</b></a> <a href="../files/introduction_to_geom.htm"><b>9</b></a> <a href="../explode_on_blocks.htm"><b>10</b></a> <a href="../cut.htm"><b>11</b></a> <a href="../common.htm"><b>12</b></a> <a href="../close_contour.htm"><b>13</b></a> <a href="../glue_faces.htm"><b>14</b></a> <a href="../fuse.htm"><b>15</b></a> <a href="../fillet.htm"><b>16</b></a> <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>17</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>18</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>19</b></a> <a href="../files/salome2_sp3_generationgui_functions.htm"><b>20</b></a> <a href="../files/salome2_sp3_displaygui_functions.htm"><b>21</b></a> <a href="../files/salome2_sp3_booleangui_functions.htm"><b>22</b></a> <a href="../propagate.htm"><b>23</b></a> <a href="../partition.htm"><b>24</b></a> <a href="../offset_surface.htm"><b>25</b></a> <a href="../multi_translation.htm"><b>26</b></a> <a href="../multi_transformation.htm"><b>27</b></a> <a href="../multi_rotation.htm"><b>28</b></a> <a href="../modify_the_location.htm"><b>29</b></a> <a href="../mirror_image.htm"><b>30</b></a> <a href="../transformation_operations.htm"><b>31</b></a> <a href="../suppress_internal_wires.htm"><b>32</b></a> <a href="../suppress_holes.htm"><b>33</b></a> <a href="../suppress_faces.htm"><b>34</b></a> <a href="../shape_processing.htm"><b>35</b></a> <a href="../sewing.htm"><b>36</b></a> <a href="../section.htm"><b>37</b></a> <a href="../scale_transform.htm"><b>38</b></a> <a href="../rotation.htm"><b>39</b></a> <a href="../repairing_operations.htm"><b>40</b></a> <a href="../working_with_groups.htm"><b>41</b></a> <a href="../translation.htm"><b>42</b></a> </nobr><br><nobr>operator <a href="../files/salome2_sp3_repairgui_functions.htm"><b>1</b></a> <a href="../shape_processing.htm"><b>2</b></a> </nobr><br><nobr>operators <a href="../files/salome2_sp3_repairgui_functions.htm"><b>1</b></a> <a href="../shape_processing.htm"><b>2</b></a> <a href="../repairing_operations.htm"><b>3</b></a> </nobr><br><nobr>opposite <a href="../box.htm"><b>1</b></a> <a href="../files/salome2_sp3_primitivegui_functions.htm"><b>2</b></a> </nobr><br><a href="../files/introduction_to_geom.htm"><b>optimization</b></a> <br><a href="../blocks.htm"><b>options</b></a> <br><nobr><a name="bms_OR"></a><a name="subkey_OR"></a>order <a href="../files/salome2_sp3_repairgui_functions.htm"><b>1</b></a> <a href="../files/salome2_sp3_measuregui_functions.htm"><b>2</b></a> <a href="../shape_processing.htm"><b>3</b></a> </nobr><br><nobr>oriented <a href="../files/salome2_sp3_basicgui_functions.htm"><b>1</b></a> <a href="../newentity_blocks.htm"><b>2</b></a> <a href="../local_coordinate_system.htm"><b>3</b></a> </nobr><br><nobr>origin <a href="../box.htm"><b>1</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>2</b></a> <a href="../cylinder.htm"><b>3</b></a> <a href="../cone.htm"><b>4</b></a> <a href="../files/salome2_sp3_primitivegui_functions.htm"><b>5</b></a> <a href="../local_coordinate_system.htm"><b>6</b></a> <a href="../sphere.htm"><b>7</b></a> <a href="../vector.htm"><b>8</b></a> <a href="../turus.htm"><b>9</b></a> </nobr><br><nobr><a name="bms_OT"></a><a name="subkey_OT"></a>otherwise <a href="../add_point_on_edge.htm"><b>1</b></a> <a href="../close_contour.htm"><b>2</b></a> <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>3</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>4</b></a> <a href="../modify_the_location.htm"><b>5</b></a> <a href="../mirror_image.htm"><b>6</b></a> <a href="../rotation.htm"><b>7</b></a> <a href="../translation.htm"><b>8</b></a> </nobr><br><nobr><a name="bms_OU"></a><a name="subkey_OU"></a>our <a href="../circle.htm"><b>1</b></a> <a href="../check_free_faces.htm"><b>2</b></a> <a href="../check_free_boundaries.htm"><b>3</b></a> <a href="../changing_displaying_parameters.htm"><b>4</b></a> <a href="../chamfer.htm"><b>5</b></a> <a href="../box.htm"><b>6</b></a> <a href="../archimede.htm"><b>7</b></a> <a href="../arc.htm"><b>8</b></a> <a href="../add_point_on_edge.htm"><b>9</b></a> <a href="../face.htm"><b>10</b></a> <a href="../extrusion.htm"><b>11</b></a> <a href="../explode_on_blocks.htm"><b>12</b></a> <a href="../ellipse.htm"><b>13</b></a> <a href="../edge.htm"><b>14</b></a> <a href="../cylinder.htm"><b>15</b></a> <a href="../cut.htm"><b>16</b></a> <a href="../curve.htm"><b>17</b></a> <a href="../cone.htm"><b>18</b></a> <a href="../compound.htm"><b>19</b></a> <a href="../common.htm"><b>20</b></a> <a href="../close_contour.htm"><b>21</b></a> <a href="../glue_faces.htm"><b>22</b></a> <a href="../fuse.htm"><b>23</b></a> <a href="../filling.htm"><b>24</b></a> <a href="../fillet.htm"><b>25</b></a> <a href="../files/salome2_sp3_measuregui_functions.htm"><b>26</b></a> <a href="../files/salome2_sp3_booleangui_functions.htm"><b>27</b></a> <a href="../propagate.htm"><b>28</b></a> <a href="../point.htm"><b>29</b></a> <a href="../plane.htm"><b>30</b></a> <a href="../pipe_creation.htm"><b>31</b></a> <a href="../partition.htm"><b>32</b></a> <a href="../offset_surface.htm"><b>33</b></a> <a href="../newentity_blocks.htm"><b>34</b></a> <a href="../multi_translation.htm"><b>35</b></a> <a href="../multi_transformation.htm"><b>36</b></a> <a href="../multi_rotation.htm"><b>37</b></a> <a href="../modify_the_location.htm"><b>38</b></a> <a href="../mirror_image.htm"><b>39</b></a> <a href="../line.htm"><b>40</b></a> <a href="../suppress_internal_wires.htm"><b>41</b></a> <a href="../suppress_holes.htm"><b>42</b></a> <a href="../suppress_faces.htm"><b>43</b></a> <a href="../sphere.htm"><b>44</b></a> <a href="../solid.htm"><b>45</b></a> <a href="../sketcher.htm"><b>46</b></a> <a href="../shell.htm"><b>47</b></a> <a href="../shape_processing.htm"><b>48</b></a> <a href="../sewing.htm"><b>49</b></a> <a href="../section.htm"><b>50</b></a> <a href="../scale_transform.htm"><b>51</b></a> <a href="../rotation.htm"><b>52</b></a> <a href="../revolution.htm"><b>53</b></a> <a href="../working_with_groups.htm"><b>54</b></a> <a href="../wire.htm"><b>55</b></a> <a href="../vector.htm"><b>56</b></a> <a href="../turus.htm"><b>57</b></a> <a href="../translation.htm"><b>58</b></a> </nobr><br><nobr>outside <a href="../files/salome2_sp3_operationgui_functions.htm"><b>1</b></a> <a href="../partition.htm"><b>2</b></a> </nobr><br><nobr><a name="bms_OX"></a><a name="subkey_OX"></a>ox <a href="../files/salome2_sp3_basicgui_functions.htm"><b>1</b></a> <a href="../local_coordinate_system.htm"><b>2</b></a> <a href="../sketcher.htm"><b>3</b></a> </nobr><br><nobr><a name="bms_OY"></a><a name="subkey_OY"></a>oy <a href="../files/salome2_sp3_basicgui_functions.htm"><b>1</b></a> <a href="../local_coordinate_system.htm"><b>2</b></a> </nobr><br><nobr><a name="bms_OZ"></a><a name="subkey_OZ"></a>oz <a href="../files/salome2_sp3_basicgui_functions.htm"><b>1</b></a> <a href="../cylinder.htm"><b>2</b></a> <a href="../cone.htm"><b>3</b></a> <a href="../local_coordinate_system.htm"><b>4</b></a> <a href="../sketcher.htm"><b>5</b></a> </nobr><br>\r
-<br><br>\r
-<a name="bm_P"></a><a name="subkey_P{"></a><a href="../primitives.htm"><b>p</b></a> <br><a href="../blocks_operations.htm"><b>p_25_25_50</b></a> <br><a href="../blocks_operations.htm"><b>p_25_50_25</b></a> <br><a href="../blocks_operations.htm"><b>p_50_25_25</b></a> <br><a href="../basic_geometrical_objects.htm"><b>p_on_arc</b></a> <br><nobr>p0 <a href="../basic_operations.htm"><b>1</b></a> <a href="../basic_geometrical_objects.htm"><b>2</b></a> <a href="../complex_objects.htm"><b>3</b></a> <a href="../groups.htm"><b>4</b></a> <a href="../geometrical_objects.htm"><b>5</b></a> <a href="../primitives.htm"><b>6</b></a> <a href="../transformation_operations.htm"><b>7</b></a> <a href="../repairing_operations.htm"><b>8</b></a> </nobr><br><nobr>p1 <a href="../building_by_blocks.htm"><b>1</b></a> <a href="../boolean_operations.htm"><b>2</b></a> <a href="../basic_geometrical_objects.htm"><b>3</b></a> <a href="../complex_objects.htm"><b>4</b></a> <a href="../primitives.htm"><b>5</b></a> <a href="../transformation_operations.htm"><b>6</b></a> <a href="../sketcher_tui.htm"><b>7</b></a> <a href="../repairing_operations.htm"><b>8</b></a> </nobr><br><a href="../building_by_blocks.htm"><b>p10</b></a> <br><a href="../basic_geometrical_objects.htm"><b>p100</b></a> <br><a href="../building_by_blocks.htm"><b>p11</b></a> <br><a href="../building_by_blocks.htm"><b>p12</b></a> <br><a href="../building_by_blocks.htm"><b>p13</b></a> <br><nobr>p2 <a href="../building_by_blocks.htm"><b>1</b></a> <a href="../boolean_operations.htm"><b>2</b></a> <a href="../basic_geometrical_objects.htm"><b>3</b></a> <a href="../complex_objects.htm"><b>4</b></a> <a href="../primitives.htm"><b>5</b></a> <a href="../transformation_operations.htm"><b>6</b></a> <a href="../sketcher_tui.htm"><b>7</b></a> <a href="../repairing_operations.htm"><b>8</b></a> </nobr><br><nobr>p200 <a href="../basic_operations.htm"><b>1</b></a> <a href="../groups.htm"><b>2</b></a> </nobr><br><nobr>p3 <a href="../building_by_blocks.htm"><b>1</b></a> <a href="../basic_geometrical_objects.htm"><b>2</b></a> <a href="../complex_objects.htm"><b>3</b></a> <a href="../transformation_operations.htm"><b>4</b></a> <a href="../sketcher_tui.htm"><b>5</b></a> <a href="../repairing_operations.htm"><b>6</b></a> </nobr><br><nobr>p4 <a href="../building_by_blocks.htm"><b>1</b></a> <a href="../basic_geometrical_objects.htm"><b>2</b></a> <a href="../complex_objects.htm"><b>3</b></a> <a href="../transformation_operations.htm"><b>4</b></a> </nobr><br><nobr>p5 <a href="../building_by_blocks.htm"><b>1</b></a> <a href="../basic_geometrical_objects.htm"><b>2</b></a> <a href="../complex_objects.htm"><b>3</b></a> <a href="../transformation_operations.htm"><b>4</b></a> </nobr><br><a href="../basic_geometrical_objects.htm"><b>p50</b></a> <br><nobr>p6 <a href="../building_by_blocks.htm"><b>1</b></a> <a href="../complex_objects.htm"><b>2</b></a> </nobr><br><nobr>p7 <a href="../building_by_blocks.htm"><b>1</b></a> <a href="../complex_objects.htm"><b>2</b></a> </nobr><br><a href="../primitives.htm"><b>p70</b></a> <br><nobr>p8 <a href="../building_by_blocks.htm"><b>1</b></a> <a href="../complex_objects.htm"><b>2</b></a> </nobr><br><a href="../building_by_blocks.htm"><b>p9</b></a> <br><br><br></p><p class="ftsbody" align="center"><a href="whlstf9.htm" target="_self" title="previous search group"><b>>></b></a>\r
+<nobr><a name="bm_N"></a><a name="subkey_NA"></a>name <a href="../circle.htm"><b>1</b></a> <a href="../chamfer.htm"><b>2</b></a> <a href="../box.htm"><b>3</b></a> <a href="../archimede.htm"><b>4</b></a> <a href="../arc.htm"><b>5</b></a> <a href="../add_point_on_edge.htm"><b>6</b></a> <a href="../face.htm"><b>7</b></a> <a href="../extrusion.htm"><b>8</b></a> <a href="../ellipse.htm"><b>9</b></a> <a href="../edge.htm"><b>10</b></a> <a href="../cylinder.htm"><b>11</b></a> <a href="../cut.htm"><b>12</b></a> <a href="../curve.htm"><b>13</b></a> <a href="../cone.htm"><b>14</b></a> <a href="../compound.htm"><b>15</b></a> <a href="../common.htm"><b>16</b></a> <a href="../close_contour.htm"><b>17</b></a> <a href="../glue_faces.htm"><b>18</b></a> <a href="../fuse.htm"><b>19</b></a> <a href="../filling.htm"><b>20</b></a> <a href="../fillet.htm"><b>21</b></a> <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>22</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>23</b></a> <a href="../files/salome2_sp3_primitivegui_functions.htm"><b>24</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>25</b></a> <a href="../files/salome2_sp3_geomtoolsgui_functions.htm"><b>26</b></a> <a href="../files/salome2_sp3_generationgui_functions.htm"><b>27</b></a> <a href="../files/salome2_sp3_buildgui_functions.htm"><b>28</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>29</b></a> <a href="../point.htm"><b>30</b></a> <a href="../plane.htm"><b>31</b></a> <a href="../pipe_creation.htm"><b>32</b></a> <a href="../partition.htm"><b>33</b></a> <a href="../offset_surface.htm"><b>34</b></a> <a href="../newentity_blocks.htm"><b>35</b></a> <a href="../multi_translation.htm"><b>36</b></a> <a href="../multi_transformation.htm"><b>37</b></a> <a href="../multi_rotation.htm"><b>38</b></a> <a href="../modify_the_location.htm"><b>39</b></a> <a href="../mirror_image.htm"><b>40</b></a> <a href="../local_coordinate_system.htm"><b>41</b></a> <a href="../line.htm"><b>42</b></a> <a href="../suppress_holes.htm"><b>43</b></a> <a href="../suppress_faces.htm"><b>44</b></a> <a href="../sphere.htm"><b>45</b></a> <a href="../solid.htm"><b>46</b></a> <a href="../shell.htm"><b>47</b></a> <a href="../sewing.htm"><b>48</b></a> <a href="../section.htm"><b>49</b></a> <a href="../scale_transform.htm"><b>50</b></a> <a href="../revolution.htm"><b>51</b></a> <a href="../working_with_groups.htm"><b>52</b></a> <a href="../working_plane.htm"><b>53</b></a> <a href="../wire.htm"><b>54</b></a> <a href="../vector.htm"><b>55</b></a> <a href="../turus.htm"><b>56</b></a> <a href="../translation.htm"><b>57</b></a> <a href="../suppress_internal_wires.htm"><b>58</b></a> </nobr><br><nobr>names <a href="../files/salome2_sp3_repairgui_functions.htm"><b>1</b></a> <a href="../shape_processing.htm"><b>2</b></a> </nobr><br><nobr><a name="bms_NB"></a><a name="subkey_NB"></a>nb <a href="../box.htm"><b>1</b></a> <a href="../extrusion.htm"><b>2</b></a> <a href="../line.htm"><b>3</b></a> <a href="../sphere.htm"><b>4</b></a> </nobr><br><a href="../explode.htm"><b>nb_sub</b></a> <br><nobr>nbiter <a href="../complex_objects.htm"><b>1</b></a> <a href="../filling.htm"><b>2</b></a> <a href="../files/salome2_sp3_generationgui_functions.htm"><b>3</b></a> </nobr><br><a href="../measurement_tools.htm"><b>nbounding</b></a> <br><a href="../measurement_tools.htm"><b>nbox</b></a> <br><nobr>nbsplitpoints <a href="../files/salome2_sp3_repairgui_functions.htm"><b>1</b></a> <a href="../shape_processing.htm"><b>2</b></a> </nobr><br><nobr>nbtimes <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>1</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>2</b></a> <a href="../multi_translation.htm"><b>3</b></a> <a href="../multi_transformation.htm"><b>4</b></a> <a href="../multi_rotation.htm"><b>5</b></a> </nobr><br><nobr>nbtimes1 <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>1</b></a> <a href="../multi_translation.htm"><b>2</b></a> <a href="../multi_rotation.htm"><b>3</b></a> </nobr><br><nobr>nbtimes2 <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>1</b></a> <a href="../multi_translation.htm"><b>2</b></a> <a href="../multi_rotation.htm"><b>3</b></a> </nobr><br><nobr>nbtimesu <a href="../files/salome2_sp3_operationgui_functions.htm"><b>1</b></a> <a href="../multi_transformation.htm"><b>2</b></a> </nobr><br><nobr>nbtimesv <a href="../files/salome2_sp3_operationgui_functions.htm"><b>1</b></a> <a href="../multi_transformation.htm"><b>2</b></a> </nobr><br><a name="bms_NC"></a><a name="subkey_NC"></a><a href="../measurement_tools.htm"><b>ncentre</b></a> <br><a href="../measurement_tools.htm"><b>ncompound</b></a> <br><nobr><a name="bms_NE"></a><a name="subkey_NE"></a>necessary <a href="../chamfer.htm"><b>1</b></a> <a href="../fillet.htm"><b>2</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>3</b></a> <a href="../files/salome2_sp3_measuregui_functions.htm"><b>4</b></a> <a href="../files/salome2_sp3_displaygui_functions.htm"><b>5</b></a> <a href="../sketcher.htm"><b>6</b></a> <a href="../shape_processing.htm"><b>7</b></a> </nobr><br><nobr>need <a href="../chamfer.htm"><b>1</b></a> <a href="../box.htm"><b>2</b></a> <a href="../face.htm"><b>3</b></a> <a href="../extrusion.htm"><b>4</b></a> <a href="../explode.htm"><b>5</b></a> <a href="../filling.htm"><b>6</b></a> <a href="../fillet.htm"><b>7</b></a> <a href="../pipe_creation.htm"><b>8</b></a> <a href="../multi_translation.htm"><b>9</b></a> <a href="../multi_rotation.htm"><b>10</b></a> <a href="../sphere.htm"><b>11</b></a> <a href="../scale_transform.htm"><b>12</b></a> <a href="../rotation.htm"><b>13</b></a> <a href="../revolution.htm"><b>14</b></a> <a href="../translation.htm"><b>15</b></a> </nobr><br><nobr>needed <a href="../close_contour.htm"><b>1</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>2</b></a> </nobr><br><nobr>negative <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>1</b></a> <a href="../offset_surface.htm"><b>2</b></a> </nobr><br><nobr>neigbour <a href="../files/salome2_sp3_repairgui_functions.htm"><b>1</b></a> <a href="../shape_processing.htm"><b>2</b></a> </nobr><br><nobr>new <a href="../circle.htm"><b>1</b></a> <a href="../box.htm"><b>2</b></a> <a href="../arc.htm"><b>3</b></a> <a href="../face.htm"><b>4</b></a> <a href="../extrusion.htm"><b>5</b></a> <a href="../explode.htm"><b>6</b></a> <a href="../ellipse.htm"><b>7</b></a> <a href="../edge.htm"><b>8</b></a> <a href="../cylinder.htm"><b>9</b></a> <a href="../curve.htm"><b>10</b></a> <a href="../cone.htm"><b>11</b></a> <a href="../compound.htm"><b>12</b></a> <a href="../close_contour.htm"><b>13</b></a> <a href="../filling.htm"><b>14</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>15</b></a> <a href="../files/salome2_sp3_primitivegui_functions.htm"><b>16</b></a> <a href="../files/salome2_sp3_generationgui_functions.htm"><b>17</b></a> <a href="../files/salome2_sp3_buildgui_functions.htm"><b>18</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>19</b></a> <a href="../point.htm"><b>20</b></a> <a href="../plane.htm"><b>21</b></a> <a href="../pipe_creation.htm"><b>22</b></a> <a href="../newentity_blocks.htm"><b>23</b></a> <a href="../local_coordinate_system.htm"><b>24</b></a> <a href="../line.htm"><b>25</b></a> <a href="../sphere.htm"><b>26</b></a> <a href="../solid.htm"><b>27</b></a> <a href="../sketcher.htm"><b>28</b></a> <a href="../shell.htm"><b>29</b></a> <a href="../revolution.htm"><b>30</b></a> <a href="../working_with_groups.htm"><b>31</b></a> <a href="../working_plane.htm"><b>32</b></a> <a href="../wire.htm"><b>33</b></a> <a href="../vector.htm"><b>34</b></a> <a href="../turus.htm"><b>35</b></a> <a href="../transformation_operations.htm"><b>36</b></a> </nobr><br><a name="bms_NI"></a><a name="subkey_NI"></a><a href="../measurement_tools.htm"><b>ninertia</b></a> <br><a name="bms_NM"></a><a name="subkey_NM"></a><a href="../measurement_tools.htm"><b>nminimal</b></a> <br><nobr><a name="bms_NO"></a><a name="subkey_NO"></a>nodes <a href="../curve.htm"><b>1</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>2</b></a> </nobr><br><nobr>noerror <a href="../check_free_boundaries.htm"><b>1</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>2</b></a> </nobr><br><a href="../measurement_tools.htm"><b>none</b></a> <br><nobr>normal <a href="../circle.htm"><b>1</b></a> <a href="../basic_geometrical_objects.htm"><b>2</b></a> <a href="../extrusion.htm"><b>3</b></a> <a href="../ellipse.htm"><b>4</b></a> <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>5</b></a> <a href="../files/salome2_sp3_generationgui_functions.htm"><b>6</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>7</b></a> <a href="../plane.htm"><b>8</b></a> <a href="../offset_surface.htm"><b>9</b></a> <a href="../turus.htm"><b>10</b></a> </nobr><br><a href="../cone.htm"><b>note</b></a> <br><a href="../face.htm"><b>nothing</b></a> <br><a href="../newentity_blocks.htm"><b>notions</b></a> <br><br><br></p><p class="ftsbody" align="center"><a href="whlstf9.htm" target="_self" title="previous search group"><b>>></b></a>\r
\r
</body>\r
\r
<body marginheight="0" marginwidth="0" bgproperties="fixed">\r
<p class="ftsbody" align="center"><a href="whlstf8.htm" target="_self" title="previous search group"><b><<</b></a><br><br></p>\r
<p class="ftsbody" >\r
-<nobr><a name="bms_PA"></a><a name="subkey_PA"></a>parallel <a href="../box.htm"><b>1</b></a> <a href="../line.htm"><b>2</b></a> </nobr><br><nobr>parameter <a href="../add_point_on_edge.htm"><b>1</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>2</b></a> <a href="../close_contour.htm"><b>3</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>4</b></a> <a href="../files/salome2_sp3_buildgui_functions.htm"><b>5</b></a> <a href="../point.htm"><b>6</b></a> <a href="../local_coordinate_system.htm"><b>7</b></a> <a href="../shape_processing.htm"><b>8</b></a> </nobr><br><nobr>parameters <a href="../changing_displaying_parameters.htm"><b>1</b></a> <a href="../changing_display_parameters.htm"><b>2</b></a> <a href="../basic_operations.htm"><b>3</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>4</b></a> <a href="../filling.htm"><b>5</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>6</b></a> <a href="../files/salome2_sp3_generationgui_functions.htm"><b>7</b></a> <a href="../local_coordinate_system.htm"><b>8</b></a> <a href="../sketcher.htm"><b>9</b></a> <a href="../shape_processing.htm"><b>10</b></a> <a href="../repairing_operations.htm"><b>11</b></a> </nobr><br><nobr>paramter <a href="../add_point_on_edge.htm"><b>1</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>2</b></a> </nobr><br><nobr>part <a href="../cone.htm"><b>1</b></a> <a href="../common.htm"><b>2</b></a> <a href="../files/salome2_sp3_primitivegui_functions.htm"><b>3</b></a> </nobr><br><nobr>partition <a href="../basic_operations.htm"><b>1</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>2</b></a> <a href="../partition.htm"><b>3</b></a> </nobr><br><a href="../basic_operations.htm"><b>partition1</b></a> <br><a href="../basic_operations.htm"><b>partition2</b></a> <br><a href="../basic_operations.htm"><b>partition3</b></a> <br><a href="../sketcher.htm"><b>passed</b></a> <br><nobr>passes <a href="../files/salome2_sp3_basicgui_functions.htm"><b>1</b></a> <a href="../curve.htm"><b>2</b></a> <a href="../plane.htm"><b>3</b></a> <a href="../multi_rotation.htm"><b>4</b></a> <a href="../line.htm"><b>5</b></a> </nobr><br><a href="../line.htm"><b>passing</b></a> <br><nobr>path <a href="../complex_objects.htm"><b>1</b></a> <a href="../files/salome2_sp3_generationgui_functions.htm"><b>2</b></a> <a href="../pipe_creation.htm"><b>3</b></a> </nobr><br><nobr>pathshape <a href="../files/salome2_sp3_generationgui_functions.htm"><b>1</b></a> <a href="../pipe_creation.htm"><b>2</b></a> </nobr><br><a href="../files/salome2_sp3_transformationgui_functions.htm"><b>pattern</b></a> <br><nobr><a name="bms_PE"></a><a name="subkey_PE"></a>perform <a href="../basic_operations.htm"><b>1</b></a> <a href="../explode.htm"><b>2</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>3</b></a> <a href="../transformation_operations.htm"><b>4</b></a> <a href="../working_with_groups.htm"><b>5</b></a> </nobr><br><nobr>performed <a href="../files/salome2_sp3_operationgui_functions.htm"><b>1</b></a> <a href="../partition.htm"><b>2</b></a> </nobr><br><a href="../sketcher.htm"><b>perpendicular</b></a> <br><nobr><a name="bms_PI"></a><a name="subkey_PI"></a>pi <a href="../multi_rotation.htm"><b>1</b></a> <a href="../transformation_operations.htm"><b>2</b></a> <a href="../repairing_operations.htm"><b>3</b></a> </nobr><br><nobr>pipe <a href="../complex_objects.htm"><b>1</b></a> <a href="../files/salome2_sp3_generationgui_functions.htm"><b>2</b></a> <a href="../pipe_creation.htm"><b>3</b></a> </nobr><br><nobr><a name="bms_PL"></a><a name="subkey_PL"></a>planar <a href="../files/salome2_sp3_basicgui_functions.htm"><b>1</b></a> <a href="../face.htm"><b>2</b></a> <a href="../files/salome2_sp3_buildgui_functions.htm"><b>3</b></a> <a href="../transformation_operations.htm"><b>4</b></a> <a href="../sketcher_tui.htm"><b>5</b></a> <a href="../sketcher.htm"><b>6</b></a> <a href="../working_plane.htm"><b>7</b></a> </nobr><br><nobr>plane <a href="../basic_operations.htm"><b>1</b></a> <a href="../basic_geometrical_objects.htm"><b>2</b></a> <a href="../archimede.htm"><b>3</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>4</b></a> <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>5</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>6</b></a> <a href="../plane.htm"><b>7</b></a> <a href="../partition.htm"><b>8</b></a> <a href="../mirror_image.htm"><b>9</b></a> <a href="../transformation_operations.htm"><b>10</b></a> <a href="../sketcher.htm"><b>11</b></a> <a href="../working_plane.htm"><b>12</b></a> </nobr><br><a href="../basic_geometrical_objects.htm"><b>plane1</b></a> <br><a href="../basic_geometrical_objects.htm"><b>plane2</b></a> <br><a href="../basic_geometrical_objects.htm"><b>plane3</b></a> <br><a href="../plane.htm"><b>planes</b></a> <br><a href="../working_with_groups.htm"><b>platform</b></a> <br><nobr>plunged <a href="../archimede.htm"><b>1</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>2</b></a> </nobr><br><nobr><a name="bms_PO"></a><a name="subkey_PO"></a>point <a href="../circle.htm"><b>1</b></a> <a href="../box.htm"><b>2</b></a> <a href="../basic_geometrical_objects.htm"><b>3</b></a> <a href="../arc.htm"><b>4</b></a> <a href="../add_point_on_edge.htm"><b>5</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>6</b></a> <a href="../extrusion.htm"><b>7</b></a> <a href="../ellipse.htm"><b>8</b></a> <a href="../cylinder.htm"><b>9</b></a> <a href="../cone.htm"><b>10</b></a> <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>11</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>12</b></a> <a href="../files/salome2_sp3_primitivegui_functions.htm"><b>13</b></a> <a href="../files/salome2_sp3_measuregui_functions.htm"><b>14</b></a> <a href="../point.htm"><b>15</b></a> <a href="../plane.htm"><b>16</b></a> <a href="../offset_surface.htm"><b>17</b></a> <a href="../multi_rotation.htm"><b>18</b></a> <a href="../mirror_image.htm"><b>19</b></a> <a href="../measurement_tools.htm"><b>20</b></a> <a href="../local_coordinate_system.htm"><b>21</b></a> <a href="../line.htm"><b>22</b></a> <a href="../transformation_operations.htm"><b>23</b></a> <a href="../sphere.htm"><b>24</b></a> <a href="../sketcher.htm"><b>25</b></a> <a href="../scale_transform.htm"><b>26</b></a> <a href="../repairing_operations.htm"><b>27</b></a> <a href="../vector.htm"><b>28</b></a> <a href="../turus.htm"><b>29</b></a> </nobr><br><nobr>point1 <a href="../circle.htm"><b>1</b></a> <a href="../building_by_blocks.htm"><b>2</b></a> <a href="../box.htm"><b>3</b></a> <a href="../basic_geometrical_objects.htm"><b>4</b></a> <a href="../arc.htm"><b>5</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>6</b></a> <a href="../extrusion.htm"><b>7</b></a> <a href="../edge.htm"><b>8</b></a> <a href="../plane.htm"><b>9</b></a> <a href="../line.htm"><b>10</b></a> <a href="../vector.htm"><b>11</b></a> <a href="../translation.htm"><b>12</b></a> </nobr><br><nobr>point2 <a href="../circle.htm"><b>1</b></a> <a href="../building_by_blocks.htm"><b>2</b></a> <a href="../box.htm"><b>3</b></a> <a href="../basic_geometrical_objects.htm"><b>4</b></a> <a href="../arc.htm"><b>5</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>6</b></a> <a href="../extrusion.htm"><b>7</b></a> <a href="../edge.htm"><b>8</b></a> <a href="../plane.htm"><b>9</b></a> <a href="../line.htm"><b>10</b></a> <a href="../vector.htm"><b>11</b></a> <a href="../translation.htm"><b>12</b></a> </nobr><br><nobr>point3 <a href="../circle.htm"><b>1</b></a> <a href="../building_by_blocks.htm"><b>2</b></a> <a href="../basic_geometrical_objects.htm"><b>3</b></a> <a href="../arc.htm"><b>4</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>5</b></a> <a href="../plane.htm"><b>6</b></a> </nobr><br><nobr>point4 <a href="../building_by_blocks.htm"><b>1</b></a> <a href="../basic_geometrical_objects.htm"><b>2</b></a> </nobr><br><a href="../basic_geometrical_objects.htm"><b>point5</b></a> <br><nobr>pointcoordinates <a href="../files/salome2_sp3_measuregui_functions.htm"><b>1</b></a> <a href="../measurement_tools.htm"><b>2</b></a> </nobr><br><nobr>points <a href="../circle.htm"><b>1</b></a> <a href="../box.htm"><b>2</b></a> <a href="../basic_operations.htm"><b>3</b></a> <a href="../basic_geometrical_objects.htm"><b>4</b></a> <a href="../arc.htm"><b>5</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>6</b></a> <a href="../edge.htm"><b>7</b></a> <a href="../curve.htm"><b>8</b></a> <a href="../complex_objects.htm"><b>9</b></a> <a href="../close_contour.htm"><b>10</b></a> <a href="../groups.htm"><b>11</b></a> <a href="../geometrical_objects.htm"><b>12</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>13</b></a> <a href="../files/salome2_sp3_primitivegui_functions.htm"><b>14</b></a> <a href="../plane.htm"><b>15</b></a> <a href="../newentity_blocks.htm"><b>16</b></a> <a href="../line.htm"><b>17</b></a> <a href="../transformation_operations.htm"><b>18</b></a> <a href="../sketcher_tui.htm"><b>19</b></a> <a href="../sketcher.htm"><b>20</b></a> <a href="../shape_processing.htm"><b>21</b></a> <a href="../repairing_operations.htm"><b>22</b></a> <a href="../vector.htm"><b>23</b></a> <a href="../translation.htm"><b>24</b></a> </nobr><br><nobr>polyline <a href="../basic_geometrical_objects.htm"><b>1</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>2</b></a> <a href="../curve.htm"><b>3</b></a> </nobr><br><nobr>pop <a href="../changing_displaying_parameters.htm"><b>1</b></a> <a href="../files/salome2_sp3_displaygui_functions.htm"><b>2</b></a> </nobr><br><nobr>position <a href="../add_point_on_edge.htm"><b>1</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>2</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>3</b></a> <a href="../point.htm"><b>4</b></a> <a href="../transformation_operations.htm"><b>5</b></a> <a href="../working_plane.htm"><b>6</b></a> </nobr><br><a href="../face.htm"><b>possibilities</b></a> <br><nobr>possibility <a href="../files/salome2_sp3_repairgui_functions.htm"><b>1</b></a> <a href="../shape_processing.htm"><b>2</b></a> </nobr><br><nobr>possible <a href="../blocks_operations.htm"><b>1</b></a> <a href="../curve.htm"><b>2</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>3</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>4</b></a> <a href="../files/salome2_sp3_measuregui_functions.htm"><b>5</b></a> <a href="../files/salome2_sp3_displaygui_functions.htm"><b>6</b></a> <a href="../propagate.htm"><b>7</b></a> <a href="../shape_processing.htm"><b>8</b></a> </nobr><br><nobr><a name="bms_PR"></a><a name="subkey_PR"></a>precision <a href="../files/salome2_sp3_repairgui_functions.htm"><b>1</b></a> <a href="../sewing.htm"><b>2</b></a> <a href="../repairing_operations.htm"><b>3</b></a> </nobr><br><a href="../sketcher.htm"><b>predefined</b></a> <br><a href="../working_with_groups.htm"><b>preferences</b></a> <br><nobr>presses <a href="../files/salome2_sp3_basicgui_functions.htm"><b>1</b></a> <a href="../local_coordinate_system.htm"><b>2</b></a> </nobr><br><nobr>preview <a href="../files/salome2_sp3_basicgui_functions.htm"><b>1</b></a> <a href="../local_coordinate_system.htm"><b>2</b></a> </nobr><br><a href="../sketcher.htm"><b>previous</b></a> <br><a href="../files/salome2_sp3_primitivegui_functions.htm"><b>primitive</b></a> <br><nobr>primitives <a href="../box.htm"><b>1</b></a> <a href="../files/introduction_to_geom.htm"><b>2</b></a> <a href="../cylinder.htm"><b>3</b></a> <a href="../cone.htm"><b>4</b></a> <a href="../files/salome2_sp3_primitivegui_functions.htm"><b>5</b></a> <a href="../primitives.htm"><b>6</b></a> <a href="../sphere.htm"><b>7</b></a> <a href="../turus.htm"><b>8</b></a> </nobr><br><nobr>print <a href="../measurement_tools.htm"><b>1</b></a> <a href="../repairing_operations.htm"><b>2</b></a> </nobr><br><a href="../files/salome2_sp3_measuregui_functions.htm"><b>printed</b></a> <br><nobr>prism <a href="../extrusion.htm"><b>1</b></a> <a href="../complex_objects.htm"><b>2</b></a> <a href="../geometrical_objects.htm"><b>3</b></a> <a href="../files/salome2_sp3_generationgui_functions.htm"><b>4</b></a> <a href="../transformation_operations.htm"><b>5</b></a> <a href="../repairing_operations.htm"><b>6</b></a> </nobr><br><a href="../transformation_operations.htm"><b>prism_edges</b></a> <br><nobr>prism_faces <a href="../geometrical_objects.htm"><b>1</b></a> <a href="../transformation_operations.htm"><b>2</b></a> </nobr><br><a href="../complex_objects.htm"><b>prism1</b></a> <br><a href="../complex_objects.htm"><b>prism2</b></a> <br><nobr>prisms <a href="../extrusion.htm"><b>1</b></a> <a href="../complex_objects.htm"><b>2</b></a> </nobr><br><nobr>problems <a href="../files/salome2_sp3_repairgui_functions.htm"><b>1</b></a> <a href="../shape_processing.htm"><b>2</b></a> </nobr><br><a href="../repairing_operations.htm"><b>process</b></a> <br><nobr>processed <a href="../close_contour.htm"><b>1</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>2</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>3</b></a> <a href="../suppress_faces.htm"><b>4</b></a> <a href="../shape_processing.htm"><b>5</b></a> <a href="../repairing_operations.htm"><b>6</b></a> </nobr><br><nobr>processes <a href="../files/salome2_sp3_repairgui_functions.htm"><b>1</b></a> <a href="../shape_processing.htm"><b>2</b></a> </nobr><br><nobr>processing <a href="../files/salome2_sp3_repairgui_functions.htm"><b>1</b></a> <a href="../shape_processing.htm"><b>2</b></a> <a href="../repairing_operations.htm"><b>3</b></a> </nobr><br><nobr>processshape <a href="../files/salome2_sp3_repairgui_functions.htm"><b>1</b></a> <a href="../shape_processing.htm"><b>2</b></a> <a href="../repairing_operations.htm"><b>3</b></a> </nobr><br><nobr>produce <a href="../chamfer.htm"><b>1</b></a> <a href="../archimede.htm"><b>2</b></a> <a href="../explode_on_blocks.htm"><b>3</b></a> <a href="../cut.htm"><b>4</b></a> <a href="../common.htm"><b>5</b></a> <a href="../close_contour.htm"><b>6</b></a> <a href="../fuse.htm"><b>7</b></a> <a href="../fillet.htm"><b>8</b></a> <a href="../propagate.htm"><b>9</b></a> <a href="../partition.htm"><b>10</b></a> <a href="../offset_surface.htm"><b>11</b></a> <a href="../multi_translation.htm"><b>12</b></a> <a href="../multi_transformation.htm"><b>13</b></a> <a href="../multi_rotation.htm"><b>14</b></a> <a href="../mirror_image.htm"><b>15</b></a> <a href="../transformation_operations.htm"><b>16</b></a> <a href="../suppress_faces.htm"><b>17</b></a> <a href="../shape_processing.htm"><b>18</b></a> <a href="../sewing.htm"><b>19</b></a> <a href="../section.htm"><b>20</b></a> <a href="../scale_transform.htm"><b>21</b></a> <a href="../rotation.htm"><b>22</b></a> <a href="../translation.htm"><b>23</b></a> </nobr><br><a href="../working_with_groups.htm"><b>project</b></a> <br><a href="../multi_rotation.htm"><b>projection</b></a> <br><a href="../working_plane.htm"><b>projections</b></a> <br><nobr>propagate <a href="../blocks_operations.htm"><b>1</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>2</b></a> <a href="../propagate.htm"><b>3</b></a> </nobr><br><nobr>propagation <a href="../blocks_operations.htm"><b>1</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>2</b></a> <a href="../propagate.htm"><b>3</b></a> </nobr><br><nobr>properties <a href="../changing_displaying_parameters.htm"><b>1</b></a> <a href="../files/salome2_sp3_measuregui_functions.htm"><b>2</b></a> <a href="../measurement_tools.htm"><b>3</b></a> </nobr><br><a href="../measurement_tools.htm"><b>props</b></a> <br><nobr>provide <a href="../circle.htm"><b>1</b></a> <a href="../check_free_faces.htm"><b>2</b></a> <a href="../check_free_boundaries.htm"><b>3</b></a> <a href="../changing_displaying_parameters.htm"><b>4</b></a> <a href="../chamfer.htm"><b>5</b></a> <a href="../box.htm"><b>6</b></a> <a href="../archimede.htm"><b>7</b></a> <a href="../arc.htm"><b>8</b></a> <a href="../add_point_on_edge.htm"><b>9</b></a> <a href="../face.htm"><b>10</b></a> <a href="../extrusion.htm"><b>11</b></a> <a href="../explode_on_blocks.htm"><b>12</b></a> <a href="../ellipse.htm"><b>13</b></a> <a href="../edge.htm"><b>14</b></a> <a href="../cylinder.htm"><b>15</b></a> <a href="../cut.htm"><b>16</b></a> <a href="../curve.htm"><b>17</b></a> <a href="../cone.htm"><b>18</b></a> <a href="../compound.htm"><b>19</b></a> <a href="../common.htm"><b>20</b></a> <a href="../close_contour.htm"><b>21</b></a> <a href="../glue_faces.htm"><b>22</b></a> <a href="../fuse.htm"><b>23</b></a> <a href="../filling.htm"><b>24</b></a> <a href="../fillet.htm"><b>25</b></a> <a href="../files/salome2_sp3_booleangui_functions.htm"><b>26</b></a> <a href="../propagate.htm"><b>27</b></a> <a href="../point.htm"><b>28</b></a> <a href="../plane.htm"><b>29</b></a> <a href="../pipe_creation.htm"><b>30</b></a> <a href="../partition.htm"><b>31</b></a> <a href="../offset_surface.htm"><b>32</b></a> <a href="../newentity_blocks.htm"><b>33</b></a> <a href="../multi_translation.htm"><b>34</b></a> <a href="../multi_transformation.htm"><b>35</b></a> <a href="../multi_rotation.htm"><b>36</b></a> <a href="../modify_the_location.htm"><b>37</b></a> <a href="../mirror_image.htm"><b>38</b></a> <a href="../line.htm"><b>39</b></a> <a href="../suppress_internal_wires.htm"><b>40</b></a> <a href="../suppress_holes.htm"><b>41</b></a> <a href="../suppress_faces.htm"><b>42</b></a> <a href="../sphere.htm"><b>43</b></a> <a href="../solid.htm"><b>44</b></a> <a href="../sketcher.htm"><b>45</b></a> <a href="../shell.htm"><b>46</b></a> <a href="../shape_processing.htm"><b>47</b></a> <a href="../sewing.htm"><b>48</b></a> <a href="../section.htm"><b>49</b></a> <a href="../scale_transform.htm"><b>50</b></a> <a href="../rotation.htm"><b>51</b></a> <a href="../revolution.htm"><b>52</b></a> <a href="../working_with_groups.htm"><b>53</b></a> <a href="../wire.htm"><b>54</b></a> <a href="../vector.htm"><b>55</b></a> <a href="../turus.htm"><b>56</b></a> <a href="../translation.htm"><b>57</b></a> </nobr><br><a name="bms_PS"></a><a name="subkey_PS"></a><a href="../repairing_operations.htm"><b>ps</b></a> <br><nobr><a name="bms_PU"></a><a name="subkey_PU"></a>put <a href="../archimede.htm"><b>1</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>2</b></a> </nobr><br><nobr><a name="bms_PX"></a><a name="subkey_PX"></a>px <a href="../basic_geometrical_objects.htm"><b>1</b></a> <a href="../complex_objects.htm"><b>2</b></a> <a href="../geometrical_objects.htm"><b>3</b></a> <a href="../transformation_operations.htm"><b>4</b></a> <a href="../repairing_operations.htm"><b>5</b></a> </nobr><br><a href="../transformation_operations.htm"><b>pxy</b></a> <br><nobr>pxyz <a href="../complex_objects.htm"><b>1</b></a> <a href="../geometrical_objects.htm"><b>2</b></a> <a href="../transformation_operations.htm"><b>3</b></a> </nobr><br><nobr><a name="bms_PY"></a><a name="subkey_PY"></a>py <a href="../basic_geometrical_objects.htm"><b>1</b></a> <a href="../complex_objects.htm"><b>2</b></a> <a href="../geometrical_objects.htm"><b>3</b></a> <a href="../transformation_operations.htm"><b>4</b></a> <a href="../repairing_operations.htm"><b>5</b></a> </nobr><br><a href="../repairing_operations.htm"><b>py1</b></a> <br><a href="../files/salome2_sp3_measuregui_functions.htm"><b>python</b></a> <br><br><br></p><p class="ftsbody" align="center"><a href="whlstf10.htm" target="_self" title="previous search group"><b>>></b></a>\r
+<nobr><a name="bms_NU"></a><a name="subkey_NU"></a>number <a href="../explode_on_blocks.htm"><b>1</b></a> <a href="../filling.htm"><b>2</b></a> <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>3</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>4</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>5</b></a> <a href="../files/salome2_sp3_generationgui_functions.htm"><b>6</b></a> <a href="../offset_surface.htm"><b>7</b></a> <a href="../multi_translation.htm"><b>8</b></a> <a href="../multi_transformation.htm"><b>9</b></a> <a href="../multi_rotation.htm"><b>10</b></a> <a href="../isos.htm"><b>11</b></a> <a href="../suppress_holes.htm"><b>12</b></a> <a href="../shape_processing.htm"><b>13</b></a> <a href="../sewing.htm"><b>14</b></a> <a href="../repairing_operations.htm"><b>15</b></a> <a href="../transformation_operations.htm"><b>16</b></a> </nobr><br><nobr>numbers <a href="../files/salome2_sp3_operationgui_functions.htm"><b>1</b></a> <a href="../multi_transformation.htm"><b>2</b></a> </nobr><br><a href="../files/salome2_sp3_operationgui_functions.htm"><b>numeber</b></a> <br>\r
+<br><br>\r
+<nobr><a name="bm_O"></a><a name="subkey_OB"></a>object <a href="../changing_displaying_parameters.htm"><b>1</b></a> <a href="../chamfer.htm"><b>2</b></a> <a href="../archimede.htm"><b>3</b></a> <a href="../face.htm"><b>4</b></a> <a href="../extrusion.htm"><b>5</b></a> <a href="../explode.htm"><b>6</b></a> <a href="../common.htm"><b>7</b></a> <a href="../color.htm"><b>8</b></a> <a href="../geometrical_objects.htm"><b>9</b></a> <a href="../fillet.htm"><b>10</b></a> <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>11</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>12</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>13</b></a> <a href="../files/salome2_sp3_measuregui_functions.htm"><b>14</b></a> <a href="../files/salome2_sp3_geomtoolsgui_functions.htm"><b>15</b></a> <a href="../files/salome2_sp3_generationgui_functions.htm"><b>16</b></a> <a href="../files/salome2_sp3_displaygui_functions.htm"><b>17</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>18</b></a> <a href="../pipe_creation.htm"><b>19</b></a> <a href="../offset_surface.htm"><b>20</b></a> <a href="../multi_rotation.htm"><b>21</b></a> <a href="../modify_the_location.htm"><b>22</b></a> <a href="../mirror_image.htm"><b>23</b></a> <a href="../local_coordinate_system.htm"><b>24</b></a> <a href="../groups.htm"><b>25</b></a> <a href="../rotation.htm"><b>26</b></a> <a href="../revolution.htm"><b>27</b></a> <a href="../repairing_operations.htm"><b>28</b></a> <a href="../propagate.htm"><b>29</b></a> <a href="../working_with_groups.htm"><b>30</b></a> <a href="../wireframe_and_shading.htm"><b>31</b></a> <a href="../wire.htm"><b>32</b></a> <a href="../translation.htm"><b>33</b></a> <a href="../transformation_operations.htm"><b>34</b></a> <a href="../suppress_internal_wires.htm"><b>35</b></a> </nobr><br><nobr>objects <a href="../circle.htm"><b>1</b></a> <a href="../changing_displaying_parameters.htm"><b>2</b></a> <a href="../building_by_blocks.htm"><b>3</b></a> <a href="../boolean_operations.htm"><b>4</b></a> <a href="../blocks_operations.htm"><b>5</b></a> <a href="../basic_operations.htm"><b>6</b></a> <a href="../basic_geometrical_objects.htm"><b>7</b></a> <a href="../arc.htm"><b>8</b></a> <a href="../files/introduction_to_geom.htm"><b>9</b></a> <a href="../face.htm"><b>10</b></a> <a href="../extrusion.htm"><b>11</b></a> <a href="../ellipse.htm"><b>12</b></a> <a href="../edge.htm"><b>13</b></a> <a href="../curve.htm"><b>14</b></a> <a href="../compound.htm"><b>15</b></a> <a href="../complex_objects.htm"><b>16</b></a> <a href="../geometrical_objects.htm"><b>17</b></a> <a href="../filling.htm"><b>18</b></a> <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>19</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>20</b></a> <a href="../files/salome2_sp3_primitivegui_functions.htm"><b>21</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>22</b></a> <a href="../files/salome2_sp3_measuregui_functions.htm"><b>23</b></a> <a href="../files/salome2_sp3_geomtoolsgui_functions.htm"><b>24</b></a> <a href="../files/salome2_sp3_generationgui_functions.htm"><b>25</b></a> <a href="../files/salome2_sp3_displaygui_functions.htm"><b>26</b></a> <a href="../files/salome2_sp3_buildgui_functions.htm"><b>27</b></a> <a href="../files/salome2_sp3_booleangui_functions.htm"><b>28</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>29</b></a> <a href="../point.htm"><b>30</b></a> <a href="../plane.htm"><b>31</b></a> <a href="../pipe_creation.htm"><b>32</b></a> <a href="../offset_surface.htm"><b>33</b></a> <a href="../multi_rotation.htm"><b>34</b></a> <a href="../line.htm"><b>35</b></a> <a href="../groups.htm"><b>36</b></a> <a href="../solid.htm"><b>37</b></a> <a href="../sketcher_tui.htm"><b>38</b></a> <a href="../shell.htm"><b>39</b></a> <a href="../revolution.htm"><b>40</b></a> <a href="../repairing_operations.htm"><b>41</b></a> <a href="../primitives.htm"><b>42</b></a> <a href="../wireframe_and_shading.htm"><b>43</b></a> <a href="../wire.htm"><b>44</b></a> <a href="../vector.htm"><b>45</b></a> <a href="../transformation_operations.htm"><b>46</b></a> </nobr><br><a href="../explode.htm"><b>obtain</b></a> <br><a href="../measurement_tools.htm"><b>obtained</b></a> <br><nobr><a name="bms_OC"></a><a name="subkey_OC"></a>occ <a href="../changing_displaying_parameters.htm"><b>1</b></a> <a href="../chamfer.htm"><b>2</b></a> <a href="../add_point_on_edge.htm"><b>3</b></a> <a href="../close_contour.htm"><b>4</b></a> <a href="../fillet.htm"><b>5</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>6</b></a> <a href="../files/salome2_sp3_displaygui_functions.htm"><b>7</b></a> <a href="../suppress_holes.htm"><b>8</b></a> <a href="../suppress_faces.htm"><b>9</b></a> <a href="../working_with_groups.htm"><b>10</b></a> <a href="../suppress_internal_wires.htm"><b>11</b></a> </nobr><br><nobr>occurred <a href="../check_free_boundaries.htm"><b>1</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>2</b></a> </nobr><br><a name="bms_OF"></a><a name="subkey_OF"></a><a href="../working_with_groups.htm"><b>offers</b></a> <br><nobr>offset <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>1</b></a> <a href="../offset_surface.htm"><b>2</b></a> <a href="../transformation_operations.htm"><b>3</b></a> </nobr><br><nobr><a name="bms_OK"></a><a name="subkey_OK"></a>ok <a href="../files/salome2_sp3_basicgui_functions.htm"><b>1</b></a> <a href="../measurement_tools.htm"><b>2</b></a> <a href="../local_coordinate_system.htm"><b>3</b></a> <a href="../repairing_operations.htm"><b>4</b></a> <a href="../working_with_groups.htm"><b>5</b></a> </nobr><br><a name="bms_OL"></a><a name="subkey_OL"></a><a href="../point.htm"><b>old</b></a> <br><nobr><a name="bms_ON"></a><a name="subkey_ON"></a>one <a href="../add_point_on_edge.htm"><b>1</b></a> <a href="../cut.htm"><b>2</b></a> <a href="../close_contour.htm"><b>3</b></a> <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>4</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>5</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>6</b></a> <a href="../files/salome2_sp3_displaygui_functions.htm"><b>7</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>8</b></a> <a href="../point.htm"><b>9</b></a> <a href="../plane.htm"><b>10</b></a> <a href="../multi_translation.htm"><b>11</b></a> <a href="../multi_transformation.htm"><b>12</b></a> <a href="../multi_rotation.htm"><b>13</b></a> <a href="../modify_the_location.htm"><b>14</b></a> <a href="../sketcher.htm"><b>15</b></a> <a href="../repairing_operations.htm"><b>16</b></a> <a href="../working_plane.htm"><b>17</b></a> <a href="../transformation_operations.htm"><b>18</b></a> </nobr><br><nobr>ones <a href="../files/salome2_sp3_repairgui_functions.htm"><b>1</b></a> <a href="../shape_processing.htm"><b>2</b></a> </nobr><br><a name="bms_OP"></a><a name="subkey_OP"></a><a href="../transparency.htm"><b>opaque</b></a> <br><nobr>open <a href="../check_free_boundaries.htm"><b>1</b></a> <a href="../close_contour.htm"><b>2</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>3</b></a> <a href="../files/salome2_sp3_geomtoolsgui_functions.htm"><b>4</b></a> <a href="../repairing_operations.htm"><b>5</b></a> <a href="../working_with_groups.htm"><b>6</b></a> </nobr><br><a href="../files/salome2_sp3_geomtoolsgui_functions.htm"><b>opening</b></a> <br><nobr>openwires <a href="../check_free_boundaries.htm"><b>1</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>2</b></a> <a href="../repairing_operations.htm"><b>3</b></a> </nobr><br><nobr>operation <a href="../circle.htm"><b>1</b></a> <a href="../check_free_faces.htm"><b>2</b></a> <a href="../check_free_boundaries.htm"><b>3</b></a> <a href="../chamfer.htm"><b>4</b></a> <a href="../box.htm"><b>5</b></a> <a href="../basic_operations.htm"><b>6</b></a> <a href="../archimede.htm"><b>7</b></a> <a href="../arc.htm"><b>8</b></a> <a href="../add_point_on_edge.htm"><b>9</b></a> <a href="../extrusion.htm"><b>10</b></a> <a href="../explode_on_blocks.htm"><b>11</b></a> <a href="../explode.htm"><b>12</b></a> <a href="../ellipse.htm"><b>13</b></a> <a href="../cylinder.htm"><b>14</b></a> <a href="../cut.htm"><b>15</b></a> <a href="../curve.htm"><b>16</b></a> <a href="../cone.htm"><b>17</b></a> <a href="../common.htm"><b>18</b></a> <a href="../close_contour.htm"><b>19</b></a> <a href="../glue_faces.htm"><b>20</b></a> <a href="../fuse.htm"><b>21</b></a> <a href="../filling.htm"><b>22</b></a> <a href="../fillet.htm"><b>23</b></a> <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>24</b></a> <a href="../files/salome2_sp3_displaygui_functions.htm"><b>25</b></a> <a href="../files/salome2_sp3_booleangui_functions.htm"><b>26</b></a> <a href="../point.htm"><b>27</b></a> <a href="../plane.htm"><b>28</b></a> <a href="../pipe_creation.htm"><b>29</b></a> <a href="../partition.htm"><b>30</b></a> <a href="../offset_surface.htm"><b>31</b></a> <a href="../newentity_blocks.htm"><b>32</b></a> <a href="../multi_translation.htm"><b>33</b></a> <a href="../multi_transformation.htm"><b>34</b></a> <a href="../multi_rotation.htm"><b>35</b></a> <a href="../modify_the_location.htm"><b>36</b></a> <a href="../mirror_image.htm"><b>37</b></a> <a href="../line.htm"><b>38</b></a> <a href="../suppress_holes.htm"><b>39</b></a> <a href="../suppress_faces.htm"><b>40</b></a> <a href="../sphere.htm"><b>41</b></a> <a href="../sketcher.htm"><b>42</b></a> <a href="../shape_processing.htm"><b>43</b></a> <a href="../sewing.htm"><b>44</b></a> <a href="../section.htm"><b>45</b></a> <a href="../scale_transform.htm"><b>46</b></a> <a href="../rotation.htm"><b>47</b></a> <a href="../revolution.htm"><b>48</b></a> <a href="../propagate.htm"><b>49</b></a> <a href="../working_with_groups.htm"><b>50</b></a> <a href="../vector.htm"><b>51</b></a> <a href="../turus.htm"><b>52</b></a> <a href="../translation.htm"><b>53</b></a> <a href="../transformation_operations.htm"><b>54</b></a> <a href="../suppress_internal_wires.htm"><b>55</b></a> </nobr><br><nobr>operations <a href="../check_free_faces.htm"><b>1</b></a> <a href="../check_free_boundaries.htm"><b>2</b></a> <a href="../chamfer.htm"><b>3</b></a> <a href="../boolean_operations.htm"><b>4</b></a> <a href="../blocks_operations.htm"><b>5</b></a> <a href="../basic_operations.htm"><b>6</b></a> <a href="../archimede.htm"><b>7</b></a> <a href="../add_point_on_edge.htm"><b>8</b></a> <a href="../files/introduction_to_geom.htm"><b>9</b></a> <a href="../explode_on_blocks.htm"><b>10</b></a> <a href="../cut.htm"><b>11</b></a> <a href="../common.htm"><b>12</b></a> <a href="../close_contour.htm"><b>13</b></a> <a href="../glue_faces.htm"><b>14</b></a> <a href="../fuse.htm"><b>15</b></a> <a href="../fillet.htm"><b>16</b></a> <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>17</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>18</b></a> <a href="../files/salome2_sp3_operationgui_functions.htm"><b>19</b></a> <a href="../files/salome2_sp3_generationgui_functions.htm"><b>20</b></a> <a href="../files/salome2_sp3_displaygui_functions.htm"><b>21</b></a> <a href="../files/salome2_sp3_booleangui_functions.htm"><b>22</b></a> <a href="../partition.htm"><b>23</b></a> <a href="../offset_surface.htm"><b>24</b></a> <a href="../multi_translation.htm"><b>25</b></a> <a href="../multi_transformation.htm"><b>26</b></a> <a href="../multi_rotation.htm"><b>27</b></a> <a href="../modify_the_location.htm"><b>28</b></a> <a href="../mirror_image.htm"><b>29</b></a> <a href="../suppress_holes.htm"><b>30</b></a> <a href="../suppress_faces.htm"><b>31</b></a> <a href="../shape_processing.htm"><b>32</b></a> <a href="../sewing.htm"><b>33</b></a> <a href="../section.htm"><b>34</b></a> <a href="../scale_transform.htm"><b>35</b></a> <a href="../rotation.htm"><b>36</b></a> <a href="../repairing_operations.htm"><b>37</b></a> <a href="../propagate.htm"><b>38</b></a> <a href="../translation.htm"><b>39</b></a> <a href="../transformation_operations.htm"><b>40</b></a> <a href="../suppress_internal_wires.htm"><b>41</b></a> </nobr><br><nobr>operator <a href="../files/salome2_sp3_repairgui_functions.htm"><b>1</b></a> <a href="../shape_processing.htm"><b>2</b></a> </nobr><br><nobr>operators <a href="../files/salome2_sp3_repairgui_functions.htm"><b>1</b></a> <a href="../shape_processing.htm"><b>2</b></a> <a href="../repairing_operations.htm"><b>3</b></a> </nobr><br><a href="../files/salome2_sp3_geomtoolsgui_functions.htm"><b>opportunity</b></a> <br><nobr>opposite <a href="../box.htm"><b>1</b></a> <a href="../files/salome2_sp3_primitivegui_functions.htm"><b>2</b></a> </nobr><br><a href="../files/introduction_to_geom.htm"><b>optimization</b></a> <br><nobr>option <a href="../changing_displaying_parameters.htm"><b>1</b></a> <a href="../wireframe_and_shading.htm"><b>2</b></a> </nobr><br><a href="../blocks.htm"><b>options</b></a> <br><nobr><a name="bms_OR"></a><a name="subkey_OR"></a>order <a href="../files/salome2_sp3_repairgui_functions.htm"><b>1</b></a> <a href="../shape_processing.htm"><b>2</b></a> </nobr><br><nobr>oriented <a href="../files/salome2_sp3_basicgui_functions.htm"><b>1</b></a> <a href="../newentity_blocks.htm"><b>2</b></a> </nobr><br><nobr>origin <a href="../box.htm"><b>1</b></a> <a href="../cylinder.htm"><b>2</b></a> <a href="../cone.htm"><b>3</b></a> <a href="../files/salome2_sp3_primitivegui_functions.htm"><b>4</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>5</b></a> <a href="../local_coordinate_system.htm"><b>6</b></a> <a href="../sphere.htm"><b>7</b></a> <a href="../vector.htm"><b>8</b></a> <a href="../turus.htm"><b>9</b></a> </nobr><br><a name="bms_OS"></a><a name="subkey_OS"></a><a href="../repairing_operations.htm"><b>os</b></a> <br><nobr><a name="bms_OT"></a><a name="subkey_OT"></a>otherwise <a href="../add_point_on_edge.htm"><b>1</b></a> <a href="../close_contour.htm"><b>2</b></a> <a href="../files/salome2_sp3_transformationgui_functions.htm"><b>3</b></a> <a href="../files/salome2_sp3_repairgui_functions.htm"><b>4</b></a> <a href="../modify_the_location.htm"><b>5</b></a> <a href="../mirror_image.htm"><b>6</b></a> <a href="../rotation.htm"><b>7</b></a> <a href="../translation.htm"><b>8</b></a> </nobr><br><nobr><a name="bms_OU"></a><a name="subkey_OU"></a>our <a href="../circle.htm"><b>1</b></a> <a href="../check_free_faces.htm"><b>2</b></a> <a href="../check_free_boundaries.htm"><b>3</b></a> <a href="../chamfer.htm"><b>4</b></a> <a href="../box.htm"><b>5</b></a> <a href="../archimede.htm"><b>6</b></a> <a href="../arc.htm"><b>7</b></a> <a href="../add_point_on_edge.htm"><b>8</b></a> <a href="../face.htm"><b>9</b></a> <a href="../extrusion.htm"><b>10</b></a> <a href="../explode_on_blocks.htm"><b>11</b></a> <a href="../ellipse.htm"><b>12</b></a> <a href="../edge.htm"><b>13</b></a> <a href="../cylinder.htm"><b>14</b></a> <a href="../cut.htm"><b>15</b></a> <a href="../curve.htm"><b>16</b></a> <a href="../cone.htm"><b>17</b></a> <a href="../compound.htm"><b>18</b></a> <a href="../common.htm"><b>19</b></a> <a href="../color.htm"><b>20</b></a> <a href="../close_contour.htm"><b>21</b></a> <a href="../glue_faces.htm"><b>22</b></a> <a href="../fuse.htm"><b>23</b></a> <a href="../filling.htm"><b>24</b></a> <a href="../fillet.htm"><b>25</b></a> <a href="../files/salome2_sp3_measuregui_functions.htm"><b>26</b></a> <a href="../files/salome2_sp3_booleangui_functions.htm"><b>27</b></a> <a href="../point.htm"><b>28</b></a> <a href="../plane.htm"><b>29</b></a> <a href="../pipe_creation.htm"><b>30</b></a> <a href="../partition.htm"><b>31</b></a> <a href="../offset_surface.htm"><b>32</b></a> <a href="../newentity_blocks.htm"><b>33</b></a> <a href="../multi_translation.htm"><b>34</b></a> <a href="../multi_transformation.htm"><b>35</b></a> <a href="../multi_rotation.htm"><b>36</b></a> <a href="../modify_the_location.htm"><b>37</b></a> <a href="../mirror_image.htm"><b>38</b></a> <a href="../line.htm"><b>39</b></a> <a href="../suppress_holes.htm"><b>40</b></a> <a href="../suppress_faces.htm"><b>41</b></a> <a href="../sphere.htm"><b>42</b></a> <a href="../solid.htm"><b>43</b></a> <a href="../sketcher.htm"><b>44</b></a> <a href="../shell.htm"><b>45</b></a> <a href="../shape_processing.htm"><b>46</b></a> <a href="../sewing.htm"><b>47</b></a> <a href="../section.htm"><b>48</b></a> <a href="../scale_transform.htm"><b>49</b></a> <a href="../rotation.htm"><b>50</b></a> <a href="../revolution.htm"><b>51</b></a> <a href="../propagate.htm"><b>52</b></a> <a href="../working_with_groups.htm"><b>53</b></a> <a href="../wireframe_and_shading.htm"><b>54</b></a> <a href="../wire.htm"><b>55</b></a> <a href="../vector.htm"><b>56</b></a> <a href="../turus.htm"><b>57</b></a> <a href="../transparency.htm"><b>58</b></a> <a href="../translation.htm"><b>59</b></a> <a href="../suppress_internal_wires.htm"><b>60</b></a> </nobr><br><nobr>outside <a href="../files/salome2_sp3_operationgui_functions.htm"><b>1</b></a> <a href="../partition.htm"><b>2</b></a> </nobr><br><nobr><a name="bms_OX"></a><a name="subkey_OX"></a>ox <a href="../files/salome2_sp3_basicgui_functions.htm"><b>1</b></a> <a href="../local_coordinate_system.htm"><b>2</b></a> <a href="../sketcher.htm"><b>3</b></a> </nobr><br><nobr><a name="bms_OY"></a><a name="subkey_OY"></a>oy <a href="../files/salome2_sp3_basicgui_functions.htm"><b>1</b></a> <a href="../local_coordinate_system.htm"><b>2</b></a> </nobr><br><nobr><a name="bms_OZ"></a><a name="subkey_OZ"></a>oz <a href="../cylinder.htm"><b>1</b></a> <a href="../cone.htm"><b>2</b></a> <a href="../files/salome2_sp3_basicgui_functions.htm"><b>3</b></a> <a href="../local_coordinate_system.htm"><b>4</b></a> <a href="../sketcher.htm"><b>5</b></a> </nobr><br>\r
+<br><br>\r
+<a name="bm_P"></a><a name="subkey_P{"></a><a href="../primitives.htm"><b>p</b></a> <br><a href="../blocks_operations.htm"><b>p_25_25_50</b></a> <br><a href="../blocks_operations.htm"><b>p_25_50_25</b></a> <br><a href="../blocks_operations.htm"><b>p_50_25_25</b></a> <br><a href="../basic_geometrical_objects.htm"><b>p_on_arc</b></a> <br><nobr>p0 <a href="../basic_operations.htm"><b>1</b></a> <a href="../basic_geometrical_objects.htm"><b>2</b></a> <a href="../complex_objects.htm"><b>3</b></a> <a href="../geometrical_objects.htm"><b>4</b></a> <a href="../groups.htm"><b>5</b></a> <a href="../repairing_operations.htm"><b>6</b></a> <a href="../primitives.htm"><b>7</b></a> <a href="../transformation_operations.htm"><b>8</b></a> </nobr><br><nobr>p1 <a href="../building_by_blocks.htm"><b>1</b></a> <a href="../boolean_operations.htm"><b>2</b></a> <a href="../basic_geometrical_objects.htm"><b>3</b></a> <a href="../complex_objects.htm"><b>4</b></a> <a href="../sketcher_tui.htm"><b>5</b></a> <a href="../repairing_operations.htm"><b>6</b></a> <a href="../primitives.htm"><b>7</b></a> <a href="../transformation_operations.htm"><b>8</b></a> </nobr><br><a href="../building_by_blocks.htm"><b>p10</b></a> <br><a href="../basic_geometrical_objects.htm"><b>p100</b></a> <br><a href="../building_by_blocks.htm"><b>p11</b></a> <br><a href="../building_by_blocks.htm"><b>p12</b></a> <br><a href="../building_by_blocks.htm"><b>p13</b></a> <br><nobr>p2 <a href="../building_by_blocks.htm"><b>1</b></a> <a href="../boolean_operations.htm"><b>2</b></a> <a href="../basic_geometrical_objects.htm"><b>3</b></a> <a href="../complex_objects.htm"><b>4</b></a> <a href="../sketcher_tui.htm"><b>5</b></a> <a href="../repairing_operations.htm"><b>6</b></a> <a href="../primitives.htm"><b>7</b></a> <a href="../transformation_operations.htm"><b>8</b></a> </nobr><br><nobr>p200 <a href="../basic_operations.htm"><b>1</b></a> <a href="../groups.htm"><b>2</b></a> </nobr><br><nobr>p3 <a href="../building_by_blocks.htm"><b>1</b></a> <a href="../basic_geometrical_objects.htm"><b>2</b></a> <a href="../complex_objects.htm"><b>3</b></a> <a href="../sketcher_tui.htm"><b>4</b></a> <a href="../repairing_operations.htm"><b>5</b></a> <a href="../transformation_operations.htm"><b>6</b></a> </nobr><br><nobr>p4 <a href="../building_by_blocks.htm"><b>1</b></a> <a href="../basic_geometrical_objects.htm"><b>2</b></a> <a href="../complex_objects.htm"><b>3</b></a> <a href="../transformation_operations.htm"><b>4</b></a> </nobr><br><nobr>p5 <a href="../building_by_blocks.htm"><b>1</b></a> <a href="../basic_geometrical_objects.htm"><b>2</b></a> <a href="../complex_objects.htm"><b>3</b></a> <a href="../transformation_operations.htm"><b>4</b></a> </nobr><br><a href="../basic_geometrical_objects.htm"><b>p50</b></a> <br><nobr>p6 <a href="../building_by_blocks.htm"><b>1</b></a> <a href="../complex_objects.htm"><b>2</b></a> </nobr><br><nobr>p7 <a href="../building_by_blocks.htm"><b>1</b></a> <a href="../complex_objects.htm"><b>2</b></a> </nobr><br><a href="../primitives.htm"><b>p70</b></a> <br><nobr>p8 <a href="../building_by_blocks.htm"><b>1</b></a> <a href="../complex_objects.htm"><b>2</b></a> </nobr><br><a href="../building_by_blocks.htm"><b>p9</b></a> <br><br><br></p><p class="ftsbody" align="center"><a href="whlstf10.htm" target="_self" title="previous search group"><b>>></b></a>\r
\r
</body>\r
\r
</head>\r
<body marginheight="0" marginwidth="0" bgproperties="fixed">\r
\r
-<p class="ftsheader"><a name="subkey_L"></a> <a href="whnvl32.htm#home" target="_self" title="back to top level"><b>^</b></a> <a href="whlstf6.htm#bm_L" target="ftslist" title="search letter L "><b>L </b></a> <a href="whlstf6.htm#bms_LA" target="ftslist" title="search letter LA"><b>LA</b></a> <a href="whlstf6.htm#bms_LC" target="ftslist" title="search letter LC"><b>LC</b></a> <a href="whlstf6.htm#bms_LE" target="ftslist" title="search letter LE"><b>LE</b></a> <a href="whlstf6.htm#bms_LI" target="ftslist" title="search letter LI"><b>LI</b></a> <a href="whlstf6.htm#bms_LO" target="ftslist" title="search letter LO"><b>LO</b></a> <a href="whlstf6.htm#bms_LY" target="ftslist" title="search letter LY"><b>LY</b></a> <a href="whnvl32.htm#home" target="_self" title="back to top level"><b>^</b></a></p>\r
+<p class="ftsheader"><a name="subkey_L"></a> <a href="whnvl32.htm#home" target="_self" title="back to top level"><b>^</b></a> <a href="whlstf6.htm#bm_L" target="ftslist" title="search letter L "><b>L </b></a> <a href="whlstf6.htm#bms_LA" target="ftslist" title="search letter LA"><b>LA</b></a> <a href="whlstf6.htm#bms_LC" target="ftslist" title="search letter LC"><b>LC</b></a> <a href="whlstf6.htm#bms_LE" target="ftslist" title="search letter LE"><b>LE</b></a> <a href="whlstf6.htm#bms_LI" target="ftslist" title="search letter LI"><b>LI</b></a> <a href="whlstf6.htm#bms_LO" target="ftslist" title="search letter LO"><b>LO</b></a> <a href="whlstf6.htm#bms_LS" target="ftslist" title="search letter LS"><b>LS</b></a> <a href="whlstf6.htm#bms_LY" target="ftslist" title="search letter LY"><b>LY</b></a> <a href="whnvl32.htm#home" target="_self" title="back to top level"><b>^</b></a></p>\r
\r
</body>\r
\r
</head>\r
<body marginheight="0" marginwidth="0" bgproperties="fixed">\r
\r
-<p class="ftsheader"><a name="subkey_M"></a> <a href="whnvl32.htm#home" target="_self" title="back to top level"><b>^</b></a> <a href="whlstf6.htm#bm_M" target="ftslist" title="search letter MA"><b>MA</b></a> <a href="whlstf7.htm#bms_ME" target="ftslist" title="search letter ME"><b>ME</b></a> <a href="whlstf7.htm#bms_MI" target="ftslist" title="search letter MI"><b>MI</b></a> <a href="whlstf7.htm#bms_MO" target="ftslist" title="search letter MO"><b>MO</b></a> <a href="whlstf7.htm#bms_MU" target="ftslist" title="search letter MU"><b>MU</b></a> <a href="whnvl32.htm#home" target="_self" title="back to top level"><b>^</b></a></p>\r
+<p class="ftsheader"><a name="subkey_M"></a> <a href="whnvl32.htm#home" target="_self" title="back to top level"><b>^</b></a> <a href="whlstf7.htm#bm_M" target="ftslist" title="search letter MA"><b>MA</b></a> <a href="whlstf8.htm#bms_ME" target="ftslist" title="search letter ME"><b>ME</b></a> <a href="whlstf8.htm#bms_MI" target="ftslist" title="search letter MI"><b>MI</b></a> <a href="whlstf8.htm#bms_MO" target="ftslist" title="search letter MO"><b>MO</b></a> <a href="whlstf8.htm#bms_MU" target="ftslist" title="search letter MU"><b>MU</b></a> <a href="whnvl32.htm#home" target="_self" title="back to top level"><b>^</b></a></p>\r
\r
</body>\r
\r
</head>\r
<body marginheight="0" marginwidth="0" bgproperties="fixed">\r
\r
-<p class="ftsheader"><a name="subkey_N"></a> <a href="whnvl32.htm#home" target="_self" title="back to top level"><b>^</b></a> <a href="whlstf7.htm#bm_N" target="ftslist" title="search letter NA"><b>NA</b></a> <a href="whlstf7.htm#bms_NB" target="ftslist" title="search letter NB"><b>NB</b></a> <a href="whlstf7.htm#bms_NC" target="ftslist" title="search letter NC"><b>NC</b></a> <a href="whlstf7.htm#bms_NE" target="ftslist" title="search letter NE"><b>NE</b></a> <a href="whlstf7.htm#bms_NI" target="ftslist" title="search letter NI"><b>NI</b></a> <a href="whlstf7.htm#bms_NM" target="ftslist" title="search letter NM"><b>NM</b></a> <a href="whlstf7.htm#bms_NO" target="ftslist" title="search letter NO"><b>NO</b></a> <a href="whlstf8.htm#bms_NU" target="ftslist" title="search letter NU"><b>NU</b></a> <a href="whnvl32.htm#home" target="_self" title="back to top level"><b>^</b></a></p>\r
+<p class="ftsheader"><a name="subkey_N"></a> <a href="whnvl32.htm#home" target="_self" title="back to top level"><b>^</b></a> <a href="whlstf8.htm#bm_N" target="ftslist" title="search letter NA"><b>NA</b></a> <a href="whlstf8.htm#bms_NB" target="ftslist" title="search letter NB"><b>NB</b></a> <a href="whlstf8.htm#bms_NC" target="ftslist" title="search letter NC"><b>NC</b></a> <a href="whlstf8.htm#bms_NE" target="ftslist" title="search letter NE"><b>NE</b></a> <a href="whlstf8.htm#bms_NI" target="ftslist" title="search letter NI"><b>NI</b></a> <a href="whlstf8.htm#bms_NM" target="ftslist" title="search letter NM"><b>NM</b></a> <a href="whlstf8.htm#bms_NO" target="ftslist" title="search letter NO"><b>NO</b></a> <a href="whlstf9.htm#bms_NU" target="ftslist" title="search letter NU"><b>NU</b></a> <a href="whnvl32.htm#home" target="_self" title="back to top level"><b>^</b></a></p>\r
\r
</body>\r
\r
</head>\r
<body marginheight="0" marginwidth="0" bgproperties="fixed">\r
\r
-<p class="ftsheader"><a name="subkey_O"></a> <a href="whnvl32.htm#home" target="_self" title="back to top level"><b>^</b></a> <a href="whlstf8.htm#bm_O" target="ftslist" title="search letter OB"><b>OB</b></a> <a href="whlstf8.htm#bms_OC" target="ftslist" title="search letter OC"><b>OC</b></a> <a href="whlstf8.htm#bms_OF" target="ftslist" title="search letter OF"><b>OF</b></a> <a href="whlstf8.htm#bms_OK" target="ftslist" title="search letter OK"><b>OK</b></a> <a href="whlstf8.htm#bms_OL" target="ftslist" title="search letter OL"><b>OL</b></a> <a href="whlstf8.htm#bms_ON" target="ftslist" title="search letter ON"><b>ON</b></a> <a href="whlstf8.htm#bms_OP" target="ftslist" title="search letter OP"><b>OP</b></a> <a href="whlstf8.htm#bms_OR" target="ftslist" title="search letter OR"><b>OR</b></a> <a href="whlstf8.htm#bms_OT" target="ftslist" title="search letter OT"><b>OT</b></a> <a href="whlstf8.htm#bms_OU" target="ftslist" title="search letter OU"><b>OU</b></a> <a href="whlstf8.htm#bms_OX" target="ftslist" title="search letter OX"><b>OX</b></a> <a href="whlstf8.htm#bms_OY" target="ftslist" title="search letter OY"><b>OY</b></a> <a href="whlstf8.htm#bms_OZ" target="ftslist" title="search letter OZ"><b>OZ</b></a> <a href="whnvl32.htm#home" target="_self" title="back to top level"><b>^</b></a></p>\r
+<p class="ftsheader"><a name="subkey_O"></a> <a href="whnvl32.htm#home" target="_self" title="back to top level"><b>^</b></a> <a href="whlstf9.htm#bm_O" target="ftslist" title="search letter OB"><b>OB</b></a> <a href="whlstf9.htm#bms_OC" target="ftslist" title="search letter OC"><b>OC</b></a> <a href="whlstf9.htm#bms_OF" target="ftslist" title="search letter OF"><b>OF</b></a> <a href="whlstf9.htm#bms_OK" target="ftslist" title="search letter OK"><b>OK</b></a> <a href="whlstf9.htm#bms_OL" target="ftslist" title="search letter OL"><b>OL</b></a> <a href="whlstf9.htm#bms_ON" target="ftslist" title="search letter ON"><b>ON</b></a> <a href="whlstf9.htm#bms_OP" target="ftslist" title="search letter OP"><b>OP</b></a> <a href="whlstf9.htm#bms_OR" target="ftslist" title="search letter OR"><b>OR</b></a> <a href="whlstf9.htm#bms_OS" target="ftslist" title="search letter OS"><b>OS</b></a> <a href="whlstf9.htm#bms_OT" target="ftslist" title="search letter OT"><b>OT</b></a> <a href="whlstf9.htm#bms_OU" target="ftslist" title="search letter OU"><b>OU</b></a> <a href="whlstf9.htm#bms_OX" target="ftslist" title="search letter OX"><b>OX</b></a> <a href="whlstf9.htm#bms_OY" target="ftslist" title="search letter OY"><b>OY</b></a> <a href="whlstf9.htm#bms_OZ" target="ftslist" title="search letter OZ"><b>OZ</b></a> <a href="whnvl32.htm#home" target="_self" title="back to top level"><b>^</b></a></p>\r
\r
</body>\r
\r
</head>\r
<body marginheight="0" marginwidth="0" bgproperties="fixed">\r
\r
-<p class="ftsheader"><a name="subkey_P"></a> <a href="whnvl32.htm#home" target="_self" title="back to top level"><b>^</b></a> <a href="whlstf8.htm#bm_P" target="ftslist" title="search letter P "><b>P </b></a> <a href="whlstf9.htm#bms_PA" target="ftslist" title="search letter PA"><b>PA</b></a> <a href="whlstf9.htm#bms_PE" target="ftslist" title="search letter PE"><b>PE</b></a> <a href="whlstf9.htm#bms_PI" target="ftslist" title="search letter PI"><b>PI</b></a> <a href="whlstf9.htm#bms_PL" target="ftslist" title="search letter PL"><b>PL</b></a> <a href="whlstf9.htm#bms_PO" target="ftslist" title="search letter PO"><b>PO</b></a> <a href="whlstf9.htm#bms_PR" target="ftslist" title="search letter PR"><b>PR</b></a> <a href="whlstf9.htm#bms_PS" target="ftslist" title="search letter PS"><b>PS</b></a> <a href="whlstf9.htm#bms_PU" target="ftslist" title="search letter PU"><b>PU</b></a> <a href="whlstf9.htm#bms_PX" target="ftslist" title="search letter PX"><b>PX</b></a> <a href="whlstf9.htm#bms_PY" target="ftslist" title="search letter PY"><b>PY</b></a> <a href="whlstf10.htm#bms_PZ" target="ftslist" title="search letter PZ"><b>PZ</b></a> <a href="whnvl32.htm#home" target="_self" title="back to top level"><b>^</b></a></p>\r
+<p class="ftsheader"><a name="subkey_P"></a> <a href="whnvl32.htm#home" target="_self" title="back to top level"><b>^</b></a> <a href="whlstf9.htm#bm_P" target="ftslist" title="search letter P "><b>P </b></a> <a href="whlstf10.htm#bms_PA" target="ftslist" title="search letter PA"><b>PA</b></a> <a href="whlstf10.htm#bms_PE" target="ftslist" title="search letter PE"><b>PE</b></a> <a href="whlstf10.htm#bms_PI" target="ftslist" title="search letter PI"><b>PI</b></a> <a href="whlstf10.htm#bms_PL" target="ftslist" title="search letter PL"><b>PL</b></a> <a href="whlstf10.htm#bms_PO" target="ftslist" title="search letter PO"><b>PO</b></a> <a href="whlstf10.htm#bms_PR" target="ftslist" title="search letter PR"><b>PR</b></a> <a href="whlstf10.htm#bms_PS" target="ftslist" title="search letter PS"><b>PS</b></a> <a href="whlstf10.htm#bms_PU" target="ftslist" title="search letter PU"><b>PU</b></a> <a href="whlstf10.htm#bms_PX" target="ftslist" title="search letter PX"><b>PX</b></a> <a href="whlstf11.htm#bms_PY" target="ftslist" title="search letter PY"><b>PY</b></a> <a href="whlstf11.htm#bms_PZ" target="ftslist" title="search letter PZ"><b>PZ</b></a> <a href="whnvl32.htm#home" target="_self" title="back to top level"><b>^</b></a></p>\r
\r
</body>\r
\r
</head>\r
<body marginheight="0" marginwidth="0" bgproperties="fixed">\r
\r
-<p class="ftsheader"><a name="subkey_Q"></a> <a href="whnvl32.htm#home" target="_self" title="back to top level"><b>^</b></a> <a href="whlstf10.htm#bm_Q" target="ftslist" title="search letter QF"><b>QF</b></a> <a href="whlstf10.htm#bms_QU" target="ftslist" title="search letter QU"><b>QU</b></a> <a href="whnvl32.htm#home" target="_self" title="back to top level"><b>^</b></a></p>\r
+<p class="ftsheader"><a name="subkey_Q"></a> <a href="whnvl32.htm#home" target="_self" title="back to top level"><b>^</b></a> <a href="whlstf11.htm#bm_Q" target="ftslist" title="search letter QF"><b>QF</b></a> <a href="whlstf11.htm#bms_QU" target="ftslist" title="search letter QU"><b>QU</b></a> <a href="whnvl32.htm#home" target="_self" title="back to top level"><b>^</b></a></p>\r
\r
</body>\r
\r
</head>\r
<body marginheight="0" marginwidth="0" bgproperties="fixed">\r
\r
-<p class="ftsheader"><a name="subkey_R"></a> <a href="whnvl32.htm#home" target="_self" title="back to top level"><b>^</b></a> <a href="whlstf10.htm#bm_R" target="ftslist" title="search letter R "><b>R </b></a> <a href="whlstf10.htm#bms_RA" target="ftslist" title="search letter RA"><b>RA</b></a> <a href="whlstf10.htm#bms_RE" target="ftslist" title="search letter RE"><b>RE</b></a> <a href="whlstf10.htm#bms_RI" target="ftslist" title="search letter RI"><b>RI</b></a> <a href="whlstf10.htm#bms_RO" target="ftslist" title="search letter RO"><b>RO</b></a> <a href="whlstf10.htm#bms_RU" target="ftslist" title="search letter RU"><b>RU</b></a> <a href="whnvl32.htm#home" target="_self" title="back to top level"><b>^</b></a></p>\r
+<p class="ftsheader"><a name="subkey_R"></a> <a href="whnvl32.htm#home" target="_self" title="back to top level"><b>^</b></a> <a href="whlstf11.htm#bm_R" target="ftslist" title="search letter R "><b>R </b></a> <a href="whlstf11.htm#bms_RA" target="ftslist" title="search letter RA"><b>RA</b></a> <a href="whlstf11.htm#bms_RE" target="ftslist" title="search letter RE"><b>RE</b></a> <a href="whlstf11.htm#bms_RI" target="ftslist" title="search letter RI"><b>RI</b></a> <a href="whlstf11.htm#bms_RO" target="ftslist" title="search letter RO"><b>RO</b></a> <a href="whlstf11.htm#bms_RU" target="ftslist" title="search letter RU"><b>RU</b></a> <a href="whnvl32.htm#home" target="_self" title="back to top level"><b>^</b></a></p>\r
\r
</body>\r
\r
</head>\r
<body marginheight="0" marginwidth="0" bgproperties="fixed">\r
\r
-<p class="ftsheader"><a name="subkey_S"></a> <a href="whnvl32.htm#home" target="_self" title="back to top level"><b>^</b></a> <a href="whlstf10.htm#bm_S" target="ftslist" title="search letter S "><b>S </b></a> <a href="whlstf10.htm#bms_SA" target="ftslist" title="search letter SA"><b>SA</b></a> <a href="whlstf10.htm#bms_SC" target="ftslist" title="search letter SC"><b>SC</b></a> <a href="whlstf11.htm#bms_SE" target="ftslist" title="search letter SE"><b>SE</b></a> <a href="whlstf11.htm#bms_SG" target="ftslist" title="search letter SG"><b>SG</b></a> <a href="whlstf11.htm#bms_SH" target="ftslist" title="search letter SH"><b>SH</b></a> <a href="whlstf11.htm#bms_SI" target="ftslist" title="search letter SI"><b>SI</b></a> <a href="whlstf11.htm#bms_SK" target="ftslist" title="search letter SK"><b>SK</b></a> <a href="whlstf11.htm#bms_SM" target="ftslist" title="search letter SM"><b>SM</b></a> <a href="whlstf11.htm#bms_SO" target="ftslist" title="search letter SO"><b>SO</b></a> <a href="whlstf11.htm#bms_SP" target="ftslist" title="search letter SP"><b>SP</b></a> <a href="whlstf12.htm#bms_SQ" target="ftslist" title="search letter SQ"><b>SQ</b></a> <a href="whlstf12.htm#bms_ST" target="ftslist" title="search letter ST"><b>ST</b></a> <a href="whlstf12.htm#bms_SU" target="ftslist" title="search letter SU"><b>SU</b></a> <a href="whlstf12.htm#bms_SY" target="ftslist" title="search letter SY"><b>SY</b></a> <a href="whnvl32.htm#home" target="_self" title="back to top level"><b>^</b></a></p>\r
+<p class="ftsheader"><a name="subkey_S"></a> <a href="whnvl32.htm#home" target="_self" title="back to top level"><b>^</b></a> <a href="whlstf11.htm#bm_S" target="ftslist" title="search letter S "><b>S </b></a> <a href="whlstf11.htm#bms_SA" target="ftslist" title="search letter SA"><b>SA</b></a> <a href="whlstf11.htm#bms_SC" target="ftslist" title="search letter SC"><b>SC</b></a> <a href="whlstf12.htm#bms_SE" target="ftslist" title="search letter SE"><b>SE</b></a> <a href="whlstf12.htm#bms_SG" target="ftslist" title="search letter SG"><b>SG</b></a> <a href="whlstf12.htm#bms_SH" target="ftslist" title="search letter SH"><b>SH</b></a> <a href="whlstf12.htm#bms_SI" target="ftslist" title="search letter SI"><b>SI</b></a> <a href="whlstf12.htm#bms_SK" target="ftslist" title="search letter SK"><b>SK</b></a> <a href="whlstf12.htm#bms_SM" target="ftslist" title="search letter SM"><b>SM</b></a> <a href="whlstf12.htm#bms_SO" target="ftslist" title="search letter SO"><b>SO</b></a> <a href="whlstf13.htm#bms_SP" target="ftslist" title="search letter SP"><b>SP</b></a> <a href="whlstf13.htm#bms_SQ" target="ftslist" title="search letter SQ"><b>SQ</b></a> <a href="whlstf13.htm#bms_ST" target="ftslist" title="search letter ST"><b>ST</b></a> <a href="whlstf13.htm#bms_SU" target="ftslist" title="search letter SU"><b>SU</b></a> <a href="whlstf13.htm#bms_SY" target="ftslist" title="search letter SY"><b>SY</b></a> <a href="whnvl32.htm#home" target="_self" title="back to top level"><b>^</b></a></p>\r
\r
</body>\r
\r
</head>\r
<body marginheight="0" marginwidth="0" bgproperties="fixed">\r
\r
-<p class="ftsheader"><a name="subkey_T"></a> <a href="whnvl32.htm#home" target="_self" title="back to top level"><b>^</b></a> <a href="whlstf12.htm#bm_T" target="ftslist" title="search letter T "><b>T </b></a> <a href="whlstf12.htm#bms_TA" target="ftslist" title="search letter TA"><b>TA</b></a> <a href="whlstf12.htm#bms_TE" target="ftslist" title="search letter TE"><b>TE</b></a> <a href="whlstf12.htm#bms_TH" target="ftslist" title="search letter TH"><b>TH</b></a> <a href="whlstf12.htm#bms_TI" target="ftslist" title="search letter TI"><b>TI</b></a> <a href="whlstf12.htm#bms_TM" target="ftslist" title="search letter TM"><b>TM</b></a> <a href="whlstf12.htm#bms_TO" target="ftslist" title="search letter TO"><b>TO</b></a> <a href="whlstf12.htm#bms_TR" target="ftslist" title="search letter TR"><b>TR</b></a> <a href="whlstf12.htm#bms_TT" target="ftslist" title="search letter TT"><b>TT</b></a> <a href="whlstf13.htm#bms_TU" target="ftslist" title="search letter TU"><b>TU</b></a> <a href="whlstf13.htm#bms_TW" target="ftslist" title="search letter TW"><b>TW</b></a> <a href="whlstf13.htm#bms_TY" target="ftslist" title="search letter TY"><b>TY</b></a> <a href="whnvl32.htm#home" target="_self" title="back to top level"><b>^</b></a></p>\r
+<p class="ftsheader"><a name="subkey_T"></a> <a href="whnvl32.htm#home" target="_self" title="back to top level"><b>^</b></a> <a href="whlstf13.htm#bm_T" target="ftslist" title="search letter T "><b>T </b></a> <a href="whlstf13.htm#bms_TA" target="ftslist" title="search letter TA"><b>TA</b></a> <a href="whlstf13.htm#bms_TE" target="ftslist" title="search letter TE"><b>TE</b></a> <a href="whlstf13.htm#bms_TH" target="ftslist" title="search letter TH"><b>TH</b></a> <a href="whlstf13.htm#bms_TI" target="ftslist" title="search letter TI"><b>TI</b></a> <a href="whlstf13.htm#bms_TO" target="ftslist" title="search letter TO"><b>TO</b></a> <a href="whlstf13.htm#bms_TR" target="ftslist" title="search letter TR"><b>TR</b></a> <a href="whlstf14.htm#bms_TT" target="ftslist" title="search letter TT"><b>TT</b></a> <a href="whlstf14.htm#bms_TU" target="ftslist" title="search letter TU"><b>TU</b></a> <a href="whlstf14.htm#bms_TW" target="ftslist" title="search letter TW"><b>TW</b></a> <a href="whlstf14.htm#bms_TY" target="ftslist" title="search letter TY"><b>TY</b></a> <a href="whnvl32.htm#home" target="_self" title="back to top level"><b>^</b></a></p>\r
\r
</body>\r
\r
</head>\r
<body marginheight="0" marginwidth="0" bgproperties="fixed">\r
\r
-<p class="ftsheader"><a name="subkey_B"></a> <a href="whnvl32.htm#home" target="_self" title="back to top level"><b>^</b></a> <a href="whlstf0.htm#bm_B" target="ftslist" title="search letter B "><b>B </b></a> <a href="whlstf0.htm#bms_BA" target="ftslist" title="search letter BA"><b>BA</b></a> <a href="whlstf0.htm#bms_BB" target="ftslist" title="search letter BB"><b>BB</b></a> <a href="whlstf1.htm#bms_BE" target="ftslist" title="search letter BE"><b>BE</b></a> <a href="whlstf1.htm#bms_BL" target="ftslist" title="search letter BL"><b>BL</b></a> <a href="whlstf1.htm#bms_BO" target="ftslist" title="search letter BO"><b>BO</b></a> <a href="whlstf1.htm#bms_BR" target="ftslist" title="search letter BR"><b>BR</b></a> <a href="whlstf1.htm#bms_BS" target="ftslist" title="search letter BS"><b>BS</b></a> <a href="whlstf1.htm#bms_BU" target="ftslist" title="search letter BU"><b>BU</b></a> <a href="whlstf1.htm#bms_BY" target="ftslist" title="search letter BY"><b>BY</b></a> <a href="whnvl32.htm#home" target="_self" title="back to top level"><b>^</b></a></p>\r
+<p class="ftsheader"><a name="subkey_B"></a> <a href="whnvl32.htm#home" target="_self" title="back to top level"><b>^</b></a> <a href="whlstf0.htm#bm_B" target="ftslist" title="search letter B "><b>B </b></a> <a href="whlstf0.htm#bms_BA" target="ftslist" title="search letter BA"><b>BA</b></a> <a href="whlstf1.htm#bms_BB" target="ftslist" title="search letter BB"><b>BB</b></a> <a href="whlstf1.htm#bms_BE" target="ftslist" title="search letter BE"><b>BE</b></a> <a href="whlstf1.htm#bms_BI" target="ftslist" title="search letter BI"><b>BI</b></a> <a href="whlstf1.htm#bms_BL" target="ftslist" title="search letter BL"><b>BL</b></a> <a href="whlstf1.htm#bms_BO" target="ftslist" title="search letter BO"><b>BO</b></a> <a href="whlstf1.htm#bms_BR" target="ftslist" title="search letter BR"><b>BR</b></a> <a href="whlstf1.htm#bms_BS" target="ftslist" title="search letter BS"><b>BS</b></a> <a href="whlstf1.htm#bms_BU" target="ftslist" title="search letter BU"><b>BU</b></a> <a href="whlstf1.htm#bms_BY" target="ftslist" title="search letter BY"><b>BY</b></a> <a href="whnvl32.htm#home" target="_self" title="back to top level"><b>^</b></a></p>\r
\r
</body>\r
\r
</head>\r
<body marginheight="0" marginwidth="0" bgproperties="fixed">\r
\r
-<p class="ftsheader"><a name="subkey_U"></a> <a href="whnvl32.htm#home" target="_self" title="back to top level"><b>^</b></a> <a href="whlstf13.htm#bm_U" target="ftslist" title="search letter UN"><b>UN</b></a> <a href="whlstf13.htm#bms_UP" target="ftslist" title="search letter UP"><b>UP</b></a> <a href="whlstf13.htm#bms_US" target="ftslist" title="search letter US"><b>US</b></a> <a href="whnvl32.htm#home" target="_self" title="back to top level"><b>^</b></a></p>\r
+<p class="ftsheader"><a name="subkey_U"></a> <a href="whnvl32.htm#home" target="_self" title="back to top level"><b>^</b></a> <a href="whlstf14.htm#bm_U" target="ftslist" title="search letter UN"><b>UN</b></a> <a href="whlstf14.htm#bms_UP" target="ftslist" title="search letter UP"><b>UP</b></a> <a href="whlstf14.htm#bms_US" target="ftslist" title="search letter US"><b>US</b></a> <a href="whnvl32.htm#home" target="_self" title="back to top level"><b>^</b></a></p>\r
\r
</body>\r
\r
</head>\r
<body marginheight="0" marginwidth="0" bgproperties="fixed">\r
\r
-<p class="ftsheader"><a name="subkey_V"></a> <a href="whnvl32.htm#home" target="_self" title="back to top level"><b>^</b></a> <a href="whlstf13.htm#bm_V" target="ftslist" title="search letter V "><b>V </b></a> <a href="whlstf13.htm#bms_VA" target="ftslist" title="search letter VA"><b>VA</b></a> <a href="whlstf13.htm#bms_VE" target="ftslist" title="search letter VE"><b>VE</b></a> <a href="whlstf13.htm#bms_VI" target="ftslist" title="search letter VI"><b>VI</b></a> <a href="whlstf14.htm#bms_VO" target="ftslist" title="search letter VO"><b>VO</b></a> <a href="whlstf14.htm#bms_VR" target="ftslist" title="search letter VR"><b>VR</b></a> <a href="whlstf14.htm#bms_VT" target="ftslist" title="search letter VT"><b>VT</b></a> <a href="whlstf14.htm#bms_VX" target="ftslist" title="search letter VX"><b>VX</b></a> <a href="whlstf14.htm#bms_VZ" target="ftslist" title="search letter VZ"><b>VZ</b></a> <a href="whnvl32.htm#home" target="_self" title="back to top level"><b>^</b></a></p>\r
+<p class="ftsheader"><a name="subkey_V"></a> <a href="whnvl32.htm#home" target="_self" title="back to top level"><b>^</b></a> <a href="whlstf14.htm#bm_V" target="ftslist" title="search letter V "><b>V </b></a> <a href="whlstf14.htm#bms_VA" target="ftslist" title="search letter VA"><b>VA</b></a> <a href="whlstf14.htm#bms_VE" target="ftslist" title="search letter VE"><b>VE</b></a> <a href="whlstf14.htm#bms_VI" target="ftslist" title="search letter VI"><b>VI</b></a> <a href="whlstf15.htm#bms_VO" target="ftslist" title="search letter VO"><b>VO</b></a> <a href="whlstf15.htm#bms_VR" target="ftslist" title="search letter VR"><b>VR</b></a> <a href="whlstf15.htm#bms_VT" target="ftslist" title="search letter VT"><b>VT</b></a> <a href="whlstf15.htm#bms_VX" target="ftslist" title="search letter VX"><b>VX</b></a> <a href="whlstf15.htm#bms_VZ" target="ftslist" title="search letter VZ"><b>VZ</b></a> <a href="whnvl32.htm#home" target="_self" title="back to top level"><b>^</b></a></p>\r
\r
</body>\r
\r
</head>\r
<body marginheight="0" marginwidth="0" bgproperties="fixed">\r
\r
-<p class="ftsheader"><a name="subkey_W"></a> <a href="whnvl32.htm#home" target="_self" title="back to top level"><b>^</b></a> <a href="whlstf14.htm#bm_W" target="ftslist" title="search letter W "><b>W </b></a> <a href="whlstf14.htm#bms_WA" target="ftslist" title="search letter WA"><b>WA</b></a> <a href="whlstf14.htm#bms_WE" target="ftslist" title="search letter WE"><b>WE</b></a> <a href="whlstf14.htm#bms_WF" target="ftslist" title="search letter WF"><b>WF</b></a> <a href="whlstf14.htm#bms_WH" target="ftslist" title="search letter WH"><b>WH</b></a> <a href="whlstf14.htm#bms_WI" target="ftslist" title="search letter WI"><b>WI</b></a> <a href="whlstf14.htm#bms_WO" target="ftslist" title="search letter WO"><b>WO</b></a> <a href="whlstf14.htm#bms_WW" target="ftslist" title="search letter WW"><b>WW</b></a> <a href="whnvl32.htm#home" target="_self" title="back to top level"><b>^</b></a></p>\r
+<p class="ftsheader"><a name="subkey_W"></a> <a href="whnvl32.htm#home" target="_self" title="back to top level"><b>^</b></a> <a href="whlstf15.htm#bm_W" target="ftslist" title="search letter W "><b>W </b></a> <a href="whlstf15.htm#bms_WA" target="ftslist" title="search letter WA"><b>WA</b></a> <a href="whlstf15.htm#bms_WE" target="ftslist" title="search letter WE"><b>WE</b></a> <a href="whlstf15.htm#bms_WF" target="ftslist" title="search letter WF"><b>WF</b></a> <a href="whlstf15.htm#bms_WH" target="ftslist" title="search letter WH"><b>WH</b></a> <a href="whlstf15.htm#bms_WI" target="ftslist" title="search letter WI"><b>WI</b></a> <a href="whlstf15.htm#bms_WO" target="ftslist" title="search letter WO"><b>WO</b></a> <a href="whlstf15.htm#bms_WW" target="ftslist" title="search letter WW"><b>WW</b></a> <a href="whnvl32.htm#home" target="_self" title="back to top level"><b>^</b></a></p>\r
\r
</body>\r
\r
</head>\r
<body marginheight="0" marginwidth="0" bgproperties="fixed">\r
\r
-<p class="ftsheader"><a name="subkey_X"></a> <a href="whnvl32.htm#home" target="_self" title="back to top level"><b>^</b></a> <a href="whlstf14.htm#bm_X" target="ftslist" title="search letter X "><b>X </b></a> <a href="whlstf14.htm#bms_XD" target="ftslist" title="search letter XD"><b>XD</b></a> <a href="whlstf14.htm#bms_XM" target="ftslist" title="search letter XM"><b>XM</b></a> <a href="whlstf14.htm#bms_XO" target="ftslist" title="search letter XO"><b>XO</b></a> <a href="whlstf14.htm#bms_XY" target="ftslist" title="search letter XY"><b>XY</b></a> <a href="whlstf14.htm#bms_XZ" target="ftslist" title="search letter XZ"><b>XZ</b></a> <a href="whnvl32.htm#home" target="_self" title="back to top level"><b>^</b></a></p>\r
+<p class="ftsheader"><a name="subkey_X"></a> <a href="whnvl32.htm#home" target="_self" title="back to top level"><b>^</b></a> <a href="whlstf15.htm#bm_X" target="ftslist" title="search letter X "><b>X </b></a> <a href="whlstf15.htm#bms_XD" target="ftslist" title="search letter XD"><b>XD</b></a> <a href="whlstf15.htm#bms_XM" target="ftslist" title="search letter XM"><b>XM</b></a> <a href="whlstf15.htm#bms_XO" target="ftslist" title="search letter XO"><b>XO</b></a> <a href="whlstf15.htm#bms_XY" target="ftslist" title="search letter XY"><b>XY</b></a> <a href="whlstf15.htm#bms_XZ" target="ftslist" title="search letter XZ"><b>XZ</b></a> <a href="whnvl32.htm#home" target="_self" title="back to top level"><b>^</b></a></p>\r
\r
</body>\r
\r
</head>\r
<body marginheight="0" marginwidth="0" bgproperties="fixed">\r
\r
-<p class="ftsheader"><a name="subkey_Y"></a> <a href="whnvl32.htm#home" target="_self" title="back to top level"><b>^</b></a> <a href="whlstf14.htm#bm_Y" target="ftslist" title="search letter Y "><b>Y </b></a> <a href="whlstf14.htm#bms_YD" target="ftslist" title="search letter YD"><b>YD</b></a> <a href="whlstf14.htm#bms_YM" target="ftslist" title="search letter YM"><b>YM</b></a> <a href="whlstf14.htm#bms_YO" target="ftslist" title="search letter YO"><b>YO</b></a> <a href="whlstf14.htm#bms_YZ" target="ftslist" title="search letter YZ"><b>YZ</b></a> <a href="whnvl32.htm#home" target="_self" title="back to top level"><b>^</b></a></p>\r
+<p class="ftsheader"><a name="subkey_Y"></a> <a href="whnvl32.htm#home" target="_self" title="back to top level"><b>^</b></a> <a href="whlstf15.htm#bm_Y" target="ftslist" title="search letter Y "><b>Y </b></a> <a href="whlstf15.htm#bms_YD" target="ftslist" title="search letter YD"><b>YD</b></a> <a href="whlstf15.htm#bms_YM" target="ftslist" title="search letter YM"><b>YM</b></a> <a href="whlstf15.htm#bms_YO" target="ftslist" title="search letter YO"><b>YO</b></a> <a href="whlstf15.htm#bms_YZ" target="ftslist" title="search letter YZ"><b>YZ</b></a> <a href="whnvl32.htm#home" target="_self" title="back to top level"><b>^</b></a></p>\r
\r
</body>\r
\r
</head>\r
<body marginheight="0" marginwidth="0" bgproperties="fixed">\r
\r
-<p class="ftsheader"><a name="subkey_Z"></a> <a href="whnvl32.htm#home" target="_self" title="back to top level"><b>^</b></a> <a href="whlstf14.htm#bm_Z" target="ftslist" title="search letter Z "><b>Z </b></a> <a href="whlstf14.htm#bms_ZE" target="ftslist" title="search letter ZE"><b>ZE</b></a> <a href="whlstf14.htm#bms_ZM" target="ftslist" title="search letter ZM"><b>ZM</b></a> <a href="whnvl32.htm#home" target="_self" title="back to top level"><b>^</b></a></p>\r
+<p class="ftsheader"><a name="subkey_Z"></a> <a href="whnvl32.htm#home" target="_self" title="back to top level"><b>^</b></a> <a href="whlstf15.htm#bm_Z" target="ftslist" title="search letter Z "><b>Z </b></a> <a href="whlstf15.htm#bms_ZE" target="ftslist" title="search letter ZE"><b>ZE</b></a> <a href="whlstf15.htm#bms_ZM" target="ftslist" title="search letter ZM"><b>ZM</b></a> <a href="whnvl32.htm#home" target="_self" title="back to top level"><b>^</b></a></p>\r
\r
</body>\r
\r
</head>\r
<body marginheight="0" marginwidth="0" bgproperties="fixed">\r
\r
-<p class="ftsheader"><a name="subkey_I"></a> <a href="whnvl32.htm#home" target="_self" title="back to top level"><b>^</b></a> <a href="whlstf5.htm#bm_I" target="ftslist" title="search letter I "><b>I </b></a> <a href="whlstf5.htm#bms_ID" target="ftslist" title="search letter ID"><b>ID</b></a> <a href="whlstf6.htm#bms_IF" target="ftslist" title="search letter IF"><b>IF</b></a> <a href="whlstf6.htm#bms_IG" target="ftslist" title="search letter IG"><b>IG</b></a> <a href="whlstf6.htm#bms_IM" target="ftslist" title="search letter IM"><b>IM</b></a> <a href="whlstf6.htm#bms_IN" target="ftslist" title="search letter IN"><b>IN</b></a> <a href="whlstf6.htm#bms_IO" target="ftslist" title="search letter IO"><b>IO</b></a> <a href="whlstf6.htm#bms_IS" target="ftslist" title="search letter IS"><b>IS</b></a> <a href="whlstf6.htm#bms_IT" target="ftslist" title="search letter IT"><b>IT</b></a> <a href="whlstf6.htm#bms_IX" target="ftslist" title="search letter IX"><b>IX</b></a> <a href="whlstf6.htm#bms_IY" target="ftslist" title="search letter IY"><b>IY</b></a> <a href="whlstf6.htm#bms_IZ" target="ftslist" title="search letter IZ"><b>IZ</b></a> <a href="whnvl32.htm#home" target="_self" title="back to top level"><b>^</b></a></p>\r
+<p class="ftsheader"><a name="subkey_I"></a> <a href="whnvl32.htm#home" target="_self" title="back to top level"><b>^</b></a> <a href="whlstf5.htm#bm_I" target="ftslist" title="search letter I "><b>I </b></a> <a href="whlstf5.htm#bms_ID" target="ftslist" title="search letter ID"><b>ID</b></a> <a href="whlstf6.htm#bms_IF" target="ftslist" title="search letter IF"><b>IF</b></a> <a href="whlstf6.htm#bms_IG" target="ftslist" title="search letter IG"><b>IG</b></a> <a href="whlstf6.htm#bms_IM" target="ftslist" title="search letter IM"><b>IM</b></a> <a href="whlstf6.htm#bms_IN" target="ftslist" title="search letter IN"><b>IN</b></a> <a href="whlstf6.htm#bms_IS" target="ftslist" title="search letter IS"><b>IS</b></a> <a href="whlstf6.htm#bms_IT" target="ftslist" title="search letter IT"><b>IT</b></a> <a href="whlstf6.htm#bms_IX" target="ftslist" title="search letter IX"><b>IX</b></a> <a href="whlstf6.htm#bms_IY" target="ftslist" title="search letter IY"><b>IY</b></a> <a href="whlstf6.htm#bms_IZ" target="ftslist" title="search letter IZ"><b>IZ</b></a> <a href="whnvl32.htm#home" target="_self" title="back to top level"><b>^</b></a></p>\r
\r
</body>\r
\r
<p class="tocbody">\r
<nobr><a name="1"></a><a href="whlstt0.htm#1" target="_self"><img src="../wht_toc2.gif" border="0" align="absmiddle"> GEOM module</a></nobr><br>\r
<nobr><a href="../files/introduction_to_geom.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Introduction to GEOM</a></nobr><br>\r
- <nobr><a href="../files/salome2_sp3_geomtoolsgui_functions.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Importing\exporting geometrical objects</a></nobr><br>\r
+ <nobr><a href="../files/salome2_sp3_geomtoolsgui_functions.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Importing/exporting geometrical objects</a></nobr><br>\r
<nobr><a name="2"></a><a href="whlstt2.htm#2" target="_self" title="closed book"><img src="../wht_toc1.gif" border="0" align="absmiddle"> Managing geometrical objects</a></nobr><br>\r
- <nobr><a name="3"></a><a href="whlstt3.htm#3" target="_self" title="closed book"><img src="../wht_toc1.gif" border="0" align="absmiddle"> Creating geometrical objects</a></nobr><br>\r
- <nobr><a name="8"></a><a href="whlstt8.htm#8" target="_self" title="closed book"><img src="../wht_toc1.gif" border="0" align="absmiddle"> Transforming geometrical objects</a></nobr><br>\r
+ <nobr><a name="4"></a><a href="whlstt4.htm#4" target="_self" title="closed book"><img src="../wht_toc1.gif" border="0" align="absmiddle"> Creating geometrical objects</a></nobr><br>\r
+ <nobr><a name="9"></a><a href="whlstt9.htm#9" target="_self" title="closed book"><img src="../wht_toc1.gif" border="0" align="absmiddle"> Transforming geometrical objects</a></nobr><br>\r
<nobr><a href="../files/salome2_sp3_measuregui_functions.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Using measurement tools</a></nobr><br>\r
- <nobr><a name="14"></a><a href="whlstt14.htm#14" target="_self" title="closed book"><img src="../wht_toc1.gif" border="0" align="absmiddle"> TUI Scripts</a></nobr><br>\r
+ <nobr><a name="15"></a><a href="whlstt15.htm#15" target="_self" title="closed book"><img src="../wht_toc1.gif" border="0" align="absmiddle"> TUI Scripts</a></nobr><br>\r
</p>\r
\r
</td></tr>\r
<p class="tocbody">\r
<nobr><a name="1"></a><a href="whlstt0.htm#1" target="_self"><img src="../wht_toc2.gif" border="0" align="absmiddle"> GEOM module</a></nobr><br>\r
<nobr><a href="../files/introduction_to_geom.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Introduction to GEOM</a></nobr><br>\r
- <nobr><a href="../files/salome2_sp3_geomtoolsgui_functions.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Importing\exporting geometrical objects</a></nobr><br>\r
+ <nobr><a href="../files/salome2_sp3_geomtoolsgui_functions.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Importing/exporting geometrical objects</a></nobr><br>\r
<nobr><a name="2"></a><a href="whlstt2.htm#2" target="_self" title="closed book"><img src="../wht_toc1.gif" border="0" align="absmiddle"> Managing geometrical objects</a></nobr><br>\r
- <nobr><a name="3"></a><a href="whlstt3.htm#3" target="_self" title="closed book"><img src="../wht_toc1.gif" border="0" align="absmiddle"> Creating geometrical objects</a></nobr><br>\r
- <nobr><a name="8"></a><a href="whlstt1.htm#8" target="_self"><img src="../wht_toc2.gif" border="0" align="absmiddle"> Transforming geometrical objects</a></nobr><br>\r
- <nobr><a name="9"></a><a href="whlstt9.htm#9" target="_self" title="closed book"><img src="../wht_toc1.gif" border="0" align="absmiddle"> Basic Operations</a></nobr><br>\r
- <nobr><a name="10"></a><a href="whlstt8.htm#10" target="_self"><img src="../wht_toc2.gif" border="0" align="absmiddle"> Boolean Operations</a></nobr><br>\r
- <nobr><a href="../files/salome2_sp3_booleangui_functions.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Using boolean operations</a></nobr><br>\r
- <nobr><a href="../fuse.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Fuse</a></nobr><br>\r
- <nobr><a href="../common.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Common</a></nobr><br>\r
- <nobr><a href="../cut.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Cut</a></nobr><br>\r
- <nobr><a href="../section.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Section</a></nobr><br>\r
- <nobr><a name="11"></a><a href="whlstt11.htm#11" target="_self" title="closed book"><img src="../wht_toc1.gif" border="0" align="absmiddle"> Transformation Operations</a></nobr><br>\r
- <nobr><a name="12"></a><a href="whlstt12.htm#12" target="_self" title="closed book"><img src="../wht_toc1.gif" border="0" align="absmiddle"> Blocks Operations</a></nobr><br>\r
- <nobr><a name="13"></a><a href="whlstt13.htm#13" target="_self" title="closed book"><img src="../wht_toc1.gif" border="0" align="absmiddle"> Repairing Operations</a></nobr><br>\r
+ <nobr><a name="4"></a><a href="whlstt4.htm#4" target="_self" title="closed book"><img src="../wht_toc1.gif" border="0" align="absmiddle"> Creating geometrical objects</a></nobr><br>\r
+ <nobr><a name="9"></a><a href="whlstt1.htm#9" target="_self"><img src="../wht_toc2.gif" border="0" align="absmiddle"> Transforming geometrical objects</a></nobr><br>\r
+ <nobr><a name="10"></a><a href="whlstt9.htm#10" target="_self"><img src="../wht_toc2.gif" border="0" align="absmiddle"> Basic Operations</a></nobr><br>\r
+ <nobr><a href="../partition.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Partition</a></nobr><br>\r
+ <nobr><a href="../archimede.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Archimede</a></nobr><br>\r
+ <nobr><a name="11"></a><a href="whlstt11.htm#11" target="_self" title="closed book"><img src="../wht_toc1.gif" border="0" align="absmiddle"> Boolean Operations</a></nobr><br>\r
+ <nobr><a name="12"></a><a href="whlstt12.htm#12" target="_self" title="closed book"><img src="../wht_toc1.gif" border="0" align="absmiddle"> Transformation Operations</a></nobr><br>\r
+ <nobr><a name="13"></a><a href="whlstt13.htm#13" target="_self" title="closed book"><img src="../wht_toc1.gif" border="0" align="absmiddle"> Blocks Operations</a></nobr><br>\r
+ <nobr><a name="14"></a><a href="whlstt14.htm#14" target="_self" title="closed book"><img src="../wht_toc1.gif" border="0" align="absmiddle"> Repairing Operations</a></nobr><br>\r
<nobr><a href="../files/salome2_sp3_measuregui_functions.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Using measurement tools</a></nobr><br>\r
- <nobr><a name="14"></a><a href="whlstt14.htm#14" target="_self" title="closed book"><img src="../wht_toc1.gif" border="0" align="absmiddle"> TUI Scripts</a></nobr><br>\r
+ <nobr><a name="15"></a><a href="whlstt15.htm#15" target="_self" title="closed book"><img src="../wht_toc1.gif" border="0" align="absmiddle"> TUI Scripts</a></nobr><br>\r
</p>\r
\r
</td></tr>\r
<p class="tocbody">\r
<nobr><a name="1"></a><a href="whlstt0.htm#1" target="_self"><img src="../wht_toc2.gif" border="0" align="absmiddle"> GEOM module</a></nobr><br>\r
<nobr><a href="../files/introduction_to_geom.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Introduction to GEOM</a></nobr><br>\r
- <nobr><a href="../files/salome2_sp3_geomtoolsgui_functions.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Importing\exporting geometrical objects</a></nobr><br>\r
+ <nobr><a href="../files/salome2_sp3_geomtoolsgui_functions.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Importing/exporting geometrical objects</a></nobr><br>\r
<nobr><a name="2"></a><a href="whlstt2.htm#2" target="_self" title="closed book"><img src="../wht_toc1.gif" border="0" align="absmiddle"> Managing geometrical objects</a></nobr><br>\r
- <nobr><a name="3"></a><a href="whlstt3.htm#3" target="_self" title="closed book"><img src="../wht_toc1.gif" border="0" align="absmiddle"> Creating geometrical objects</a></nobr><br>\r
- <nobr><a name="8"></a><a href="whlstt1.htm#8" target="_self"><img src="../wht_toc2.gif" border="0" align="absmiddle"> Transforming geometrical objects</a></nobr><br>\r
- <nobr><a name="9"></a><a href="whlstt9.htm#9" target="_self" title="closed book"><img src="../wht_toc1.gif" border="0" align="absmiddle"> Basic Operations</a></nobr><br>\r
- <nobr><a name="10"></a><a href="whlstt10.htm#10" target="_self" title="closed book"><img src="../wht_toc1.gif" border="0" align="absmiddle"> Boolean Operations</a></nobr><br>\r
- <nobr><a name="11"></a><a href="whlstt8.htm#11" target="_self"><img src="../wht_toc2.gif" border="0" align="absmiddle"> Transformation Operations</a></nobr><br>\r
- <nobr><a href="../translation.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Translation</a></nobr><br>\r
- <nobr><a href="../rotation.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Rotation</a></nobr><br>\r
- <nobr><a href="../modify_the_location.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Modify the Location</a></nobr><br>\r
- <nobr><a href="../mirror_image.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Mirror Image</a></nobr><br>\r
- <nobr><a href="../scale_transform.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Scale Transform</a></nobr><br>\r
- <nobr><a href="../offset_surface.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Offset Surface</a></nobr><br>\r
- <nobr><a href="../multi_translation.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Multi Translation</a></nobr><br>\r
- <nobr><a href="../multi_rotation.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Multi Rotation</a></nobr><br>\r
- <nobr><a href="../fillet.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Fillet</a></nobr><br>\r
- <nobr><a href="../chamfer.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Chamfer</a></nobr><br>\r
- <nobr><a name="12"></a><a href="whlstt12.htm#12" target="_self" title="closed book"><img src="../wht_toc1.gif" border="0" align="absmiddle"> Blocks Operations</a></nobr><br>\r
- <nobr><a name="13"></a><a href="whlstt13.htm#13" target="_self" title="closed book"><img src="../wht_toc1.gif" border="0" align="absmiddle"> Repairing Operations</a></nobr><br>\r
+ <nobr><a name="4"></a><a href="whlstt4.htm#4" target="_self" title="closed book"><img src="../wht_toc1.gif" border="0" align="absmiddle"> Creating geometrical objects</a></nobr><br>\r
+ <nobr><a name="9"></a><a href="whlstt1.htm#9" target="_self"><img src="../wht_toc2.gif" border="0" align="absmiddle"> Transforming geometrical objects</a></nobr><br>\r
+ <nobr><a name="10"></a><a href="whlstt10.htm#10" target="_self" title="closed book"><img src="../wht_toc1.gif" border="0" align="absmiddle"> Basic Operations</a></nobr><br>\r
+ <nobr><a name="11"></a><a href="whlstt9.htm#11" target="_self"><img src="../wht_toc2.gif" border="0" align="absmiddle"> Boolean Operations</a></nobr><br>\r
+ <nobr><a href="../files/salome2_sp3_booleangui_functions.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Using boolean operations</a></nobr><br>\r
+ <nobr><a href="../fuse.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Fuse</a></nobr><br>\r
+ <nobr><a href="../common.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Common</a></nobr><br>\r
+ <nobr><a href="../cut.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Cut</a></nobr><br>\r
+ <nobr><a href="../section.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Section</a></nobr><br>\r
+ <nobr><a name="12"></a><a href="whlstt12.htm#12" target="_self" title="closed book"><img src="../wht_toc1.gif" border="0" align="absmiddle"> Transformation Operations</a></nobr><br>\r
+ <nobr><a name="13"></a><a href="whlstt13.htm#13" target="_self" title="closed book"><img src="../wht_toc1.gif" border="0" align="absmiddle"> Blocks Operations</a></nobr><br>\r
+ <nobr><a name="14"></a><a href="whlstt14.htm#14" target="_self" title="closed book"><img src="../wht_toc1.gif" border="0" align="absmiddle"> Repairing Operations</a></nobr><br>\r
<nobr><a href="../files/salome2_sp3_measuregui_functions.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Using measurement tools</a></nobr><br>\r
- <nobr><a name="14"></a><a href="whlstt14.htm#14" target="_self" title="closed book"><img src="../wht_toc1.gif" border="0" align="absmiddle"> TUI Scripts</a></nobr><br>\r
+ <nobr><a name="15"></a><a href="whlstt15.htm#15" target="_self" title="closed book"><img src="../wht_toc1.gif" border="0" align="absmiddle"> TUI Scripts</a></nobr><br>\r
</p>\r
\r
</td></tr>\r
<p class="tocbody">\r
<nobr><a name="1"></a><a href="whlstt0.htm#1" target="_self"><img src="../wht_toc2.gif" border="0" align="absmiddle"> GEOM module</a></nobr><br>\r
<nobr><a href="../files/introduction_to_geom.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Introduction to GEOM</a></nobr><br>\r
- <nobr><a href="../files/salome2_sp3_geomtoolsgui_functions.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Importing\exporting geometrical objects</a></nobr><br>\r
+ <nobr><a href="../files/salome2_sp3_geomtoolsgui_functions.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Importing/exporting geometrical objects</a></nobr><br>\r
<nobr><a name="2"></a><a href="whlstt2.htm#2" target="_self" title="closed book"><img src="../wht_toc1.gif" border="0" align="absmiddle"> Managing geometrical objects</a></nobr><br>\r
- <nobr><a name="3"></a><a href="whlstt3.htm#3" target="_self" title="closed book"><img src="../wht_toc1.gif" border="0" align="absmiddle"> Creating geometrical objects</a></nobr><br>\r
- <nobr><a name="8"></a><a href="whlstt1.htm#8" target="_self"><img src="../wht_toc2.gif" border="0" align="absmiddle"> Transforming geometrical objects</a></nobr><br>\r
- <nobr><a name="9"></a><a href="whlstt9.htm#9" target="_self" title="closed book"><img src="../wht_toc1.gif" border="0" align="absmiddle"> Basic Operations</a></nobr><br>\r
- <nobr><a name="10"></a><a href="whlstt10.htm#10" target="_self" title="closed book"><img src="../wht_toc1.gif" border="0" align="absmiddle"> Boolean Operations</a></nobr><br>\r
- <nobr><a name="11"></a><a href="whlstt11.htm#11" target="_self" title="closed book"><img src="../wht_toc1.gif" border="0" align="absmiddle"> Transformation Operations</a></nobr><br>\r
- <nobr><a name="12"></a><a href="whlstt8.htm#12" target="_self"><img src="../wht_toc2.gif" border="0" align="absmiddle"> Blocks Operations</a></nobr><br>\r
- <nobr><a href="../multi_transformation.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Multi Transformation</a></nobr><br>\r
- <nobr><a href="../explode_on_blocks.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Explode on Blocks</a></nobr><br>\r
- <nobr><a href="../propagate.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Propagate</a></nobr><br>\r
- <nobr><a name="13"></a><a href="whlstt13.htm#13" target="_self" title="closed book"><img src="../wht_toc1.gif" border="0" align="absmiddle"> Repairing Operations</a></nobr><br>\r
+ <nobr><a name="4"></a><a href="whlstt4.htm#4" target="_self" title="closed book"><img src="../wht_toc1.gif" border="0" align="absmiddle"> Creating geometrical objects</a></nobr><br>\r
+ <nobr><a name="9"></a><a href="whlstt1.htm#9" target="_self"><img src="../wht_toc2.gif" border="0" align="absmiddle"> Transforming geometrical objects</a></nobr><br>\r
+ <nobr><a name="10"></a><a href="whlstt10.htm#10" target="_self" title="closed book"><img src="../wht_toc1.gif" border="0" align="absmiddle"> Basic Operations</a></nobr><br>\r
+ <nobr><a name="11"></a><a href="whlstt11.htm#11" target="_self" title="closed book"><img src="../wht_toc1.gif" border="0" align="absmiddle"> Boolean Operations</a></nobr><br>\r
+ <nobr><a name="12"></a><a href="whlstt9.htm#12" target="_self"><img src="../wht_toc2.gif" border="0" align="absmiddle"> Transformation Operations</a></nobr><br>\r
+ <nobr><a href="../translation.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Translation</a></nobr><br>\r
+ <nobr><a href="../rotation.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Rotation</a></nobr><br>\r
+ <nobr><a href="../modify_the_location.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Modify the Location</a></nobr><br>\r
+ <nobr><a href="../mirror_image.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Mirror Image</a></nobr><br>\r
+ <nobr><a href="../scale_transform.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Scale Transform</a></nobr><br>\r
+ <nobr><a href="../offset_surface.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Offset Surface</a></nobr><br>\r
+ <nobr><a href="../multi_translation.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Multi Translation</a></nobr><br>\r
+ <nobr><a href="../multi_rotation.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Multi Rotation</a></nobr><br>\r
+ <nobr><a href="../fillet.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Fillet</a></nobr><br>\r
+ <nobr><a href="../chamfer.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Chamfer</a></nobr><br>\r
+ <nobr><a name="13"></a><a href="whlstt13.htm#13" target="_self" title="closed book"><img src="../wht_toc1.gif" border="0" align="absmiddle"> Blocks Operations</a></nobr><br>\r
+ <nobr><a name="14"></a><a href="whlstt14.htm#14" target="_self" title="closed book"><img src="../wht_toc1.gif" border="0" align="absmiddle"> Repairing Operations</a></nobr><br>\r
<nobr><a href="../files/salome2_sp3_measuregui_functions.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Using measurement tools</a></nobr><br>\r
- <nobr><a name="14"></a><a href="whlstt14.htm#14" target="_self" title="closed book"><img src="../wht_toc1.gif" border="0" align="absmiddle"> TUI Scripts</a></nobr><br>\r
+ <nobr><a name="15"></a><a href="whlstt15.htm#15" target="_self" title="closed book"><img src="../wht_toc1.gif" border="0" align="absmiddle"> TUI Scripts</a></nobr><br>\r
</p>\r
\r
</td></tr>\r
<p class="tocbody">\r
<nobr><a name="1"></a><a href="whlstt0.htm#1" target="_self"><img src="../wht_toc2.gif" border="0" align="absmiddle"> GEOM module</a></nobr><br>\r
<nobr><a href="../files/introduction_to_geom.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Introduction to GEOM</a></nobr><br>\r
- <nobr><a href="../files/salome2_sp3_geomtoolsgui_functions.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Importing\exporting geometrical objects</a></nobr><br>\r
+ <nobr><a href="../files/salome2_sp3_geomtoolsgui_functions.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Importing/exporting geometrical objects</a></nobr><br>\r
<nobr><a name="2"></a><a href="whlstt2.htm#2" target="_self" title="closed book"><img src="../wht_toc1.gif" border="0" align="absmiddle"> Managing geometrical objects</a></nobr><br>\r
- <nobr><a name="3"></a><a href="whlstt3.htm#3" target="_self" title="closed book"><img src="../wht_toc1.gif" border="0" align="absmiddle"> Creating geometrical objects</a></nobr><br>\r
- <nobr><a name="8"></a><a href="whlstt1.htm#8" target="_self"><img src="../wht_toc2.gif" border="0" align="absmiddle"> Transforming geometrical objects</a></nobr><br>\r
- <nobr><a name="9"></a><a href="whlstt9.htm#9" target="_self" title="closed book"><img src="../wht_toc1.gif" border="0" align="absmiddle"> Basic Operations</a></nobr><br>\r
- <nobr><a name="10"></a><a href="whlstt10.htm#10" target="_self" title="closed book"><img src="../wht_toc1.gif" border="0" align="absmiddle"> Boolean Operations</a></nobr><br>\r
- <nobr><a name="11"></a><a href="whlstt11.htm#11" target="_self" title="closed book"><img src="../wht_toc1.gif" border="0" align="absmiddle"> Transformation Operations</a></nobr><br>\r
- <nobr><a name="12"></a><a href="whlstt12.htm#12" target="_self" title="closed book"><img src="../wht_toc1.gif" border="0" align="absmiddle"> Blocks Operations</a></nobr><br>\r
- <nobr><a name="13"></a><a href="whlstt8.htm#13" target="_self"><img src="../wht_toc2.gif" border="0" align="absmiddle"> Repairing Operations</a></nobr><br>\r
- <nobr><a href="../shape_processing.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Shape Processing</a></nobr><br>\r
- <nobr><a href="../suppress_faces.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Suppress Faces</a></nobr><br>\r
- <nobr><a href="../close_contour.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Close Contour</a></nobr><br>\r
- <nobr><a href="../suppress_internal_wires.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Suppress Internal Wires</a></nobr><br>\r
- <nobr><a href="../suppress_holes.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Suppress Holes</a></nobr><br>\r
- <nobr><a href="../sewing.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Sewing</a></nobr><br>\r
- <nobr><a href="../glue_faces.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Glue Faces</a></nobr><br>\r
- <nobr><a href="../add_point_on_edge.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Add Point on Edge</a></nobr><br>\r
- <nobr><a href="../check_free_boundaries.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Check Free Boundaries</a></nobr><br>\r
- <nobr><a href="../check_free_faces.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Check Free Faces</a></nobr><br>\r
+ <nobr><a name="4"></a><a href="whlstt4.htm#4" target="_self" title="closed book"><img src="../wht_toc1.gif" border="0" align="absmiddle"> Creating geometrical objects</a></nobr><br>\r
+ <nobr><a name="9"></a><a href="whlstt1.htm#9" target="_self"><img src="../wht_toc2.gif" border="0" align="absmiddle"> Transforming geometrical objects</a></nobr><br>\r
+ <nobr><a name="10"></a><a href="whlstt10.htm#10" target="_self" title="closed book"><img src="../wht_toc1.gif" border="0" align="absmiddle"> Basic Operations</a></nobr><br>\r
+ <nobr><a name="11"></a><a href="whlstt11.htm#11" target="_self" title="closed book"><img src="../wht_toc1.gif" border="0" align="absmiddle"> Boolean Operations</a></nobr><br>\r
+ <nobr><a name="12"></a><a href="whlstt12.htm#12" target="_self" title="closed book"><img src="../wht_toc1.gif" border="0" align="absmiddle"> Transformation Operations</a></nobr><br>\r
+ <nobr><a name="13"></a><a href="whlstt9.htm#13" target="_self"><img src="../wht_toc2.gif" border="0" align="absmiddle"> Blocks Operations</a></nobr><br>\r
+ <nobr><a href="../multi_transformation.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Multi Transformation</a></nobr><br>\r
+ <nobr><a href="../explode_on_blocks.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Explode on Blocks</a></nobr><br>\r
+ <nobr><a href="../propagate.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Propagate</a></nobr><br>\r
+ <nobr><a name="14"></a><a href="whlstt14.htm#14" target="_self" title="closed book"><img src="../wht_toc1.gif" border="0" align="absmiddle"> Repairing Operations</a></nobr><br>\r
<nobr><a href="../files/salome2_sp3_measuregui_functions.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Using measurement tools</a></nobr><br>\r
- <nobr><a name="14"></a><a href="whlstt14.htm#14" target="_self" title="closed book"><img src="../wht_toc1.gif" border="0" align="absmiddle"> TUI Scripts</a></nobr><br>\r
+ <nobr><a name="15"></a><a href="whlstt15.htm#15" target="_self" title="closed book"><img src="../wht_toc1.gif" border="0" align="absmiddle"> TUI Scripts</a></nobr><br>\r
</p>\r
\r
</td></tr>\r
<p class="tocbody">\r
<nobr><a name="1"></a><a href="whlstt0.htm#1" target="_self"><img src="../wht_toc2.gif" border="0" align="absmiddle"> GEOM module</a></nobr><br>\r
<nobr><a href="../files/introduction_to_geom.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Introduction to GEOM</a></nobr><br>\r
- <nobr><a href="../files/salome2_sp3_geomtoolsgui_functions.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Importing\exporting geometrical objects</a></nobr><br>\r
+ <nobr><a href="../files/salome2_sp3_geomtoolsgui_functions.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Importing/exporting geometrical objects</a></nobr><br>\r
<nobr><a name="2"></a><a href="whlstt2.htm#2" target="_self" title="closed book"><img src="../wht_toc1.gif" border="0" align="absmiddle"> Managing geometrical objects</a></nobr><br>\r
- <nobr><a name="3"></a><a href="whlstt3.htm#3" target="_self" title="closed book"><img src="../wht_toc1.gif" border="0" align="absmiddle"> Creating geometrical objects</a></nobr><br>\r
- <nobr><a name="8"></a><a href="whlstt8.htm#8" target="_self" title="closed book"><img src="../wht_toc1.gif" border="0" align="absmiddle"> Transforming geometrical objects</a></nobr><br>\r
+ <nobr><a name="4"></a><a href="whlstt4.htm#4" target="_self" title="closed book"><img src="../wht_toc1.gif" border="0" align="absmiddle"> Creating geometrical objects</a></nobr><br>\r
+ <nobr><a name="9"></a><a href="whlstt1.htm#9" target="_self"><img src="../wht_toc2.gif" border="0" align="absmiddle"> Transforming geometrical objects</a></nobr><br>\r
+ <nobr><a name="10"></a><a href="whlstt10.htm#10" target="_self" title="closed book"><img src="../wht_toc1.gif" border="0" align="absmiddle"> Basic Operations</a></nobr><br>\r
+ <nobr><a name="11"></a><a href="whlstt11.htm#11" target="_self" title="closed book"><img src="../wht_toc1.gif" border="0" align="absmiddle"> Boolean Operations</a></nobr><br>\r
+ <nobr><a name="12"></a><a href="whlstt12.htm#12" target="_self" title="closed book"><img src="../wht_toc1.gif" border="0" align="absmiddle"> Transformation Operations</a></nobr><br>\r
+ <nobr><a name="13"></a><a href="whlstt13.htm#13" target="_self" title="closed book"><img src="../wht_toc1.gif" border="0" align="absmiddle"> Blocks Operations</a></nobr><br>\r
+ <nobr><a name="14"></a><a href="whlstt9.htm#14" target="_self"><img src="../wht_toc2.gif" border="0" align="absmiddle"> Repairing Operations</a></nobr><br>\r
+ <nobr><a href="../shape_processing.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Shape Processing</a></nobr><br>\r
+ <nobr><a href="../suppress_faces.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Suppress Faces</a></nobr><br>\r
+ <nobr><a href="../close_contour.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Close Contour</a></nobr><br>\r
+ <nobr><a href="../suppress_internal_wires.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Suppress Internal Wires</a></nobr><br>\r
+ <nobr><a href="../suppress_holes.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Suppress Holes</a></nobr><br>\r
+ <nobr><a href="../sewing.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Sewing</a></nobr><br>\r
+ <nobr><a href="../glue_faces.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Glue Faces</a></nobr><br>\r
+ <nobr><a href="../add_point_on_edge.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Add Point on Edge</a></nobr><br>\r
+ <nobr><a href="../check_free_boundaries.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Check Free Boundaries</a></nobr><br>\r
+ <nobr><a href="../check_free_faces.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Check Free Faces</a></nobr><br>\r
<nobr><a href="../files/salome2_sp3_measuregui_functions.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Using measurement tools</a></nobr><br>\r
- <nobr><a name="14"></a><a href="whlstt1.htm#14" target="_self"><img src="../wht_toc2.gif" border="0" align="absmiddle"> TUI Scripts</a></nobr><br>\r
- <nobr><a href="../changing_display_parameters.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Changing Displaying Parameters</a></nobr><br>\r
- <nobr><a name="15"></a><a href="whlstt15.htm#15" target="_self" title="closed book"><img src="../wht_toc1.gif" border="0" align="absmiddle"> Creation of Geometric Objects</a></nobr><br>\r
- <nobr><a name="16"></a><a href="whlstt16.htm#16" target="_self" title="closed book"><img src="../wht_toc1.gif" border="0" align="absmiddle"> Transformation</a></nobr><br>\r
- <nobr><a href="../measurement_tools.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Measurement Tools</a></nobr><br>\r
- <nobr><a href="../geompy_doc/namespacegeompy.html"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Module geompy</a></nobr><br>\r
+ <nobr><a name="15"></a><a href="whlstt15.htm#15" target="_self" title="closed book"><img src="../wht_toc1.gif" border="0" align="absmiddle"> TUI Scripts</a></nobr><br>\r
</p>\r
\r
</td></tr>\r
<p class="tocbody">\r
<nobr><a name="1"></a><a href="whlstt0.htm#1" target="_self"><img src="../wht_toc2.gif" border="0" align="absmiddle"> GEOM module</a></nobr><br>\r
<nobr><a href="../files/introduction_to_geom.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Introduction to GEOM</a></nobr><br>\r
- <nobr><a href="../files/salome2_sp3_geomtoolsgui_functions.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Importing\exporting geometrical objects</a></nobr><br>\r
+ <nobr><a href="../files/salome2_sp3_geomtoolsgui_functions.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Importing/exporting geometrical objects</a></nobr><br>\r
<nobr><a name="2"></a><a href="whlstt2.htm#2" target="_self" title="closed book"><img src="../wht_toc1.gif" border="0" align="absmiddle"> Managing geometrical objects</a></nobr><br>\r
- <nobr><a name="3"></a><a href="whlstt3.htm#3" target="_self" title="closed book"><img src="../wht_toc1.gif" border="0" align="absmiddle"> Creating geometrical objects</a></nobr><br>\r
- <nobr><a name="8"></a><a href="whlstt8.htm#8" target="_self" title="closed book"><img src="../wht_toc1.gif" border="0" align="absmiddle"> Transforming geometrical objects</a></nobr><br>\r
+ <nobr><a name="4"></a><a href="whlstt4.htm#4" target="_self" title="closed book"><img src="../wht_toc1.gif" border="0" align="absmiddle"> Creating geometrical objects</a></nobr><br>\r
+ <nobr><a name="9"></a><a href="whlstt9.htm#9" target="_self" title="closed book"><img src="../wht_toc1.gif" border="0" align="absmiddle"> Transforming geometrical objects</a></nobr><br>\r
<nobr><a href="../files/salome2_sp3_measuregui_functions.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Using measurement tools</a></nobr><br>\r
- <nobr><a name="14"></a><a href="whlstt1.htm#14" target="_self"><img src="../wht_toc2.gif" border="0" align="absmiddle"> TUI Scripts</a></nobr><br>\r
- <nobr><a href="../changing_display_parameters.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Changing Displaying Parameters</a></nobr><br>\r
- <nobr><a name="15"></a><a href="whlstt14.htm#15" target="_self"><img src="../wht_toc2.gif" border="0" align="absmiddle"> Creation of Geometric Objects</a></nobr><br>\r
- <nobr><a href="../basic_geometrical_objects.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Basic Geometrical Objects</a></nobr><br>\r
- <nobr><a href="../primitives.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Primitives</a></nobr><br>\r
- <nobr><a href="../complex_objects.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Complex Objects</a></nobr><br>\r
- <nobr><a href="../groups.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Working with Groups</a></nobr><br>\r
- <nobr><a href="../building_by_blocks.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Building by Blocks</a></nobr><br>\r
- <nobr><a href="../sketcher_tui.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Sketcher</a></nobr><br>\r
- <nobr><a href="../geometrical_objects.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Advanced Geometrical Objects</a></nobr><br>\r
- <nobr><a name="16"></a><a href="whlstt16.htm#16" target="_self" title="closed book"><img src="../wht_toc1.gif" border="0" align="absmiddle"> Transformation</a></nobr><br>\r
+ <nobr><a name="15"></a><a href="whlstt1.htm#15" target="_self"><img src="../wht_toc2.gif" border="0" align="absmiddle"> TUI Scripts</a></nobr><br>\r
+ <nobr><a href="../changing_display_parameters.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Changing Display Parameters</a></nobr><br>\r
+ <nobr><a name="16"></a><a href="whlstt16.htm#16" target="_self" title="closed book"><img src="../wht_toc1.gif" border="0" align="absmiddle"> Creation of Geometric Objects</a></nobr><br>\r
+ <nobr><a name="17"></a><a href="whlstt17.htm#17" target="_self" title="closed book"><img src="../wht_toc1.gif" border="0" align="absmiddle"> Transformation</a></nobr><br>\r
<nobr><a href="../measurement_tools.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Measurement Tools</a></nobr><br>\r
</p>\r
\r
<p class="tocbody">\r
<nobr><a name="1"></a><a href="whlstt0.htm#1" target="_self"><img src="../wht_toc2.gif" border="0" align="absmiddle"> GEOM module</a></nobr><br>\r
<nobr><a href="../files/introduction_to_geom.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Introduction to GEOM</a></nobr><br>\r
- <nobr><a href="../files/salome2_sp3_geomtoolsgui_functions.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Importing\exporting geometrical objects</a></nobr><br>\r
+ <nobr><a href="../files/salome2_sp3_geomtoolsgui_functions.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Importing/exporting geometrical objects</a></nobr><br>\r
<nobr><a name="2"></a><a href="whlstt2.htm#2" target="_self" title="closed book"><img src="../wht_toc1.gif" border="0" align="absmiddle"> Managing geometrical objects</a></nobr><br>\r
- <nobr><a name="3"></a><a href="whlstt3.htm#3" target="_self" title="closed book"><img src="../wht_toc1.gif" border="0" align="absmiddle"> Creating geometrical objects</a></nobr><br>\r
- <nobr><a name="8"></a><a href="whlstt8.htm#8" target="_self" title="closed book"><img src="../wht_toc1.gif" border="0" align="absmiddle"> Transforming geometrical objects</a></nobr><br>\r
+ <nobr><a name="4"></a><a href="whlstt4.htm#4" target="_self" title="closed book"><img src="../wht_toc1.gif" border="0" align="absmiddle"> Creating geometrical objects</a></nobr><br>\r
+ <nobr><a name="9"></a><a href="whlstt9.htm#9" target="_self" title="closed book"><img src="../wht_toc1.gif" border="0" align="absmiddle"> Transforming geometrical objects</a></nobr><br>\r
<nobr><a href="../files/salome2_sp3_measuregui_functions.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Using measurement tools</a></nobr><br>\r
- <nobr><a name="14"></a><a href="whlstt1.htm#14" target="_self"><img src="../wht_toc2.gif" border="0" align="absmiddle"> TUI Scripts</a></nobr><br>\r
- <nobr><a href="../changing_display_parameters.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Changing Displaying Parameters</a></nobr><br>\r
- <nobr><a name="15"></a><a href="whlstt15.htm#15" target="_self" title="closed book"><img src="../wht_toc1.gif" border="0" align="absmiddle"> Creation of Geometric Objects</a></nobr><br>\r
- <nobr><a name="16"></a><a href="whlstt14.htm#16" target="_self"><img src="../wht_toc2.gif" border="0" align="absmiddle"> Transformation</a></nobr><br>\r
- <nobr><a href="../basic_operations.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Basic Operations</a></nobr><br>\r
- <nobr><a href="../boolean_operations.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Boolean Operations</a></nobr><br>\r
- <nobr><a href="../transformation_operations.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Transformation Operations</a></nobr><br>\r
- <nobr><a href="../blocks_operations.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Blocks Operations</a></nobr><br>\r
- <nobr><a href="../repairing_operations.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Repairing Operations</a></nobr><br>\r
+ <nobr><a name="15"></a><a href="whlstt1.htm#15" target="_self"><img src="../wht_toc2.gif" border="0" align="absmiddle"> TUI Scripts</a></nobr><br>\r
+ <nobr><a href="../changing_display_parameters.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Changing Display Parameters</a></nobr><br>\r
+ <nobr><a name="16"></a><a href="whlstt15.htm#16" target="_self"><img src="../wht_toc2.gif" border="0" align="absmiddle"> Creation of Geometric Objects</a></nobr><br>\r
+ <nobr><a href="../basic_geometrical_objects.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Basic Geometrical Objects</a></nobr><br>\r
+ <nobr><a href="../primitives.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Primitives</a></nobr><br>\r
+ <nobr><a href="../complex_objects.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Complex Objects</a></nobr><br>\r
+ <nobr><a href="../groups.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Working with Groups</a></nobr><br>\r
+ <nobr><a href="../building_by_blocks.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Building by Blocks</a></nobr><br>\r
+ <nobr><a href="../sketcher_tui.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Sketcher</a></nobr><br>\r
+ <nobr><a href="../geometrical_objects.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Advanced Geometrical Objects</a></nobr><br>\r
+ <nobr><a name="17"></a><a href="whlstt17.htm#17" target="_self" title="closed book"><img src="../wht_toc1.gif" border="0" align="absmiddle"> Transformation</a></nobr><br>\r
<nobr><a href="../measurement_tools.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Measurement Tools</a></nobr><br>\r
</p>\r
\r
--- /dev/null
+<html>\r
+<head>\r
+<!-- WebHelp version 5.10 -->\r
+<title>Content</title>\r
+<base target="bsscright">\r
+\r
+<meta name="generator" content="RoboHelp by eHelp Corporation www.ehelp.com">\r
+<meta name="description" content="WebHelp 5.50">\r
+<style>\r
+<!--\r
+body {margin-left:1pt; margin-top:1pt; margin-right:1pt;font-family:Arial; font-size:9pt;}\r
+\r
+A:link {font-family:Arial; font-size:9pt; color:#000000; font-style:normal; text-decoration:none; }\r
+A:visited {font-family:Arial; font-size:9pt; color:#000000; font-style:normal; text-decoration:none; }\r
+A:active {background-color:#cccccc;}\r
+A:hover {font-family:Arial; font-size:9pt; color:#007f00; font-style:normal; text-decoration:underline; }\r
+\r
+\r
+.tabs {background-color:#c0c0c0;}\r
+.tocbody {margin-left:10pt; margin-top:0pt;}\r
+.bo {}\r
+.bc {}\r
+.pn {}\r
+.pr {}\r
+\r
+body {background-color:White; } \r
+p {color:Black; } p {font-family:Tahoma; } p {font-size:8pt; } p {font-style:Normal; } p {text-decoration:none; } \r
+A:link {color:Black; } A:link {font-family:Tahoma; } A:link {font-size:8pt; } A:link {font-style:Normal; } A:link {text-decoration:none; } \r
+A:visited {color:Black; } A:visited {font-family:Tahoma; } A:visited {font-size:8pt; } A:visited {font-style:Normal; } A:visited {text-decoration:none; } \r
+A:active {background-color:Silver; } \r
+A:hover {color:Navy; } A:hover {font-family:Tahoma; } A:hover {font-size:8pt; } A:hover {font-style:Normal; } A:hover {text-decoration:underline; } \r
+img {vertial-align:middle;}\r
+-->\r
+</style>\r
+</head>\r
+<body marginheight="0" marginwidth="0" bgproperties="fixed">\r
+<table border=0>\r
+<tr><td>\r
+<p class="tocbody">\r
+<nobr><a name="1"></a><a href="whlstt0.htm#1" target="_self"><img src="../wht_toc2.gif" border="0" align="absmiddle"> GEOM module</a></nobr><br>\r
+ <nobr><a href="../files/introduction_to_geom.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Introduction to GEOM</a></nobr><br>\r
+ <nobr><a href="../files/salome2_sp3_geomtoolsgui_functions.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Importing/exporting geometrical objects</a></nobr><br>\r
+ <nobr><a name="2"></a><a href="whlstt2.htm#2" target="_self" title="closed book"><img src="../wht_toc1.gif" border="0" align="absmiddle"> Managing geometrical objects</a></nobr><br>\r
+ <nobr><a name="4"></a><a href="whlstt4.htm#4" target="_self" title="closed book"><img src="../wht_toc1.gif" border="0" align="absmiddle"> Creating geometrical objects</a></nobr><br>\r
+ <nobr><a name="9"></a><a href="whlstt9.htm#9" target="_self" title="closed book"><img src="../wht_toc1.gif" border="0" align="absmiddle"> Transforming geometrical objects</a></nobr><br>\r
+ <nobr><a href="../files/salome2_sp3_measuregui_functions.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Using measurement tools</a></nobr><br>\r
+ <nobr><a name="15"></a><a href="whlstt1.htm#15" target="_self"><img src="../wht_toc2.gif" border="0" align="absmiddle"> TUI Scripts</a></nobr><br>\r
+ <nobr><a href="../changing_display_parameters.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Changing Display Parameters</a></nobr><br>\r
+ <nobr><a name="16"></a><a href="whlstt16.htm#16" target="_self" title="closed book"><img src="../wht_toc1.gif" border="0" align="absmiddle"> Creation of Geometric Objects</a></nobr><br>\r
+ <nobr><a name="17"></a><a href="whlstt15.htm#17" target="_self"><img src="../wht_toc2.gif" border="0" align="absmiddle"> Transformation</a></nobr><br>\r
+ <nobr><a href="../basic_operations.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Basic Operations</a></nobr><br>\r
+ <nobr><a href="../boolean_operations.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Boolean Operations</a></nobr><br>\r
+ <nobr><a href="../transformation_operations.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Transformation Operations</a></nobr><br>\r
+ <nobr><a href="../blocks_operations.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Blocks Operations</a></nobr><br>\r
+ <nobr><a href="../repairing_operations.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Repairing Operations</a></nobr><br>\r
+ <nobr><a href="../measurement_tools.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Measurement Tools</a></nobr><br>\r
+</p>\r
+\r
+</td></tr>\r
+<tr><td>\r
+<p><img src="whexpbar.gif" > <p>\r
+</td></tr>\r
+</table>\r
+</body>\r
+\r
+</html>\r
+\r
<p class="tocbody">\r
<nobr><a name="1"></a><a href="whlstt0.htm#1" target="_self"><img src="../wht_toc2.gif" border="0" align="absmiddle"> GEOM module</a></nobr><br>\r
<nobr><a href="../files/introduction_to_geom.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Introduction to GEOM</a></nobr><br>\r
- <nobr><a href="../files/salome2_sp3_geomtoolsgui_functions.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Importing\exporting geometrical objects</a></nobr><br>\r
+ <nobr><a href="../files/salome2_sp3_geomtoolsgui_functions.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Importing/exporting geometrical objects</a></nobr><br>\r
<nobr><a name="2"></a><a href="whlstt1.htm#2" target="_self"><img src="../wht_toc2.gif" border="0" align="absmiddle"> Managing geometrical objects</a></nobr><br>\r
- <nobr><a href="../changing_displaying_parameters.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Changing displaying parameters</a></nobr><br>\r
- <nobr><a href="../files/salome2_sp3_displaygui_functions.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Displaying\hiding objects</a></nobr><br>\r
- <nobr><a name="3"></a><a href="whlstt3.htm#3" target="_self" title="closed book"><img src="../wht_toc1.gif" border="0" align="absmiddle"> Creating geometrical objects</a></nobr><br>\r
- <nobr><a name="8"></a><a href="whlstt8.htm#8" target="_self" title="closed book"><img src="../wht_toc1.gif" border="0" align="absmiddle"> Transforming geometrical objects</a></nobr><br>\r
+ <nobr><a href="../files/salome2_sp3_displaygui_functions.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Displaying/hiding objects</a></nobr><br>\r
+ <nobr><a name="3"></a><a href="whlstt3.htm#3" target="_self" title="closed book"><img src="../wht_toc1.gif" border="0" align="absmiddle"> Changing Display Parameters</a></nobr><br>\r
+ <nobr><a name="4"></a><a href="whlstt4.htm#4" target="_self" title="closed book"><img src="../wht_toc1.gif" border="0" align="absmiddle"> Creating geometrical objects</a></nobr><br>\r
+ <nobr><a name="9"></a><a href="whlstt9.htm#9" target="_self" title="closed book"><img src="../wht_toc1.gif" border="0" align="absmiddle"> Transforming geometrical objects</a></nobr><br>\r
<nobr><a href="../files/salome2_sp3_measuregui_functions.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Using measurement tools</a></nobr><br>\r
- <nobr><a name="14"></a><a href="whlstt14.htm#14" target="_self" title="closed book"><img src="../wht_toc1.gif" border="0" align="absmiddle"> TUI Scripts</a></nobr><br>\r
+ <nobr><a name="15"></a><a href="whlstt15.htm#15" target="_self" title="closed book"><img src="../wht_toc1.gif" border="0" align="absmiddle"> TUI Scripts</a></nobr><br>\r
</p>\r
\r
</td></tr>\r
<p class="tocbody">\r
<nobr><a name="1"></a><a href="whlstt0.htm#1" target="_self"><img src="../wht_toc2.gif" border="0" align="absmiddle"> GEOM module</a></nobr><br>\r
<nobr><a href="../files/introduction_to_geom.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Introduction to GEOM</a></nobr><br>\r
- <nobr><a href="../files/salome2_sp3_geomtoolsgui_functions.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Importing\exporting geometrical objects</a></nobr><br>\r
- <nobr><a name="2"></a><a href="whlstt2.htm#2" target="_self" title="closed book"><img src="../wht_toc1.gif" border="0" align="absmiddle"> Managing geometrical objects</a></nobr><br>\r
- <nobr><a name="3"></a><a href="whlstt1.htm#3" target="_self"><img src="../wht_toc2.gif" border="0" align="absmiddle"> Creating geometrical objects</a></nobr><br>\r
- <nobr><a name="4"></a><a href="whlstt4.htm#4" target="_self" title="closed book"><img src="../wht_toc1.gif" border="0" align="absmiddle"> Creation of Basic Geometric Objects</a></nobr><br>\r
- <nobr><a name="5"></a><a href="whlstt5.htm#5" target="_self" title="closed book"><img src="../wht_toc1.gif" border="0" align="absmiddle"> Creation of Primitives</a></nobr><br>\r
- <nobr><a name="6"></a><a href="whlstt6.htm#6" target="_self" title="closed book"><img src="../wht_toc1.gif" border="0" align="absmiddle"> Generation of Complex Objects</a></nobr><br>\r
- <nobr><a href="../working_with_groups.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Working with groups</a></nobr><br>\r
- <nobr><a href="../newentity_blocks.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Building by blocks</a></nobr><br>\r
- <nobr><a href="../sketcher.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Sketcher</a></nobr><br>\r
- <nobr><a name="7"></a><a href="whlstt7.htm#7" target="_self" title="closed book"><img src="../wht_toc1.gif" border="0" align="absmiddle"> Creation of Advanced Geometrical Objects</a></nobr><br>\r
- <nobr><a name="8"></a><a href="whlstt8.htm#8" target="_self" title="closed book"><img src="../wht_toc1.gif" border="0" align="absmiddle"> Transforming geometrical objects</a></nobr><br>\r
+ <nobr><a href="../files/salome2_sp3_geomtoolsgui_functions.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Importing/exporting geometrical objects</a></nobr><br>\r
+ <nobr><a name="2"></a><a href="whlstt1.htm#2" target="_self"><img src="../wht_toc2.gif" border="0" align="absmiddle"> Managing geometrical objects</a></nobr><br>\r
+ <nobr><a href="../files/salome2_sp3_displaygui_functions.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Displaying/hiding objects</a></nobr><br>\r
+ <nobr><a name="3"></a><a href="whlstt2.htm#3" target="_self"><img src="../wht_toc2.gif" border="0" align="absmiddle"> Changing Display Parameters</a></nobr><br>\r
+ <nobr><a href="../wireframe_and_shading.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Display Mode</a></nobr><br>\r
+ <nobr><a href="../color.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Color</a></nobr><br>\r
+ <nobr><a href="../transparency.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Transparency</a></nobr><br>\r
+ <nobr><a href="../isos.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Isolines</a></nobr><br>\r
+ <nobr><a name="4"></a><a href="whlstt4.htm#4" target="_self" title="closed book"><img src="../wht_toc1.gif" border="0" align="absmiddle"> Creating geometrical objects</a></nobr><br>\r
+ <nobr><a name="9"></a><a href="whlstt9.htm#9" target="_self" title="closed book"><img src="../wht_toc1.gif" border="0" align="absmiddle"> Transforming geometrical objects</a></nobr><br>\r
<nobr><a href="../files/salome2_sp3_measuregui_functions.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Using measurement tools</a></nobr><br>\r
- <nobr><a name="14"></a><a href="whlstt14.htm#14" target="_self" title="closed book"><img src="../wht_toc1.gif" border="0" align="absmiddle"> TUI Scripts</a></nobr><br>\r
+ <nobr><a name="15"></a><a href="whlstt15.htm#15" target="_self" title="closed book"><img src="../wht_toc1.gif" border="0" align="absmiddle"> TUI Scripts</a></nobr><br>\r
</p>\r
\r
</td></tr>\r
<p class="tocbody">\r
<nobr><a name="1"></a><a href="whlstt0.htm#1" target="_self"><img src="../wht_toc2.gif" border="0" align="absmiddle"> GEOM module</a></nobr><br>\r
<nobr><a href="../files/introduction_to_geom.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Introduction to GEOM</a></nobr><br>\r
- <nobr><a href="../files/salome2_sp3_geomtoolsgui_functions.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Importing\exporting geometrical objects</a></nobr><br>\r
+ <nobr><a href="../files/salome2_sp3_geomtoolsgui_functions.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Importing/exporting geometrical objects</a></nobr><br>\r
<nobr><a name="2"></a><a href="whlstt2.htm#2" target="_self" title="closed book"><img src="../wht_toc1.gif" border="0" align="absmiddle"> Managing geometrical objects</a></nobr><br>\r
- <nobr><a name="3"></a><a href="whlstt1.htm#3" target="_self"><img src="../wht_toc2.gif" border="0" align="absmiddle"> Creating geometrical objects</a></nobr><br>\r
- <nobr><a name="4"></a><a href="whlstt3.htm#4" target="_self"><img src="../wht_toc2.gif" border="0" align="absmiddle"> Creation of Basic Geometric Objects</a></nobr><br>\r
- <nobr><a href="../point.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Point</a></nobr><br>\r
- <nobr><a href="../line.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Line</a></nobr><br>\r
- <nobr><a href="../circle.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Circle</a></nobr><br>\r
- <nobr><a href="../ellipse.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Ellipse</a></nobr><br>\r
- <nobr><a href="../arc.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Arc</a></nobr><br>\r
- <nobr><a href="../curve.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Curve</a></nobr><br>\r
- <nobr><a href="../vector.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Vector</a></nobr><br>\r
- <nobr><a href="../plane.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Plane</a></nobr><br>\r
- <nobr><a href="../working_plane.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Working Plane</a></nobr><br>\r
- <nobr><a href="../local_coordinate_system.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Local Coordinate System</a></nobr><br>\r
- <nobr><a name="5"></a><a href="whlstt5.htm#5" target="_self" title="closed book"><img src="../wht_toc1.gif" border="0" align="absmiddle"> Creation of Primitives</a></nobr><br>\r
- <nobr><a name="6"></a><a href="whlstt6.htm#6" target="_self" title="closed book"><img src="../wht_toc1.gif" border="0" align="absmiddle"> Generation of Complex Objects</a></nobr><br>\r
+ <nobr><a name="4"></a><a href="whlstt1.htm#4" target="_self"><img src="../wht_toc2.gif" border="0" align="absmiddle"> Creating geometrical objects</a></nobr><br>\r
+ <nobr><a name="5"></a><a href="whlstt5.htm#5" target="_self" title="closed book"><img src="../wht_toc1.gif" border="0" align="absmiddle"> Creation of Basic Geometric Objects</a></nobr><br>\r
+ <nobr><a name="6"></a><a href="whlstt6.htm#6" target="_self" title="closed book"><img src="../wht_toc1.gif" border="0" align="absmiddle"> Creation of Primitives</a></nobr><br>\r
+ <nobr><a name="7"></a><a href="whlstt7.htm#7" target="_self" title="closed book"><img src="../wht_toc1.gif" border="0" align="absmiddle"> Generation of Complex Objects</a></nobr><br>\r
<nobr><a href="../working_with_groups.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Working with groups</a></nobr><br>\r
<nobr><a href="../newentity_blocks.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Building by blocks</a></nobr><br>\r
<nobr><a href="../sketcher.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Sketcher</a></nobr><br>\r
- <nobr><a name="7"></a><a href="whlstt7.htm#7" target="_self" title="closed book"><img src="../wht_toc1.gif" border="0" align="absmiddle"> Creation of Advanced Geometrical Objects</a></nobr><br>\r
- <nobr><a name="8"></a><a href="whlstt8.htm#8" target="_self" title="closed book"><img src="../wht_toc1.gif" border="0" align="absmiddle"> Transforming geometrical objects</a></nobr><br>\r
+ <nobr><a name="8"></a><a href="whlstt8.htm#8" target="_self" title="closed book"><img src="../wht_toc1.gif" border="0" align="absmiddle"> Creation of Advanced Geometrical Objects</a></nobr><br>\r
+ <nobr><a name="9"></a><a href="whlstt9.htm#9" target="_self" title="closed book"><img src="../wht_toc1.gif" border="0" align="absmiddle"> Transforming geometrical objects</a></nobr><br>\r
<nobr><a href="../files/salome2_sp3_measuregui_functions.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Using measurement tools</a></nobr><br>\r
- <nobr><a name="14"></a><a href="whlstt14.htm#14" target="_self" title="closed book"><img src="../wht_toc1.gif" border="0" align="absmiddle"> TUI Scripts</a></nobr><br>\r
+ <nobr><a name="15"></a><a href="whlstt15.htm#15" target="_self" title="closed book"><img src="../wht_toc1.gif" border="0" align="absmiddle"> TUI Scripts</a></nobr><br>\r
</p>\r
\r
</td></tr>\r
<p class="tocbody">\r
<nobr><a name="1"></a><a href="whlstt0.htm#1" target="_self"><img src="../wht_toc2.gif" border="0" align="absmiddle"> GEOM module</a></nobr><br>\r
<nobr><a href="../files/introduction_to_geom.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Introduction to GEOM</a></nobr><br>\r
- <nobr><a href="../files/salome2_sp3_geomtoolsgui_functions.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Importing\exporting geometrical objects</a></nobr><br>\r
+ <nobr><a href="../files/salome2_sp3_geomtoolsgui_functions.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Importing/exporting geometrical objects</a></nobr><br>\r
<nobr><a name="2"></a><a href="whlstt2.htm#2" target="_self" title="closed book"><img src="../wht_toc1.gif" border="0" align="absmiddle"> Managing geometrical objects</a></nobr><br>\r
- <nobr><a name="3"></a><a href="whlstt1.htm#3" target="_self"><img src="../wht_toc2.gif" border="0" align="absmiddle"> Creating geometrical objects</a></nobr><br>\r
- <nobr><a name="4"></a><a href="whlstt4.htm#4" target="_self" title="closed book"><img src="../wht_toc1.gif" border="0" align="absmiddle"> Creation of Basic Geometric Objects</a></nobr><br>\r
- <nobr><a name="5"></a><a href="whlstt3.htm#5" target="_self"><img src="../wht_toc2.gif" border="0" align="absmiddle"> Creation of Primitives</a></nobr><br>\r
- <nobr><a href="../box.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Box</a></nobr><br>\r
- <nobr><a href="../cylinder.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Cylinder</a></nobr><br>\r
- <nobr><a href="../sphere.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Sphere</a></nobr><br>\r
- <nobr><a href="../turus.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Torus</a></nobr><br>\r
- <nobr><a href="../cone.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Cone</a></nobr><br>\r
- <nobr><a name="6"></a><a href="whlstt6.htm#6" target="_self" title="closed book"><img src="../wht_toc1.gif" border="0" align="absmiddle"> Generation of Complex Objects</a></nobr><br>\r
+ <nobr><a name="4"></a><a href="whlstt1.htm#4" target="_self"><img src="../wht_toc2.gif" border="0" align="absmiddle"> Creating geometrical objects</a></nobr><br>\r
+ <nobr><a name="5"></a><a href="whlstt4.htm#5" target="_self"><img src="../wht_toc2.gif" border="0" align="absmiddle"> Creation of Basic Geometric Objects</a></nobr><br>\r
+ <nobr><a href="../point.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Point</a></nobr><br>\r
+ <nobr><a href="../line.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Line</a></nobr><br>\r
+ <nobr><a href="../circle.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Circle</a></nobr><br>\r
+ <nobr><a href="../ellipse.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Ellipse</a></nobr><br>\r
+ <nobr><a href="../arc.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Arc</a></nobr><br>\r
+ <nobr><a href="../curve.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Curve</a></nobr><br>\r
+ <nobr><a href="../vector.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Vector</a></nobr><br>\r
+ <nobr><a href="../plane.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Plane</a></nobr><br>\r
+ <nobr><a href="../working_plane.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Working Plane</a></nobr><br>\r
+ <nobr><a href="../local_coordinate_system.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Local Coordinate System</a></nobr><br>\r
+ <nobr><a name="6"></a><a href="whlstt6.htm#6" target="_self" title="closed book"><img src="../wht_toc1.gif" border="0" align="absmiddle"> Creation of Primitives</a></nobr><br>\r
+ <nobr><a name="7"></a><a href="whlstt7.htm#7" target="_self" title="closed book"><img src="../wht_toc1.gif" border="0" align="absmiddle"> Generation of Complex Objects</a></nobr><br>\r
<nobr><a href="../working_with_groups.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Working with groups</a></nobr><br>\r
<nobr><a href="../newentity_blocks.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Building by blocks</a></nobr><br>\r
<nobr><a href="../sketcher.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Sketcher</a></nobr><br>\r
- <nobr><a name="7"></a><a href="whlstt7.htm#7" target="_self" title="closed book"><img src="../wht_toc1.gif" border="0" align="absmiddle"> Creation of Advanced Geometrical Objects</a></nobr><br>\r
- <nobr><a name="8"></a><a href="whlstt8.htm#8" target="_self" title="closed book"><img src="../wht_toc1.gif" border="0" align="absmiddle"> Transforming geometrical objects</a></nobr><br>\r
+ <nobr><a name="8"></a><a href="whlstt8.htm#8" target="_self" title="closed book"><img src="../wht_toc1.gif" border="0" align="absmiddle"> Creation of Advanced Geometrical Objects</a></nobr><br>\r
+ <nobr><a name="9"></a><a href="whlstt9.htm#9" target="_self" title="closed book"><img src="../wht_toc1.gif" border="0" align="absmiddle"> Transforming geometrical objects</a></nobr><br>\r
<nobr><a href="../files/salome2_sp3_measuregui_functions.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Using measurement tools</a></nobr><br>\r
- <nobr><a name="14"></a><a href="whlstt14.htm#14" target="_self" title="closed book"><img src="../wht_toc1.gif" border="0" align="absmiddle"> TUI Scripts</a></nobr><br>\r
+ <nobr><a name="15"></a><a href="whlstt15.htm#15" target="_self" title="closed book"><img src="../wht_toc1.gif" border="0" align="absmiddle"> TUI Scripts</a></nobr><br>\r
</p>\r
\r
</td></tr>\r
<p class="tocbody">\r
<nobr><a name="1"></a><a href="whlstt0.htm#1" target="_self"><img src="../wht_toc2.gif" border="0" align="absmiddle"> GEOM module</a></nobr><br>\r
<nobr><a href="../files/introduction_to_geom.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Introduction to GEOM</a></nobr><br>\r
- <nobr><a href="../files/salome2_sp3_geomtoolsgui_functions.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Importing\exporting geometrical objects</a></nobr><br>\r
+ <nobr><a href="../files/salome2_sp3_geomtoolsgui_functions.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Importing/exporting geometrical objects</a></nobr><br>\r
<nobr><a name="2"></a><a href="whlstt2.htm#2" target="_self" title="closed book"><img src="../wht_toc1.gif" border="0" align="absmiddle"> Managing geometrical objects</a></nobr><br>\r
- <nobr><a name="3"></a><a href="whlstt1.htm#3" target="_self"><img src="../wht_toc2.gif" border="0" align="absmiddle"> Creating geometrical objects</a></nobr><br>\r
- <nobr><a name="4"></a><a href="whlstt4.htm#4" target="_self" title="closed book"><img src="../wht_toc1.gif" border="0" align="absmiddle"> Creation of Basic Geometric Objects</a></nobr><br>\r
- <nobr><a name="5"></a><a href="whlstt5.htm#5" target="_self" title="closed book"><img src="../wht_toc1.gif" border="0" align="absmiddle"> Creation of Primitives</a></nobr><br>\r
- <nobr><a name="6"></a><a href="whlstt3.htm#6" target="_self"><img src="../wht_toc2.gif" border="0" align="absmiddle"> Generation of Complex Objects</a></nobr><br>\r
- <nobr><a href="../extrusion.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Extrusion</a></nobr><br>\r
- <nobr><a href="../revolution.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Revolution</a></nobr><br>\r
- <nobr><a href="../filling.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Filling</a></nobr><br>\r
- <nobr><a href="../pipe_creation.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Pipe</a></nobr><br>\r
+ <nobr><a name="4"></a><a href="whlstt1.htm#4" target="_self"><img src="../wht_toc2.gif" border="0" align="absmiddle"> Creating geometrical objects</a></nobr><br>\r
+ <nobr><a name="5"></a><a href="whlstt5.htm#5" target="_self" title="closed book"><img src="../wht_toc1.gif" border="0" align="absmiddle"> Creation of Basic Geometric Objects</a></nobr><br>\r
+ <nobr><a name="6"></a><a href="whlstt4.htm#6" target="_self"><img src="../wht_toc2.gif" border="0" align="absmiddle"> Creation of Primitives</a></nobr><br>\r
+ <nobr><a href="../box.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Box</a></nobr><br>\r
+ <nobr><a href="../cylinder.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Cylinder</a></nobr><br>\r
+ <nobr><a href="../sphere.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Sphere</a></nobr><br>\r
+ <nobr><a href="../turus.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Torus</a></nobr><br>\r
+ <nobr><a href="../cone.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Cone</a></nobr><br>\r
+ <nobr><a name="7"></a><a href="whlstt7.htm#7" target="_self" title="closed book"><img src="../wht_toc1.gif" border="0" align="absmiddle"> Generation of Complex Objects</a></nobr><br>\r
<nobr><a href="../working_with_groups.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Working with groups</a></nobr><br>\r
<nobr><a href="../newentity_blocks.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Building by blocks</a></nobr><br>\r
<nobr><a href="../sketcher.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Sketcher</a></nobr><br>\r
- <nobr><a name="7"></a><a href="whlstt7.htm#7" target="_self" title="closed book"><img src="../wht_toc1.gif" border="0" align="absmiddle"> Creation of Advanced Geometrical Objects</a></nobr><br>\r
- <nobr><a name="8"></a><a href="whlstt8.htm#8" target="_self" title="closed book"><img src="../wht_toc1.gif" border="0" align="absmiddle"> Transforming geometrical objects</a></nobr><br>\r
+ <nobr><a name="8"></a><a href="whlstt8.htm#8" target="_self" title="closed book"><img src="../wht_toc1.gif" border="0" align="absmiddle"> Creation of Advanced Geometrical Objects</a></nobr><br>\r
+ <nobr><a name="9"></a><a href="whlstt9.htm#9" target="_self" title="closed book"><img src="../wht_toc1.gif" border="0" align="absmiddle"> Transforming geometrical objects</a></nobr><br>\r
<nobr><a href="../files/salome2_sp3_measuregui_functions.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Using measurement tools</a></nobr><br>\r
- <nobr><a name="14"></a><a href="whlstt14.htm#14" target="_self" title="closed book"><img src="../wht_toc1.gif" border="0" align="absmiddle"> TUI Scripts</a></nobr><br>\r
+ <nobr><a name="15"></a><a href="whlstt15.htm#15" target="_self" title="closed book"><img src="../wht_toc1.gif" border="0" align="absmiddle"> TUI Scripts</a></nobr><br>\r
</p>\r
\r
</td></tr>\r
<p class="tocbody">\r
<nobr><a name="1"></a><a href="whlstt0.htm#1" target="_self"><img src="../wht_toc2.gif" border="0" align="absmiddle"> GEOM module</a></nobr><br>\r
<nobr><a href="../files/introduction_to_geom.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Introduction to GEOM</a></nobr><br>\r
- <nobr><a href="../files/salome2_sp3_geomtoolsgui_functions.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Importing\exporting geometrical objects</a></nobr><br>\r
+ <nobr><a href="../files/salome2_sp3_geomtoolsgui_functions.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Importing/exporting geometrical objects</a></nobr><br>\r
<nobr><a name="2"></a><a href="whlstt2.htm#2" target="_self" title="closed book"><img src="../wht_toc1.gif" border="0" align="absmiddle"> Managing geometrical objects</a></nobr><br>\r
- <nobr><a name="3"></a><a href="whlstt1.htm#3" target="_self"><img src="../wht_toc2.gif" border="0" align="absmiddle"> Creating geometrical objects</a></nobr><br>\r
- <nobr><a name="4"></a><a href="whlstt4.htm#4" target="_self" title="closed book"><img src="../wht_toc1.gif" border="0" align="absmiddle"> Creation of Basic Geometric Objects</a></nobr><br>\r
- <nobr><a name="5"></a><a href="whlstt5.htm#5" target="_self" title="closed book"><img src="../wht_toc1.gif" border="0" align="absmiddle"> Creation of Primitives</a></nobr><br>\r
- <nobr><a name="6"></a><a href="whlstt6.htm#6" target="_self" title="closed book"><img src="../wht_toc1.gif" border="0" align="absmiddle"> Generation of Complex Objects</a></nobr><br>\r
+ <nobr><a name="4"></a><a href="whlstt1.htm#4" target="_self"><img src="../wht_toc2.gif" border="0" align="absmiddle"> Creating geometrical objects</a></nobr><br>\r
+ <nobr><a name="5"></a><a href="whlstt5.htm#5" target="_self" title="closed book"><img src="../wht_toc1.gif" border="0" align="absmiddle"> Creation of Basic Geometric Objects</a></nobr><br>\r
+ <nobr><a name="6"></a><a href="whlstt6.htm#6" target="_self" title="closed book"><img src="../wht_toc1.gif" border="0" align="absmiddle"> Creation of Primitives</a></nobr><br>\r
+ <nobr><a name="7"></a><a href="whlstt4.htm#7" target="_self"><img src="../wht_toc2.gif" border="0" align="absmiddle"> Generation of Complex Objects</a></nobr><br>\r
+ <nobr><a href="../extrusion.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Extrusion</a></nobr><br>\r
+ <nobr><a href="../revolution.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Revolution</a></nobr><br>\r
+ <nobr><a href="../filling.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Filling</a></nobr><br>\r
+ <nobr><a href="../pipe_creation.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Pipe</a></nobr><br>\r
<nobr><a href="../working_with_groups.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Working with groups</a></nobr><br>\r
<nobr><a href="../newentity_blocks.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Building by blocks</a></nobr><br>\r
<nobr><a href="../sketcher.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Sketcher</a></nobr><br>\r
- <nobr><a name="7"></a><a href="whlstt3.htm#7" target="_self"><img src="../wht_toc2.gif" border="0" align="absmiddle"> Creation of Advanced Geometrical Objects</a></nobr><br>\r
- <nobr><a href="../explode.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Explode</a></nobr><br>\r
- <nobr><a href="../edge.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Edge</a></nobr><br>\r
- <nobr><a href="../wire.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Wire</a></nobr><br>\r
- <nobr><a href="../face.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Face</a></nobr><br>\r
- <nobr><a href="../shell.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Shell</a></nobr><br>\r
- <nobr><a href="../solid.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Solid</a></nobr><br>\r
- <nobr><a href="../compound.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Compound</a></nobr><br>\r
- <nobr><a name="8"></a><a href="whlstt8.htm#8" target="_self" title="closed book"><img src="../wht_toc1.gif" border="0" align="absmiddle"> Transforming geometrical objects</a></nobr><br>\r
+ <nobr><a name="8"></a><a href="whlstt8.htm#8" target="_self" title="closed book"><img src="../wht_toc1.gif" border="0" align="absmiddle"> Creation of Advanced Geometrical Objects</a></nobr><br>\r
+ <nobr><a name="9"></a><a href="whlstt9.htm#9" target="_self" title="closed book"><img src="../wht_toc1.gif" border="0" align="absmiddle"> Transforming geometrical objects</a></nobr><br>\r
<nobr><a href="../files/salome2_sp3_measuregui_functions.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Using measurement tools</a></nobr><br>\r
- <nobr><a name="14"></a><a href="whlstt14.htm#14" target="_self" title="closed book"><img src="../wht_toc1.gif" border="0" align="absmiddle"> TUI Scripts</a></nobr><br>\r
+ <nobr><a name="15"></a><a href="whlstt15.htm#15" target="_self" title="closed book"><img src="../wht_toc1.gif" border="0" align="absmiddle"> TUI Scripts</a></nobr><br>\r
</p>\r
\r
</td></tr>\r
<p class="tocbody">\r
<nobr><a name="1"></a><a href="whlstt0.htm#1" target="_self"><img src="../wht_toc2.gif" border="0" align="absmiddle"> GEOM module</a></nobr><br>\r
<nobr><a href="../files/introduction_to_geom.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Introduction to GEOM</a></nobr><br>\r
- <nobr><a href="../files/salome2_sp3_geomtoolsgui_functions.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Importing\exporting geometrical objects</a></nobr><br>\r
+ <nobr><a href="../files/salome2_sp3_geomtoolsgui_functions.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Importing/exporting geometrical objects</a></nobr><br>\r
<nobr><a name="2"></a><a href="whlstt2.htm#2" target="_self" title="closed book"><img src="../wht_toc1.gif" border="0" align="absmiddle"> Managing geometrical objects</a></nobr><br>\r
- <nobr><a name="3"></a><a href="whlstt3.htm#3" target="_self" title="closed book"><img src="../wht_toc1.gif" border="0" align="absmiddle"> Creating geometrical objects</a></nobr><br>\r
- <nobr><a name="8"></a><a href="whlstt1.htm#8" target="_self"><img src="../wht_toc2.gif" border="0" align="absmiddle"> Transforming geometrical objects</a></nobr><br>\r
- <nobr><a name="9"></a><a href="whlstt9.htm#9" target="_self" title="closed book"><img src="../wht_toc1.gif" border="0" align="absmiddle"> Basic Operations</a></nobr><br>\r
- <nobr><a name="10"></a><a href="whlstt10.htm#10" target="_self" title="closed book"><img src="../wht_toc1.gif" border="0" align="absmiddle"> Boolean Operations</a></nobr><br>\r
- <nobr><a name="11"></a><a href="whlstt11.htm#11" target="_self" title="closed book"><img src="../wht_toc1.gif" border="0" align="absmiddle"> Transformation Operations</a></nobr><br>\r
- <nobr><a name="12"></a><a href="whlstt12.htm#12" target="_self" title="closed book"><img src="../wht_toc1.gif" border="0" align="absmiddle"> Blocks Operations</a></nobr><br>\r
- <nobr><a name="13"></a><a href="whlstt13.htm#13" target="_self" title="closed book"><img src="../wht_toc1.gif" border="0" align="absmiddle"> Repairing Operations</a></nobr><br>\r
+ <nobr><a name="4"></a><a href="whlstt1.htm#4" target="_self"><img src="../wht_toc2.gif" border="0" align="absmiddle"> Creating geometrical objects</a></nobr><br>\r
+ <nobr><a name="5"></a><a href="whlstt5.htm#5" target="_self" title="closed book"><img src="../wht_toc1.gif" border="0" align="absmiddle"> Creation of Basic Geometric Objects</a></nobr><br>\r
+ <nobr><a name="6"></a><a href="whlstt6.htm#6" target="_self" title="closed book"><img src="../wht_toc1.gif" border="0" align="absmiddle"> Creation of Primitives</a></nobr><br>\r
+ <nobr><a name="7"></a><a href="whlstt7.htm#7" target="_self" title="closed book"><img src="../wht_toc1.gif" border="0" align="absmiddle"> Generation of Complex Objects</a></nobr><br>\r
+ <nobr><a href="../working_with_groups.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Working with groups</a></nobr><br>\r
+ <nobr><a href="../newentity_blocks.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Building by blocks</a></nobr><br>\r
+ <nobr><a href="../sketcher.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Sketcher</a></nobr><br>\r
+ <nobr><a name="8"></a><a href="whlstt4.htm#8" target="_self"><img src="../wht_toc2.gif" border="0" align="absmiddle"> Creation of Advanced Geometrical Objects</a></nobr><br>\r
+ <nobr><a href="../explode.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Explode</a></nobr><br>\r
+ <nobr><a href="../edge.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Edge</a></nobr><br>\r
+ <nobr><a href="../wire.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Wire</a></nobr><br>\r
+ <nobr><a href="../face.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Face</a></nobr><br>\r
+ <nobr><a href="../shell.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Shell</a></nobr><br>\r
+ <nobr><a href="../solid.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Solid</a></nobr><br>\r
+ <nobr><a href="../compound.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Compound</a></nobr><br>\r
+ <nobr><a name="9"></a><a href="whlstt9.htm#9" target="_self" title="closed book"><img src="../wht_toc1.gif" border="0" align="absmiddle"> Transforming geometrical objects</a></nobr><br>\r
<nobr><a href="../files/salome2_sp3_measuregui_functions.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Using measurement tools</a></nobr><br>\r
- <nobr><a name="14"></a><a href="whlstt14.htm#14" target="_self" title="closed book"><img src="../wht_toc1.gif" border="0" align="absmiddle"> TUI Scripts</a></nobr><br>\r
+ <nobr><a name="15"></a><a href="whlstt15.htm#15" target="_self" title="closed book"><img src="../wht_toc1.gif" border="0" align="absmiddle"> TUI Scripts</a></nobr><br>\r
</p>\r
\r
</td></tr>\r
<p class="tocbody">\r
<nobr><a name="1"></a><a href="whlstt0.htm#1" target="_self"><img src="../wht_toc2.gif" border="0" align="absmiddle"> GEOM module</a></nobr><br>\r
<nobr><a href="../files/introduction_to_geom.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Introduction to GEOM</a></nobr><br>\r
- <nobr><a href="../files/salome2_sp3_geomtoolsgui_functions.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Importing\exporting geometrical objects</a></nobr><br>\r
+ <nobr><a href="../files/salome2_sp3_geomtoolsgui_functions.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Importing/exporting geometrical objects</a></nobr><br>\r
<nobr><a name="2"></a><a href="whlstt2.htm#2" target="_self" title="closed book"><img src="../wht_toc1.gif" border="0" align="absmiddle"> Managing geometrical objects</a></nobr><br>\r
- <nobr><a name="3"></a><a href="whlstt3.htm#3" target="_self" title="closed book"><img src="../wht_toc1.gif" border="0" align="absmiddle"> Creating geometrical objects</a></nobr><br>\r
- <nobr><a name="8"></a><a href="whlstt1.htm#8" target="_self"><img src="../wht_toc2.gif" border="0" align="absmiddle"> Transforming geometrical objects</a></nobr><br>\r
- <nobr><a name="9"></a><a href="whlstt8.htm#9" target="_self"><img src="../wht_toc2.gif" border="0" align="absmiddle"> Basic Operations</a></nobr><br>\r
- <nobr><a href="../partition.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Partition</a></nobr><br>\r
- <nobr><a href="../archimede.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Archimede</a></nobr><br>\r
- <nobr><a name="10"></a><a href="whlstt10.htm#10" target="_self" title="closed book"><img src="../wht_toc1.gif" border="0" align="absmiddle"> Boolean Operations</a></nobr><br>\r
- <nobr><a name="11"></a><a href="whlstt11.htm#11" target="_self" title="closed book"><img src="../wht_toc1.gif" border="0" align="absmiddle"> Transformation Operations</a></nobr><br>\r
- <nobr><a name="12"></a><a href="whlstt12.htm#12" target="_self" title="closed book"><img src="../wht_toc1.gif" border="0" align="absmiddle"> Blocks Operations</a></nobr><br>\r
- <nobr><a name="13"></a><a href="whlstt13.htm#13" target="_self" title="closed book"><img src="../wht_toc1.gif" border="0" align="absmiddle"> Repairing Operations</a></nobr><br>\r
+ <nobr><a name="4"></a><a href="whlstt4.htm#4" target="_self" title="closed book"><img src="../wht_toc1.gif" border="0" align="absmiddle"> Creating geometrical objects</a></nobr><br>\r
+ <nobr><a name="9"></a><a href="whlstt1.htm#9" target="_self"><img src="../wht_toc2.gif" border="0" align="absmiddle"> Transforming geometrical objects</a></nobr><br>\r
+ <nobr><a name="10"></a><a href="whlstt10.htm#10" target="_self" title="closed book"><img src="../wht_toc1.gif" border="0" align="absmiddle"> Basic Operations</a></nobr><br>\r
+ <nobr><a name="11"></a><a href="whlstt11.htm#11" target="_self" title="closed book"><img src="../wht_toc1.gif" border="0" align="absmiddle"> Boolean Operations</a></nobr><br>\r
+ <nobr><a name="12"></a><a href="whlstt12.htm#12" target="_self" title="closed book"><img src="../wht_toc1.gif" border="0" align="absmiddle"> Transformation Operations</a></nobr><br>\r
+ <nobr><a name="13"></a><a href="whlstt13.htm#13" target="_self" title="closed book"><img src="../wht_toc1.gif" border="0" align="absmiddle"> Blocks Operations</a></nobr><br>\r
+ <nobr><a name="14"></a><a href="whlstt14.htm#14" target="_self" title="closed book"><img src="../wht_toc1.gif" border="0" align="absmiddle"> Repairing Operations</a></nobr><br>\r
<nobr><a href="../files/salome2_sp3_measuregui_functions.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Using measurement tools</a></nobr><br>\r
- <nobr><a name="14"></a><a href="whlstt14.htm#14" target="_self" title="closed book"><img src="../wht_toc1.gif" border="0" align="absmiddle"> TUI Scripts</a></nobr><br>\r
+ <nobr><a name="15"></a><a href="whlstt15.htm#15" target="_self" title="closed book"><img src="../wht_toc1.gif" border="0" align="absmiddle"> TUI Scripts</a></nobr><br>\r
</p>\r
\r
</td></tr>\r
<table>\r
<tr><td> Start Page </td><td>geom.htm</td></tr>\r
<tr><td> Skin Name </td><td>Default</td></tr>\r
-<tr><td> Generating Time </td><td>18:44 10/18/2005</td></tr>\r
+<tr><td> Generating Time </td><td>17:29 01/30/2006</td></tr>\r
<tr><td> Language ID </td><td>1033</td></tr>\r
<tr><td> Compile Script </td><td>webhelp5_compile_script.xml</td></tr>\r
<tr><td> Compile Build Version </td><td>13.10.606</td></tr>\r
<topic name="Check Free Faces" url="check_free_faces.htm" />\r
<topic name="Circle" url="circle.htm" />\r
<topic name="Close Contour" url="close_contour.htm" />\r
+<topic name="Color" url="color.htm" />\r
<topic name="Common" url="common.htm" />\r
<topic name="Complex Objects" url="complex_objects.htm" />\r
<topic name="Compound" url="compound.htm" />\r
<topic name="Geometrical Objects" url="geometrical_objects.htm" />\r
<topic name="Glue Faces" url="glue_faces.htm" />\r
<topic name="Groups" url="groups.htm" />\r
+<topic name="Isos" url="isos.htm" />\r
<topic name="Line" url="line.htm" />\r
<topic name="Local Coordinate System" url="local_coordinate_system.htm" />\r
<topic name="Measurement Tools" url="measurement_tools.htm" />\r
<topic name="Suppress Internal Wires" url="suppress_internal_wires.htm" />\r
<topic name="Transformation Operations" url="transformation_operations.htm" />\r
<topic name="Translation" url="translation.htm" />\r
+<topic name="Transparency" url="transparency.htm" />\r
<topic name="Turus" url="turus.htm" />\r
<topic name="Vector" url="vector.htm" />\r
<topic name="Wire" url="wire.htm" />\r
+<topic name="Wireframe and Shading" url="wireframe_and_shading.htm" />\r
<topic name="Working Plane" url="working_plane.htm" />\r
<topic name="Working with groups" url="working_with_groups.htm" />\r
\r
<fts>\r
<chunkinfo url="whfwdata0.xml" first="0" last="zmin"/>\r
\r
-<tchunkinfo first="0" last="85" url="whftdata0.xml" />\r
+<tchunkinfo first="0" last="89" url="whftdata0.xml" />\r
\r
</fts>\r
<?xml version='1.0' encoding='windows-1252' ?>\r
<ftswdata>\r
-<key name="0"> 0,3,4,6,7,9,11,12,18,45,47,50,61,62,64,73,40,79, </key>\r
-<key name="00001"> 64, </key>\r
-<key name="0001"> 18, </key>\r
+<key name="0"> 0,3,4,6,7,9,11,12,19,46,48,52,63,64,66,75,41,81,83, </key>\r
+<key name="00001"> 66, </key>\r
+<key name="0001"> 19, </key>\r
<key name="01"> 4, </key>\r
-<key name="1"> 0,2,3,4,6,7,9,10,11,12,15,16,18,20,23,25,26,27,28,29,42,43,45,46,47,49,50,51,52,53,54,55,58,59,60,61,62,63,64,65,66,67,69,70,72,73,75,77,33,35,37,38,39,40,41,32,31,79,80,81,84,85, </key>\r
-<key name="10"> 3,18,50,62,73,79, </key>\r
-<key name="100"> 3,4,6,9,18,45,50,64,73,79, </key>\r
-<key name="1000"> 3,79, </key>\r
+<key name="1"> 0,2,3,4,6,7,9,10,11,12,15,16,19,21,24,26,27,28,29,30,43,44,46,47,48,51,52,53,54,55,56,57,60,61,62,63,64,65,66,67,68,69,71,72,75,74,77,79,36,38,39,40,41,42,34,33,32,81,82,83,84,88,89, </key>\r
+<key name="10"> 3,19,52,64,75,81, </key>\r
+<key name="100"> 3,4,6,9,19,46,52,66,75,81, </key>\r
+<key name="1000"> 3,81, </key>\r
<key name="1000000"> 4, </key>\r
-<key name="100x30x100"> 50, </key>\r
-<key name="105"> 50, </key>\r
-<key name="11"> 50, </key>\r
-<key name="12"> 37, </key>\r
+<key name="100x30x100"> 52, </key>\r
+<key name="105"> 52, </key>\r
+<key name="11"> 52, </key>\r
+<key name="12"> 38, </key>\r
<key name="120"> 9, </key>\r
-<key name="130"> 64, </key>\r
-<key name="140"> 64, </key>\r
-<key name="15"> 9,18,50,62,73, </key>\r
-<key name="150"> 3,9,45,64,73, </key>\r
+<key name="130"> 66, </key>\r
+<key name="140"> 66, </key>\r
+<key name="15"> 9,19,52,64,75, </key>\r
+<key name="150"> 3,9,46,66,75, </key>\r
<key name="165"> 11, </key>\r
-<key name="17"> 62, </key>\r
+<key name="17"> 64, </key>\r
<key name="170"> 3, </key>\r
-<key name="180"> 64,73, </key>\r
-<key name="1840"> 50, </key>\r
-<key name="1d"> 6,38,31,79, </key>\r
-<key name="1e"> 50,64, </key>\r
-<key name="1st"> 49,38,39,40,41,31, </key>\r
-<key name="2"> 56,6,8,12,15,17,18,21,22,23,24,44,45,47,48,50,53,54,55,58,64,68,70,72,33,37,38,39,40,41,32,31,79,80,81,82,84, </key>\r
-<key name="20"> 3,7,9,18,45,62,64,73,79, </key>\r
-<key name="200"> 3,4,6,47,50,64,79, </key>\r
-<key name="210"> 79, </key>\r
+<key name="180"> 66,75, </key>\r
+<key name="1840"> 52, </key>\r
+<key name="1d"> 6,39,32,81, </key>\r
+<key name="1e"> 52,66, </key>\r
+<key name="1st"> 39,40,41,42,32, </key>\r
+<key name="2"> 58,6,8,15,18,19,22,23,24,25,28,45,46,48,49,50,52,55,56,57,60,66,70,72,74,38,39,40,41,42,34,33,32,81,82,84,85,88, </key>\r
+<key name="20"> 3,7,9,19,46,64,66,75,81, </key>\r
+<key name="200"> 3,4,6,48,52,66,81, </key>\r
+<key name="210"> 81, </key>\r
<key name="218"> 11, </key>\r
-<key name="220"> 79, </key>\r
-<key name="23"> 50, </key>\r
-<key name="25"> 3,6,7,62,79, </key>\r
-<key name="250"> 45,50,64,73, </key>\r
-<key name="2d"> 6,43,64,70,33,35,38,40,32,31,79, </key>\r
-<key name="2nd"> 49,38,39,40,41,31, </key>\r
-<key name="2st"> 41, </key>\r
-<key name="3"> 1,2,6,8,11,15,18,20,45,47,50,54,60,61,64,70,72,38,39,40,41,32,31,79,80,82, </key>\r
-<key name="30"> 3,9,11,18,50,62,64,73,79, </key>\r
-<key name="300"> 45,73, </key>\r
-<key name="300000"> 50, </key>\r
+<key name="220"> 81, </key>\r
+<key name="23"> 52, </key>\r
+<key name="25"> 3,6,7,64,81, </key>\r
+<key name="250"> 46,52,66,75, </key>\r
+<key name="2d"> 6,44,66,72,36,39,41,34,33,32,81, </key>\r
+<key name="2nd"> 39,40,41,42,32, </key>\r
+<key name="2st"> 42, </key>\r
+<key name="3"> 1,2,6,8,11,15,19,21,46,48,52,56,62,63,66,72,74,39,40,41,42,33,32,81,82,85, </key>\r
+<key name="30"> 3,9,11,19,52,64,66,75,81, </key>\r
+<key name="300"> 46,75, </key>\r
+<key name="300000"> 52, </key>\r
<key name="31"> 11, </key>\r
-<key name="32"> 64, </key>\r
-<key name="32000"> 50, </key>\r
-<key name="35"> 7,62,64,79, </key>\r
-<key name="3d"> 15,21,43,49,58,60,61,64,70,76,33,34,35,37,38,39,40,32,31,82, </key>\r
-<key name="3rd"> 49,38,31, </key>\r
-<key name="3st"> 41, </key>\r
-<key name="4"> 56,45,47,50,54,70,72,38,40,32,79, </key>\r
-<key name="40"> 7,9,18,45,62,64,79, </key>\r
-<key name="41"> 64, </key>\r
-<key name="45"> 9,62,64, </key>\r
-<key name="5"> 0,3,11,18,43,45,47,50,61,64,70,72,73,35,40,79, </key>\r
-<key name="50"> 3,6,9,11,18,45,50,64,73,79, </key>\r
+<key name="32"> 66, </key>\r
+<key name="32000"> 52, </key>\r
+<key name="35"> 7,64,66,81, </key>\r
+<key name="3d"> 12,15,22,44,51,60,62,63,66,72,78,35,36,38,39,40,41,34,33,32,85,87,89, </key>\r
+<key name="3rd"> 39,32, </key>\r
+<key name="3st"> 42, </key>\r
+<key name="4"> 58,46,48,52,56,72,74,39,41,33,81, </key>\r
+<key name="40"> 7,9,19,46,64,66,81, </key>\r
+<key name="41"> 66, </key>\r
+<key name="45"> 9,64,66, </key>\r
+<key name="5"> 0,3,11,19,44,46,48,52,63,66,72,75,74,36,37,41,81, </key>\r
+<key name="50"> 3,6,9,11,19,46,52,66,75,81,83, </key>\r
<key name="500"> 4, </key>\r
-<key name="55"> 7,62,64, </key>\r
-<key name="6"> 56,50,70,37,40, </key>\r
-<key name="60"> 18,64,79, </key>\r
-<key name="65"> 64, </key>\r
-<key name="7"> 45,50,64,70,40, </key>\r
-<key name="70"> 3,9,45,62,64,73,79, </key>\r
-<key name="8"> 50,70,40, </key>\r
-<key name="80"> 50,64,73,79, </key>\r
-<key name="9"> 45,50,70,72,40, </key>\r
-<key name="90"> 72, </key>\r
-<key name="abl"> 72, </key>\r
-<key name="absolut"> 72, </key>\r
-<key name="accessibl"> 8,28,48,75,41, </key>\r
-<key name="accord"> 0,49,70,40,31, </key>\r
-<key name="accordanc"> 0,16,40, </key>\r
-<key name="achiev"> 70,40, </key>\r
-<key name="ad"> 16,47,40,85, </key>\r
-<key name="add"> 0,3,4,6,7,9,18,45,47,62,64,73,40,79, </key>\r
-<key name="addobject"> 47,85, </key>\r
-<key name="addtostudy"> 3,4,6,7,9,11,18,45,47,62,64,73,79, </key>\r
-<key name="addtostudyinfath"> 6,64, </key>\r
-<key name="adjustment"> 40, </key>\r
-<key name="advanc"> 8,19,24,28,29,45,71,74,75,33,35,83, </key>\r
-<key name="aim"> 38, </key>\r
-<key name="algorithm"> 8,15,20,21,23,58,60,61,72,75,38,81,82,84, </key>\r
-<key name="all_fac"> 64, </key>\r
-<key name="allow"> 56,10,26,51,52,53,66,69,72,77,36,40,41,80,85, </key>\r
-<key name="along"> 8,10,55,57,59,35,38,41,79,80, </key>\r
-<key name="alongsid"> 32, </key>\r
-<key name="already"> 47, </key>\r
-<key name="angl"> 53,64,65,66,70,72,35,40,41,79, </key>\r
-<key name="anoth"> 22,28,48,60,61,75, </key>\r
-<key name="any"> 2,58,66,70,40,80, </key>\r
-<key name="ap"> 49,40,31,79, </key>\r
-<key name="append"> 18,79, </key>\r
-<key name="appli"> 10,38, </key>\r
-<key name="applicabl"> 57,41, </key>\r
-<key name="apply"> 70,40, </key>\r
-<key name="approximation"> 70,40, </key>\r
-<key name="arc"> 1,3,18,45,64,72,73,31,79, </key>\r
-<key name="arc1"> 18, </key>\r
-<key name="arc2"> 18, </key>\r
-<key name="archimed"> 2,4,38, </key>\r
-<key name="area"> 50, </key>\r
-<key name="argument"> 0,1,2,56,8,10,12,13,14,15,16,17,19,20,21,22,23,24,25,26,27,28,29,42,43,44,46,48,49,51,52,53,54,55,57,58,59,60,61,63,65,66,67,68,69,70,71,72,74,75,76,77,78,33,35,37,38,39,40,41,32,31,80,81,82,83,84,85, </key>\r
-<key name="around"> 53,65,35,79, </key>\r
-<key name="associat"> 34, </key>\r
-<key name="attribut"> 34, </key>\r
-<key name="automatical"> 56,49,31, </key>\r
-<key name="availabl"> 0,56,16,72,76,77,78,34,40,85, </key>\r
-<key name="ax"> 8,49,31,80, </key>\r
-<key name="axi"> 18,20,23,49,51,53,55,65,66,35,37,39,41,31,79, </key>\r
-<key name="b"> 21,31, </key>\r
-<key name="background"> 85, </key>\r
-<key name="bas"> 20,23,28,53,59,64,65,67,70,35,39,40,41,80,81, </key>\r
-<key name="baseshap"> 59,35, </key>\r
-<key name="basi"> 28,35, </key>\r
-<key name="basic"> 1,2,3,4,15,21,25,30,48,49,50,58,60,61,72,33,37,38,31,82,84, </key>\r
-<key name="basicproperti"> 50,37, </key>\r
-<key name="bb"> 50, </key>\r
-<key name="be"> 24, </key>\r
-<key name="befor"> 64,70,72,40, </key>\r
-<key name="begin"> 64, </key>\r
-<key name="below"> 56, </key>\r
-<key name="besi"> 21, </key>\r
-<key name="bezi"> 3,21,70,40,31, </key>\r
-<key name="block"> 56,6,9,5,27,50,54,63,37,38, </key>\r
-<key name="boolean"> 7,17,22,44,30,68,33,37,32, </key>\r
-<key name="both"> 8,20,54,34, </key>\r
-<key name="boudari"> 64, </key>\r
-<key name="bound"> 9,45,50,37, </key>\r
-<key name="boundari"> 13,64,69,77,40, </key>\r
-<key name="boundary"> 13,64,78,40, </key>\r
-<key name="boundingbox"> 50,37, </key>\r
-<key name="box"> 0,4,56,6,8,11,12,13,16,22,27,47,49,50,62,64,70,72,78,33,35,36,37,38,39,40,41,31,79,83,85, </key>\r
+<key name="55"> 7,64,66, </key>\r
+<key name="6"> 58,52,72,38,41, </key>\r
+<key name="60"> 19,66,81, </key>\r
+<key name="65"> 66, </key>\r
+<key name="7"> 46,52,66,72,41, </key>\r
+<key name="70"> 3,9,46,64,66,75,81, </key>\r
+<key name="8"> 52,72,41, </key>\r
+<key name="80"> 52,66,75,81, </key>\r
+<key name="9"> 46,52,72,74,41, </key>\r
+<key name="90"> 74, </key>\r
+<key name="abl"> 74, </key>\r
+<key name="abov"> 54, </key>\r
+<key name="absolut"> 74, </key>\r
+<key name="absolute"> 83, </key>\r
+<key name="accessibl"> 8,17,29,30,50,77,42, </key>\r
+<key name="accord"> 0,72,41,32, </key>\r
+<key name="accordanc"> 0,16,41, </key>\r
+<key name="achiev"> 72,41, </key>\r
+<key name="ad"> 16,48,37,41,89, </key>\r
+<key name="add"> 0,3,4,6,7,9,19,46,48,64,66,75,41,81,89, </key>\r
+<key name="addobject"> 48,89, </key>\r
+<key name="addtostudy"> 3,4,6,7,9,11,19,46,48,64,66,75,81, </key>\r
+<key name="addtostudyinfath"> 6,66, </key>\r
+<key name="adjustment"> 41, </key>\r
+<key name="advanc"> 8,20,25,29,30,46,73,76,77,36,34,86, </key>\r
+<key name="aim"> 39, </key>\r
+<key name="algorithm"> 8,15,21,22,24,51,54,60,62,63,74,77,39,84,85,88, </key>\r
+<key name="all_fac"> 66, </key>\r
+<key name="allow"> 58,10,27,53,54,55,68,71,74,79,41,42,82, </key>\r
+<key name="along"> 8,10,57,59,61,36,39,42,81,82, </key>\r
+<key name="alongsid"> 33, </key>\r
+<key name="already"> 48, </key>\r
+<key name="angl"> 55,66,67,68,72,74,36,41,42,81, </key>\r
+<key name="anoth"> 23,29,50,62,63,77, </key>\r
+<key name="any"> 2,54,60,68,72,41,82, </key>\r
+<key name="ap"> 51,41,32,81,89, </key>\r
+<key name="appear"> 89, </key>\r
+<key name="append"> 19,81, </key>\r
+<key name="appli"> 10,39, </key>\r
+<key name="applicabl"> 59,42, </key>\r
+<key name="apply"> 72,41, </key>\r
+<key name="approximation"> 72,41, </key>\r
+<key name="arc"> 1,3,19,46,66,75,74,32,81, </key>\r
+<key name="arc1"> 19, </key>\r
+<key name="arc2"> 19, </key>\r
+<key name="archimed"> 2,4,39, </key>\r
+<key name="area"> 52, </key>\r
+<key name="argument"> 0,1,2,58,8,10,13,14,15,16,18,20,21,22,23,24,25,26,27,28,29,30,43,44,45,47,49,50,51,53,54,55,56,57,59,60,61,62,63,65,67,68,69,70,71,72,73,74,76,77,78,79,80,36,38,39,40,41,42,34,33,32,82,84,85,86,88,89, </key>\r
+<key name="around"> 55,67,36,81, </key>\r
+<key name="associat"> 35, </key>\r
+<key name="attribut"> 35, </key>\r
+<key name="automatical"> 58,51,32, </key>\r
+<key name="availabl"> 0,58,16,74,78,79,80,35,37,41,89, </key>\r
+<key name="ax"> 8,51,32,82, </key>\r
+<key name="axi"> 19,21,24,51,53,55,57,67,68,36,38,40,42,32,81, </key>\r
+<key name="b"> 3,22,32, </key>\r
+<key name="bas"> 21,24,29,55,61,66,67,69,72,36,40,41,42,82,84, </key>\r
+<key name="baseshap"> 61,36, </key>\r
+<key name="basi"> 29,36, </key>\r
+<key name="basic"> 1,2,3,4,15,22,26,31,50,51,52,60,62,63,74,38,39,34,32,85,88, </key>\r
+<key name="basicproperti"> 52,38, </key>\r
+<key name="bb"> 52, </key>\r
+<key name="be"> 25, </key>\r
+<key name="befor"> 66,72,74,41, </key>\r
+<key name="begin"> 66, </key>\r
+<key name="belong"> 10, </key>\r
+<key name="below"> 58,54, </key>\r
+<key name="besi"> 22, </key>\r
+<key name="bezi"> 3,22,72,41,32, </key>\r
+<key name="big"> 54, </key>\r
+<key name="block"> 58,6,9,5,28,31,52,56,65,38,39, </key>\r
+<key name="boolean"> 7,18,23,45,31,70,38,34,33, </key>\r
+<key name="both"> 8,21,56,35, </key>\r
+<key name="boudari"> 66, </key>\r
+<key name="bound"> 9,46,52,38, </key>\r
+<key name="boundari"> 13,66,71,79,41, </key>\r
+<key name="boundary"> 13,66,80,41, </key>\r
+<key name="boundingbox"> 52,38, </key>\r
+<key name="box"> 0,4,58,6,8,11,12,13,16,17,23,28,48,52,64,66,72,74,80,36,37,38,39,40,41,42,34,32,81,83,86,89, </key>\r
<key name="box_tr1"> 6, </key>\r
<key name="box_tr2"> 6, </key>\r
-<key name="box1"> 50,62,64, </key>\r
-<key name="box2"> 50,62,64, </key>\r
-<key name="box3"> 62, </key>\r
-<key name="break"> 63,38, </key>\r
-<key name="brep"> 30,64,36, </key>\r
-<key name="brows"> 10,42,49,34,36,31,83, </key>\r
-<key name="bsplin"> 70,40, </key>\r
-<key name="bsplinerestriction"> 70,40, </key>\r
-<key name="build"> 56,6,9,5,19,24,29,30,58,63,71,74,33,38,83, </key>\r
-<key name="button"> 49,69,77,40,31,83, </key>\r
-<key name="bypas"> 56, </key>\r
-<key name="c"> 45,73, </key>\r
-<key name="cad"> 30, </key>\r
-<key name="camera"> 31,84, </key>\r
-<key name="cas"> 56,49,54,70,78,40,31, </key>\r
-<key name="cent"> 8,15,25,50,53,72,75,37,39,41,31, </key>\r
-<key name="center"> 26, </key>\r
-<key name="centerofscal"> 67,41, </key>\r
-<key name="centr"> 20,81, </key>\r
-<key name="central"> 20,23,67,39, </key>\r
+<key name="box1"> 52,64,66, </key>\r
+<key name="box2"> 52,64,66, </key>\r
+<key name="box3"> 64, </key>\r
+<key name="break"> 65,39, </key>\r
+<key name="brep"> 31,66,37, </key>\r
+<key name="brows"> 43,51,35,37,32,86, </key>\r
+<key name="bsplin"> 72,41, </key>\r
+<key name="bsplinerestriction"> 72,41, </key>\r
+<key name="build"> 58,6,9,5,20,25,30,31,60,65,73,76,39,34,86, </key>\r
+<key name="button"> 51,71,79,41,32,86,89, </key>\r
+<key name="bypas"> 58, </key>\r
+<key name="c"> 46,75, </key>\r
+<key name="cad"> 31, </key>\r
+<key name="camera"> 32,88, </key>\r
+<key name="cas"> 58,51,56,72,80,41,32, </key>\r
+<key name="catia"> 37, </key>\r
+<key name="cent"> 8,15,21,26,52,54,55,74,77,38,40,42,32,84, </key>\r
+<key name="center"> 27, </key>\r
+<key name="centerofscal"> 69,42, </key>\r
+<key name="central"> 21,24,69,40, </key>\r
+<key name="certain"> 89, </key>\r
<key name="chain"> 6, </key>\r
-<key name="chamf"> 10,38,79, </key>\r
-<key name="chamfer_"> 79, </key>\r
-<key name="chamfer_all"> 79, </key>\r
-<key name="chamfer_f"> 79, </key>\r
-<key name="chamfer_f1"> 79, </key>\r
-<key name="chang"> 11,12, </key>\r
-<key name="check"> 6,13,14,27,29,50,64,78,37,38,40, </key>\r
+<key name="chamf"> 10,39,81, </key>\r
+<key name="chamfer_"> 81, </key>\r
+<key name="chamfer_all"> 81, </key>\r
+<key name="chamfer_f"> 81, </key>\r
+<key name="chamfer_f1"> 81, </key>\r
+<key name="chang"> 11,12,17,49,83,87, </key>\r
+<key name="check"> 6,13,14,28,30,52,66,80,38,39,41, </key>\r
<key name="check_box"> 6, </key>\r
<key name="checkandimprov"> 6, </key>\r
-<key name="checkbox"> 51,52,53,66,77,40,41,80, </key>\r
-<key name="checkcompoundofblock"> 50,37, </key>\r
-<key name="checkshap"> 50,64,37, </key>\r
-<key name="choic"> 21, </key>\r
-<key name="choos"> 27,34,36,38, </key>\r
-<key name="circl"> 3,15,72,31,82, </key>\r
+<key name="checkbox"> 53,54,55,68,79,41,42,82, </key>\r
+<key name="checkcompoundofblock"> 52,38, </key>\r
+<key name="checkshap"> 52,66,38, </key>\r
+<key name="choic"> 22, </key>\r
+<key name="choos"> 28,51,35,37,39, </key>\r
+<key name="circl"> 3,15,74,32, </key>\r
<key name="circle1"> 3, </key>\r
<key name="circle2"> 3, </key>\r
-<key name="click"> 12,34,36, </key>\r
-<key name="clos"> 13,16,64,70,74,33,40, </key>\r
-<key name="closecontour"> 16,64,40, </key>\r
-<key name="closedwir"> 13,64,40, </key>\r
-<key name="closur"> 16,40, </key>\r
-<key name="cm"> 50, </key>\r
-<key name="coincident"> 46,40, </key>\r
-<key name="collinear"> 20,23, </key>\r
-<key name="color"> 11,12, </key>\r
-<key name="command"> 0,1,2,56,8,10,12,13,14,15,16,17,19,20,21,23,24,25,26,27,28,29,42,43,44,46,48,49,51,52,53,54,55,57,58,59,60,61,63,65,66,67,68,69,70,71,72,74,75,76,77,78,33,34,35,37,38,39,40,41,32,31,80,81,82,83,85, </key>\r
-<key name="common"> 7,16,17,40,32,79, </key>\r
-<key name="complex"> 18,28,43,30,59,65,35,38,32, </key>\r
-<key name="component"> 3,18,43,49,72,41,31,80, </key>\r
-<key name="compos"> 56,37, </key>\r
-<key name="compound"> 56,6,17,18,19,22,26,27,44,45,46,50,53,55,57,64,68,33,37,38,40,41, </key>\r
-<key name="compsolid"> 26,28,59,65,35, </key>\r
-<key name="comput"> 2,37,38, </key>\r
-<key name="con"> 20,62,64,39, </key>\r
-<key name="concern"> 37, </key>\r
-<key name="condition"> 37, </key>\r
-<key name="cone1"> 62, </key>\r
-<key name="cone2"> 62, </key>\r
-<key name="confirm"> 36, </key>\r
-<key name="conical"> 70,40, </key>\r
-<key name="connect"> 10,29,71,33,37,38,83, </key>\r
-<key name="connection"> 37, </key>\r
-<key name="consequent"> 79, </key>\r
-<key name="consider"> 16,46,37,40, </key>\r
-<key name="consol"> 37, </key>\r
-<key name="constraint"> 56, </key>\r
-<key name="construct"> 56,74,33,39, </key>\r
-<key name="construction"> 21,30,59,32, </key>\r
-<key name="constructor"> 49,38,39,40,41,31, </key>\r
-<key name="contain"> 0,6,14,16,63,38,40, </key>\r
-<key name="content"> 47,36, </key>\r
-<key name="continuiti"> 70,40, </key>\r
-<key name="continuity"> 70,40, </key>\r
-<key name="continuity2d"> 70,40, </key>\r
-<key name="continuity3d"> 70,40, </key>\r
-<key name="contour"> 16,64,40, </key>\r
-<key name="conversion"> 70,40, </key>\r
-<key name="coord"> 50, </key>\r
-<key name="coordinat"> 8,20,23,26,49,50,52,61,72,75,37,39,41,31,79,80,81,82,84, </key>\r
-<key name="copy"> 51,52,66,41,80, </key>\r
-<key name="corner"> 8,9,39, </key>\r
-<key name="correction"> 70,40, </key>\r
-<key name="correspond"> 2,13,21,24,27,49,33,35,38,39,40,31, </key>\r
-<key name="count"> 64, </key>\r
-<key name="coupl"> 72, </key>\r
-<key name="cover"> 32, </key>\r
-<key name="creat"> 1,2,3,4,56,6,7,8,9,10,15,16,18,19,20,21,23,24,25,26,28,29,42,43,44,45,47,48,49,50,51,52,53,59,60,61,62,64,65,66,67,68,71,72,73,74,75,33,34,35,37,38,39,40,41,31,79,80,81,82,83,84,85, </key>\r
-<key name="createanddisplaygo"> 3,4,6,7,9,11,18,45,47,62,64,73,79, </key>\r
-<key name="creategroup"> 47,85, </key>\r
-<key name="creation"> 1,3,8,15,16,18,19,20,21,23,24,25,28,29,43,45,47,30,48,59,60,61,62,64,65,71,74,75,35,38,40,81,82,83,85, </key>\r
-<key name="cs1"> 79, </key>\r
-<key name="cs2"> 79, </key>\r
-<key name="current"> 8,28,48,72,75,34, </key>\r
-<key name="curv"> 3,21,43,70,72,35,40,31, </key>\r
-<key name="curve2dmod"> 70,40, </key>\r
-<key name="curve3dmod"> 70,40, </key>\r
-<key name="curvecontinuity"> 70,40, </key>\r
-<key name="cut"> 7,17,22,58,64,70,38,40,32, </key>\r
-<key name="cut_without_f_2"> 64, </key>\r
-<key name="cylind"> 7,20,23,62,64,39,79, </key>\r
-<key name="cylinder"> 18, </key>\r
-<key name="cylindrical"> 70,40, </key>\r
-<key name="d"> 10,64, </key>\r
-<key name="d1"> 10,38,79, </key>\r
-<key name="d2"> 10,38,79, </key>\r
-<key name="data"> 37, </key>\r
-<key name="default"> 61,72,85, </key>\r
-<key name="defin"> 1,8,10,15,20,21,23,25,26,27,28,42,43,48,53,54,55,59,60,61,65,66,67,70,72,75,38,39,40,41,31,80,81,82,84, </key>\r
-<key name="definit"> 77,37,40, </key>\r
-<key name="definition"> 59,70,35,40, </key>\r
-<key name="deflection"> 2,38, </key>\r
-<key name="degenerat"> 37, </key>\r
-<key name="degre"> 43,65,70,72,35,40, </key>\r
-<key name="delet"> 58,38, </key>\r
-<key name="density"> 2,38, </key>\r
-<key name="depend"> 54,38, </key>\r
-<key name="descr"> 50, </key>\r
-<key name="description"> 56,12,50,72,73,33,34,35,37,38,39,40,41,31,85, </key>\r
-<key name="desir"> 70,40, </key>\r
-<key name="destin"> 30, </key>\r
-<key name="destination"> 72, </key>\r
-<key name="detect"> 13,69,77,40, </key>\r
-<key name="detection"> 70,40, </key>\r
-<key name="diagonal"> 39, </key>\r
-<key name="dialog"> 0,56,12,13,16,22,49,70,72,78,33,35,36,37,38,39,40,41,31,83,85, </key>\r
-<key name="dif"> 34, </key>\r
-<key name="differencelist"> 47, </key>\r
-<key name="different"> 12,51,34,37,39, </key>\r
-<key name="dimension"> 8,10,23,28,53,35,37,38,39, </key>\r
-<key name="dimention"> 53, </key>\r
-<key name="dir"> 53,55,41, </key>\r
-<key name="dir1"> 55,41, </key>\r
-<key name="dir2"> 55,41, </key>\r
-<key name="direction"> 2,15,20,25,28,49,53,54,55,60,65,66,72,35,38,39,41,31,81, </key>\r
-<key name="dirface1v"> 54,38, </key>\r
-<key name="dirfaceid1"> 54,38, </key>\r
-<key name="dirfaceid1u"> 54,38, </key>\r
-<key name="dirfaceid1v"> 54,38, </key>\r
-<key name="dirfaceid2"> 54,38, </key>\r
-<key name="dirfaceid2u"> 54,38, </key>\r
-<key name="dirfaceid2v"> 54,38, </key>\r
-<key name="display"> 3,4,6,7,9,11,12,18,45,47,49,62,64,69,73,77,34,36,37,40,31,79, </key>\r
-<key name="displayall"> 34, </key>\r
-<key name="displayon"> 34, </key>\r
-<key name="distanc"> 46,50,57,37,40,41, </key>\r
-<key name="divid"> 0,64,70,40, </key>\r
-<key name="divideedg"> 0,64,40, </key>\r
-<key name="don"> 8,16,28,55,75,40,41, </key>\r
-<key name="doubl"> 12,53,54,55,72, </key>\r
-<key name="dropsmalledg"> 70,40, </key>\r
-<key name="dx"> 8,50,72,41,80,82, </key>\r
-<key name="dy"> 8,50,72,41,80,82, </key>\r
-<key name="dz"> 8,50,41,80,82, </key>\r
-<key name="e"> 34, </key>\r
-<key name="e1"> 56, </key>\r
-<key name="e2"> 56, </key>\r
-<key name="e3"> 56, </key>\r
-<key name="e4"> 56, </key>\r
-<key name="easi"> 85, </key>\r
-<key name="edg"> 0,1,56,8,9,10,13,15,16,18,21,24,25,26,28,42,43,45,48,50,59,61,63,64,65,70,71,72,33,35,37,38,40,31,79,82,83, </key>\r
-<key name="edge_ind"> 64, </key>\r
-<key name="edge_point"> 64, </key>\r
+<key name="click"> 12,17,35,37,87,89, </key>\r
+<key name="clos"> 13,16,66,72,76,41,34,89, </key>\r
+<key name="closecontour"> 16,66,41, </key>\r
+<key name="closedwir"> 13,66,41, </key>\r
+<key name="closur"> 16,41, </key>\r
+<key name="cm"> 52, </key>\r
+<key name="coincid"> 54, </key>\r
+<key name="coincident"> 47,41, </key>\r
+<key name="collinear"> 21,24, </key>\r
+<key name="color"> 11,12,17,87, </key>\r
+<key name="command"> 0,1,2,58,8,10,12,13,14,15,16,17,18,20,21,22,24,25,26,27,28,29,30,43,44,45,47,50,51,53,54,55,56,57,59,60,61,62,63,65,67,68,69,70,71,72,73,74,76,77,78,79,80,35,36,38,39,40,41,42,34,33,32,82,83,84,85,86,87,89, </key>\r
+<key name="common"> 7,10,16,18,41,33,81, </key>\r
+<key name="complex"> 19,29,44,31,61,67,36,39,33, </key>\r
+<key name="component"> 3,19,44,74,42,32,82, </key>\r
+<key name="compos"> 58,38, </key>\r
+<key name="compound"> 58,6,18,19,20,23,27,28,45,46,47,52,55,57,59,66,70,38,39,41,42,34, </key>\r
+<key name="compsolid"> 27,29,61,67,36, </key>\r
+<key name="comput"> 2,38,39, </key>\r
+<key name="con"> 21,64,66,40, </key>\r
+<key name="concern"> 38, </key>\r
+<key name="condition"> 38, </key>\r
+<key name="cone1"> 64, </key>\r
+<key name="cone2"> 64, </key>\r
+<key name="confirm"> 37,89, </key>\r
+<key name="conical"> 72,41, </key>\r
+<key name="connect"> 10,30,73,38,39,34,86, </key>\r
+<key name="connection"> 38, </key>\r
+<key name="consequent"> 81, </key>\r
+<key name="consider"> 16,47,38,41, </key>\r
+<key name="consol"> 38, </key>\r
+<key name="constraint"> 58, </key>\r
+<key name="construct"> 58,76,40,34, </key>\r
+<key name="construction"> 22,31,61,33, </key>\r
+<key name="constructor"> 39,40,41,42,32, </key>\r
+<key name="contain"> 0,6,14,16,65,39,41, </key>\r
+<key name="content"> 48,37, </key>\r
+<key name="continuiti"> 72,41, </key>\r
+<key name="continuity"> 72,41, </key>\r
+<key name="continuity2d"> 72,41, </key>\r
+<key name="continuity3d"> 72,41, </key>\r
+<key name="contour"> 16,66,41, </key>\r
+<key name="conversion"> 72,41, </key>\r
+<key name="coord"> 52, </key>\r
+<key name="coordinat"> 8,21,24,27,51,52,54,63,74,77,38,40,42,32,81,82,84,85,88, </key>\r
+<key name="copy"> 53,54,68,42,82, </key>\r
+<key name="corner"> 8,9,40, </key>\r
+<key name="correction"> 72,41, </key>\r
+<key name="correspond"> 2,13,22,25,28,36,39,40,41,34,32, </key>\r
+<key name="count"> 66, </key>\r
+<key name="coupl"> 74, </key>\r
+<key name="cover"> 33, </key>\r
+<key name="creat"> 1,2,3,4,58,6,7,8,9,10,15,16,19,20,21,22,24,25,26,27,29,30,43,44,45,46,48,50,51,52,53,54,55,61,62,63,64,66,67,68,69,70,73,75,74,76,77,35,36,38,39,40,41,42,34,32,81,82,84,85,86,88,89, </key>\r
+<key name="createanddisplaygo"> 3,4,6,7,9,11,19,46,48,64,66,75,81, </key>\r
+<key name="creategroup"> 48,89, </key>\r
+<key name="creation"> 1,3,8,15,16,19,20,21,22,24,25,26,29,30,44,46,48,31,50,61,62,63,64,66,67,73,76,77,36,39,41,84,85,86,89, </key>\r
+<key name="cs"> 51, </key>\r
+<key name="cs1"> 81, </key>\r
+<key name="cs2"> 81, </key>\r
+<key name="cub"> 54, </key>\r
+<key name="current"> 8,29,50,74,77,35, </key>\r
+<key name="curv"> 3,22,44,72,74,36,41,32, </key>\r
+<key name="curve2dmod"> 72,41, </key>\r
+<key name="curve3dmod"> 72,41, </key>\r
+<key name="curvecontinuity"> 72,41, </key>\r
+<key name="cut"> 7,18,23,60,66,72,39,41,33, </key>\r
+<key name="cut_without_f_2"> 66, </key>\r
+<key name="cylind"> 7,21,24,64,66,40,81, </key>\r
+<key name="cylinder"> 19, </key>\r
+<key name="cylindrical"> 72,41, </key>\r
+<key name="d"> 10,66, </key>\r
+<key name="d1"> 10,39,81, </key>\r
+<key name="d2"> 10,39,81, </key>\r
+<key name="data"> 38, </key>\r
+<key name="data_dir"> 66, </key>\r
+<key name="default"> 63,74,89, </key>\r
+<key name="defin"> 1,8,10,15,21,22,24,26,27,28,29,43,44,50,51,55,56,57,61,62,63,67,68,69,72,74,77,37,39,40,41,42,32,82,84,85,88,89, </key>\r
+<key name="definit"> 79,38,41, </key>\r
+<key name="definition"> 61,72,36,41, </key>\r
+<key name="deflection"> 2,39, </key>\r
+<key name="degenerat"> 38, </key>\r
+<key name="degre"> 44,67,72,74,36,41, </key>\r
+<key name="delet"> 60,39,89, </key>\r
+<key name="density"> 2,39, </key>\r
+<key name="depend"> 56,39, </key>\r
+<key name="descr"> 52, </key>\r
+<key name="description"> 58,12,52,75,74,35,36,38,39,40,41,42,34,32, </key>\r
+<key name="design"> 89, </key>\r
+<key name="desir"> 72,41, </key>\r
+<key name="destin"> 31, </key>\r
+<key name="destination"> 74, </key>\r
+<key name="detect"> 13,71,79,41, </key>\r
+<key name="detection"> 72,41, </key>\r
+<key name="diagonal"> 40, </key>\r
+<key name="dialog"> 0,58,12,13,16,23,72,74,80,36,37,38,39,40,41,42,34,32,83,86,89, </key>\r
+<key name="dif"> 35, </key>\r
+<key name="differencelist"> 48, </key>\r
+<key name="different"> 12,53,35,38,40, </key>\r
+<key name="dimension"> 8,10,24,29,55,36,38,39,40, </key>\r
+<key name="dimention"> 55, </key>\r
+<key name="dir"> 55,57,42, </key>\r
+<key name="dir1"> 57,42, </key>\r
+<key name="dir2"> 57,42, </key>\r
+<key name="direction"> 2,15,21,26,29,51,55,56,57,67,68,74,36,39,40,42,32,84, </key>\r
+<key name="dirface1v"> 56,39, </key>\r
+<key name="dirfaceid1"> 56,39, </key>\r
+<key name="dirfaceid1u"> 56,39, </key>\r
+<key name="dirfaceid1v"> 56,39, </key>\r
+<key name="dirfaceid2"> 56,39, </key>\r
+<key name="dirfaceid2u"> 56,39, </key>\r
+<key name="dirfaceid2v"> 56,39, </key>\r
+<key name="display"> 3,4,6,7,9,11,12,17,19,46,48,49,64,66,71,75,79,35,37,38,41,32,81,83,87,89, </key>\r
+<key name="displayall"> 35, </key>\r
+<key name="displayon"> 35, </key>\r
+<key name="distanc"> 47,52,59,38,41,42, </key>\r
+<key name="divid"> 0,66,72,41, </key>\r
+<key name="divideedg"> 0,66,41, </key>\r
+<key name="do"> 54, </key>\r
+<key name="doesn"> 48, </key>\r
+<key name="don"> 8,16,29,57,77,41,42, </key>\r
+<key name="doubl"> 12,55,56,57,74,83, </key>\r
+<key name="down"> 89, </key>\r
+<key name="dropsmalledg"> 72,41, </key>\r
+<key name="dx"> 8,52,74,42,82,85, </key>\r
+<key name="dy"> 8,52,74,42,82,85, </key>\r
+<key name="dz"> 8,52,42,82,85, </key>\r
+<key name="e"> 35, </key>\r
+<key name="e1"> 58, </key>\r
+<key name="e2"> 58, </key>\r
+<key name="e3"> 58, </key>\r
+<key name="e4"> 58, </key>\r
+<key name="easi"> 89, </key>\r
+<key name="edg"> 0,1,58,8,9,10,13,15,16,19,22,25,26,27,29,43,44,46,50,52,61,63,65,66,67,72,73,74,36,38,39,41,34,32,81,85,86,87, </key>\r
+<key name="edge_ind"> 66, </key>\r
+<key name="edge_point"> 66, </key>\r
<key name="edge1"> 9, </key>\r
<key name="edge2"> 9, </key>\r
<key name="edge3"> 9, </key>\r
<key name="edge4"> 9, </key>\r
-<key name="edgeid"> 0,40, </key>\r
-<key name="edit"> 85, </key>\r
-<key name="egdemaxtol"> 37, </key>\r
-<key name="egdemintol"> 37, </key>\r
-<key name="eith"> 56, </key>\r
-<key name="element"> 16,29,72,33,34,35,37,39,40,32,31, </key>\r
-<key name="elementary"> 56, </key>\r
-<key name="ellips"> 3,25,31, </key>\r
-<key name="els"> 50,64, </key>\r
-<key name="empty"> 77,78,40, </key>\r
-<key name="encounter"> 37, </key>\r
-<key name="end"> 1,16,28,52,64,72,40,41,31,79,80,82, </key>\r
-<key name="ent"> 49,36,31, </key>\r
-<key name="entir"> 37, </key>\r
-<key name="entity"> 1,56,8,15,19,20,21,23,24,25,26,28,29,43,48,49,59,60,61,65,71,72,74,75,33,35,39,31,81,82,83,84,85, </key>\r
-<key name="equal"> 20,72, </key>\r
-<key name="eras"> 34, </key>\r
-<key name="eraseall"> 34, </key>\r
-<key name="eraseon"> 34, </key>\r
-<key name="error"> 13,47,37,40, </key>\r
-<key name="etc"> 26,70,33,40, </key>\r
-<key name="exampl"> 0,1,2,56,8,10,12,13,14,15,16,17,19,20,21,22,23,24,25,27,28,29,42,43,44,46,48,49,51,52,53,54,55,57,58,59,60,61,63,64,65,66,67,68,69,70,71,72,74,75,76,77,78,33,35,38,39,40,41,32,31,80,81,82,83,85, </key>\r
-<key name="except"> 78,40, </key>\r
-<key name="exist"> 60,72,85, </key>\r
-<key name="explod"> 6,5,26,27,45,33,38, </key>\r
-<key name="export"> 30,36, </key>\r
-<key name="exportation"> 36, </key>\r
-<key name="extra"> 37, </key>\r
-<key name="extract"> 27,38, </key>\r
-<key name="extrud"> 59,65,35, </key>\r
-<key name="extrusion"> 28,35, </key>\r
-<key name="f"> 45,73, </key>\r
-<key name="f_2"> 64, </key>\r
-<key name="f_ind_1"> 79, </key>\r
-<key name="f_ind_2"> 79, </key>\r
-<key name="f1"> 56, </key>\r
-<key name="f1_id"> 64, </key>\r
-<key name="f2"> 56, </key>\r
-<key name="f3"> 56, </key>\r
-<key name="f4"> 56, </key>\r
-<key name="f5"> 56, </key>\r
-<key name="f6"> 56, </key>\r
-<key name="fac"> 3,56,9,10,14,16,18,26,27,28,29,42,43,45,46,47,50,54,57,58,59,60,64,65,70,71,72,73,76,78,33,35,37,38,40,41,31,79,84, </key>\r
-<key name="face_nam"> 64, </key>\r
-<key name="face_rot"> 64, </key>\r
-<key name="face1"> 10,18,45,38, </key>\r
-<key name="face2"> 10,18,45,38, </key>\r
-<key name="face3"> 45, </key>\r
-<key name="faceid"> 47, </key>\r
-<key name="facemaxtol"> 37, </key>\r
-<key name="facemintol"> 37, </key>\r
-<key name="factor"> 67,41,79, </key>\r
-<key name="fail"> 50,64, </key>\r
-<key name="fals"> 13,40, </key>\r
-<key name="field"> 49,31, </key>\r
-<key name="fil"> 18,43,49,35,36,31, </key>\r
-<key name="fill"> 77,35,40, </key>\r
-<key name="fillet"> 10,42,38,79, </key>\r
-<key name="filletall"> 79, </key>\r
-<key name="final"> 51,60,61,80,84, </key>\r
-<key name="first"> 8,15,20,23,24,51,54,55,58,60,61,73,75,33,38,39,41,32,31,80,81,82,84, </key>\r
-<key name="fix"> 70,40, </key>\r
-<key name="fixfacesiz"> 70,40, </key>\r
-<key name="fixshap"> 64,70,40, </key>\r
-<key name="flag"> 37, </key>\r
-<key name="flight_solid"> 64, </key>\r
-<key name="follow"> 72,73,33,34,37,32, </key>\r
-<key name="format"> 30,36, </key>\r
-<key name="four"> 56,9, </key>\r
-<key name="fre"> 13,14,64,69,77,40, </key>\r
-<key name="function"> 30,33,79, </key>\r
-<key name="functionaliti"> 56, </key>\r
-<key name="functionality"> 72,85, </key>\r
-<key name="fus"> 7,11,44,32, </key>\r
+<key name="edgeid"> 0,41, </key>\r
+<key name="edit"> 89, </key>\r
+<key name="egdemaxtol"> 38, </key>\r
+<key name="egdemintol"> 38, </key>\r
+<key name="eith"> 58, </key>\r
+<key name="element"> 16,30,74,35,36,38,40,41,34,33,32,89, </key>\r
+<key name="elementary"> 58, </key>\r
+<key name="ellips"> 3,26,32, </key>\r
+<key name="els"> 52,66, </key>\r
+<key name="empty"> 79,80,41, </key>\r
+<key name="encounter"> 38, </key>\r
+<key name="end"> 1,16,29,54,66,74,41,42,32,81,82,85, </key>\r
+<key name="ent"> 32,89, </key>\r
+<key name="entir"> 38, </key>\r
+<key name="entity"> 1,58,8,15,20,21,22,24,25,26,27,29,30,44,50,51,61,62,63,67,73,74,76,77,36,40,34,32,84,85,86,88,89, </key>\r
+<key name="equal"> 21,74, </key>\r
+<key name="eras"> 35, </key>\r
+<key name="eraseall"> 35, </key>\r
+<key name="eraseon"> 35, </key>\r
+<key name="error"> 13,48,38,41, </key>\r
+<key name="etc"> 27,72,41,34, </key>\r
+<key name="exampl"> 0,1,2,58,8,10,12,13,14,15,16,17,18,20,21,22,23,24,25,26,28,29,30,43,44,45,47,49,50,51,53,54,55,56,57,59,60,61,62,63,65,66,67,68,69,70,71,72,73,74,76,77,78,79,80,36,37,39,40,41,42,34,33,32,82,83,84,85,86,87,89, </key>\r
+<key name="except"> 80,41, </key>\r
+<key name="exist"> 62,74,89, </key>\r
+<key name="expand"> 37, </key>\r
+<key name="explod"> 6,5,27,28,46,39,34, </key>\r
+<key name="export"> 31,37, </key>\r
+<key name="exportation"> 37, </key>\r
+<key name="extra"> 38, </key>\r
+<key name="extract"> 28,39, </key>\r
+<key name="extrud"> 61,67,36, </key>\r
+<key name="extrusion"> 29,36, </key>\r
+<key name="f"> 46,75, </key>\r
+<key name="f_2"> 66, </key>\r
+<key name="f_ind_1"> 81, </key>\r
+<key name="f_ind_2"> 81, </key>\r
+<key name="f1"> 58, </key>\r
+<key name="f1_id"> 66, </key>\r
+<key name="f2"> 58, </key>\r
+<key name="f3"> 58, </key>\r
+<key name="f4"> 58, </key>\r
+<key name="f5"> 58, </key>\r
+<key name="f6"> 58, </key>\r
+<key name="fac"> 3,58,9,10,14,16,19,27,28,29,30,43,44,46,47,48,52,56,59,60,61,62,66,67,72,73,75,74,78,80,36,38,39,41,42,34,32,81,88, </key>\r
+<key name="face_nam"> 66, </key>\r
+<key name="face_rot"> 66, </key>\r
+<key name="face1"> 10,19,46,39, </key>\r
+<key name="face2"> 10,19,46,39, </key>\r
+<key name="face3"> 46, </key>\r
+<key name="faceid"> 48, </key>\r
+<key name="facemaxtol"> 38, </key>\r
+<key name="facemintol"> 38, </key>\r
+<key name="factor"> 69,42,81, </key>\r
+<key name="fail"> 52,66, </key>\r
+<key name="fals"> 13,41, </key>\r
+<key name="field"> 32, </key>\r
+<key name="fil"> 17,19,44,51,36,37,32,87, </key>\r
+<key name="fill"> 79,36,41, </key>\r
+<key name="fillet"> 10,43,39,81, </key>\r
+<key name="filletall"> 81, </key>\r
+<key name="final"> 53,62,63,82,88,89, </key>\r
+<key name="first"> 8,15,21,24,25,51,53,54,56,57,60,62,63,75,77,39,40,42,34,33,32,82,84,85,88, </key>\r
+<key name="fix"> 72,41, </key>\r
+<key name="fixfacesiz"> 72,41, </key>\r
+<key name="fixshap"> 66,72,41, </key>\r
+<key name="flag"> 38, </key>\r
+<key name="flight_solid"> 66, </key>\r
+<key name="follow"> 75,74,35,38,34,33,83,89, </key>\r
+<key name="format"> 31,37, </key>\r
+<key name="four"> 58,9, </key>\r
+<key name="fre"> 13,14,66,71,79,41, </key>\r
+<key name="function"> 31,34,81, </key>\r
+<key name="functionaliti"> 58, </key>\r
+<key name="functionality"> 74,89, </key>\r
+<key name="fus"> 7,11,45,33, </key>\r
<key name="fuse_id"> 11, </key>\r
-<key name="gap"> 16,40, </key>\r
-<key name="general"> 56,32, </key>\r
-<key name="generat"> 28,43,59,35, </key>\r
-<key name="generation"> 28,43,30,59,65,35, </key>\r
-<key name="geom"> 3,4,6,7,9,11,12,18,45,47,30,50,62,63,64,73,33,34,35,36,37,38,39,41,32,31,79, </key>\r
-<key name="geom_object"> 0,1,2,56,8,10,13,14,15,16,17,19,20,21,22,23,24,25,26,27,28,29,42,43,44,46,48,51,52,53,54,55,57,58,59,60,61,63,65,66,67,68,69,70,71,72,74,75,76,77,78,33,35,37,38,39,40,41,31,80,81,82,83,85, </key>\r
-<key name="geometric"> 1,56,15,19,21,24,25,28,29,43,48,59,60,61,65,71,74,82,83, </key>\r
-<key name="geometrical"> 3,12,17,45,30,53,33,34,35,36,37,38,39,40,41,32,31,85, </key>\r
-<key name="geometry"> 64,70,40, </key>\r
-<key name="geompy"> 0,1,2,3,4,56,6,7,8,9,10,11,13,15,16,17,18,19,20,21,23,24,25,26,27,28,29,42,43,44,45,46,47,48,49,50,51,52,53,54,55,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,33,35,37,38,39,40,41,32,31,79,80,81,82,83,85, </key>\r
-<key name="get"> 6,50,64,33,37,79, </key>\r
+<key name="gap"> 16,41, </key>\r
+<key name="general"> 58,33, </key>\r
+<key name="generat"> 29,44,61,36, </key>\r
+<key name="generation"> 29,44,31,61,67,36, </key>\r
+<key name="geom"> 3,4,6,7,9,11,12,19,46,48,31,52,64,65,66,75,35,36,37,38,39,40,42,34,33,32,81, </key>\r
+<key name="geom_object"> 0,1,2,58,8,10,13,14,15,16,18,20,21,22,23,24,25,26,27,28,29,30,43,44,45,47,50,53,54,55,56,57,59,60,61,62,63,65,67,68,69,70,71,72,73,74,76,77,78,79,80,36,38,39,40,41,42,34,32,82,84,85,86,89, </key>\r
+<key name="geometric"> 1,58,15,20,22,25,26,29,30,44,50,61,62,63,67,73,76,85,86, </key>\r
+<key name="geometrical"> 3,12,18,46,31,55,35,36,37,38,39,40,41,42,34,33,32,87,89, </key>\r
+<key name="geometry"> 66,72,41, </key>\r
+<key name="geompy"> 0,1,2,3,4,58,6,7,8,9,10,11,13,15,16,18,19,20,21,22,24,25,26,27,28,29,30,43,44,45,46,47,48,50,51,52,53,54,55,56,57,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,75,74,76,77,78,79,80,36,38,39,40,41,42,34,33,32,81,82,84,85,86,89, </key>\r
+<key name="get"> 6,52,66,38,34,81, </key>\r
+<key name="getenv"> 66, </key>\r
<key name="getfacenearpoint"> 6, </key>\r
-<key name="getfreeboundary"> 13,64,40, </key>\r
-<key name="getfreefacesid"> 14,64,40, </key>\r
-<key name="getobjectid"> 85, </key>\r
-<key name="getsubshap"> 64, </key>\r
-<key name="getsubshapeid"> 47,64,33,79, </key>\r
+<key name="getfreeboundary"> 13,66,41, </key>\r
+<key name="getfreefacesid"> 14,66,41, </key>\r
+<key name="getobjectid"> 89, </key>\r
+<key name="getsubshap"> 66, </key>\r
+<key name="getsubshapeid"> 48,66,34,81, </key>\r
<key name="getsubshapeindex"> 6, </key>\r
-<key name="gg"> 3,4,6,7,9,11,12,18,45,47,50,62,64,73,79, </key>\r
-<key name="giv"> 15,25,29,60,31, </key>\r
-<key name="given"> 3,4,6,9,10,14,18,23,26,27,29,42,45,46,47,48,53,57,61,64,73,33,37,38,40,41,31,79,81, </key>\r
-<key name="glu"> 6,46,50,58,64,37,38,40, </key>\r
-<key name="graphic"> 34, </key>\r
-<key name="gravity"> 26,50,53,37, </key>\r
-<key name="group"> 6,47,63,38,85, </key>\r
-<key name="group1"> 47, </key>\r
-<key name="gui"> 38, </key>\r
-<key name="half"> 31, </key>\r
-<key name="handl"> 85, </key>\r
-<key name="hav"> 70,71,33,40, </key>\r
-<key name="height"> 7,20,23,28,64,35,39,79, </key>\r
+<key name="gg"> 3,4,6,7,9,11,12,17,19,46,48,52,64,66,75,81,83,87, </key>\r
+<key name="giv"> 15,26,62,37,32, </key>\r
+<key name="given"> 3,6,9,10,14,19,24,27,28,30,43,46,47,50,55,59,63,66,75,38,39,41,42,34,32,81,84, </key>\r
+<key name="global"> 51,54, </key>\r
+<key name="glu"> 6,47,52,60,66,38,39,41, </key>\r
+<key name="graphic"> 35, </key>\r
+<key name="gravity"> 27,52,55,38, </key>\r
+<key name="group"> 6,48,31,65,39,89, </key>\r
+<key name="group_n"> 89, </key>\r
+<key name="group1"> 48, </key>\r
+<key name="gui"> 39, </key>\r
+<key name="half"> 32, </key>\r
+<key name="handl"> 89, </key>\r
+<key name="hav"> 72,73,41,34, </key>\r
+<key name="height"> 7,21,24,29,66,36,40,81, </key>\r
+<key name="her"> 89, </key>\r
<key name="hexagonal"> 9, </key>\r
-<key name="hexahedral"> 56,9,54,38, </key>\r
-<key name="hexahedron"> 56, </key>\r
-<key name="hid"> 34, </key>\r
-<key name="highlight"> 13,37,40, </key>\r
-<key name="hol"> 64,77,40, </key>\r
-<key name="hold"> 83, </key>\r
-<key name="how"> 37, </key>\r
-<key name="i"> 18,47,64,34, </key>\r
-<key name="i11"> 37, </key>\r
-<key name="i12"> 37, </key>\r
-<key name="i13"> 37, </key>\r
-<key name="i21"> 37, </key>\r
-<key name="i22"> 37, </key>\r
-<key name="i23"> 37, </key>\r
-<key name="i31"> 37, </key>\r
-<key name="i32"> 37, </key>\r
-<key name="i33"> 37, </key>\r
-<key name="id"> 0,12,14,16,26,54,76,77,78,33,34,38,40,85, </key>\r
+<key name="hexahedral"> 58,9,56,39, </key>\r
+<key name="hexahedron"> 58, </key>\r
+<key name="hid"> 35, </key>\r
+<key name="highlight"> 13,38,41, </key>\r
+<key name="hol"> 66,79,41, </key>\r
+<key name="hold"> 86, </key>\r
+<key name="how"> 38, </key>\r
+<key name="i"> 19,48,66,35, </key>\r
+<key name="i11"> 38, </key>\r
+<key name="i12"> 38, </key>\r
+<key name="i13"> 38, </key>\r
+<key name="i21"> 38, </key>\r
+<key name="i22"> 38, </key>\r
+<key name="i23"> 38, </key>\r
+<key name="i31"> 38, </key>\r
+<key name="i32"> 38, </key>\r
+<key name="i33"> 38, </key>\r
+<key name="id"> 0,12,14,16,17,27,56,66,78,79,80,35,39,41,34,81,83,87,89, </key>\r
<key name="id_arc"> 3, </key>\r
<key name="id_archimed"> 4, </key>\r
-<key name="id_axi"> 79, </key>\r
+<key name="id_axi"> 81, </key>\r
<key name="id_bezi"> 3, </key>\r
-<key name="id_box"> 4,6,64,79, </key>\r
+<key name="id_box"> 4,6,66,81, </key>\r
<key name="id_box_tr1"> 6, </key>\r
<key name="id_box_tr2"> 6, </key>\r
-<key name="id_box1"> 62, </key>\r
-<key name="id_box2"> 62, </key>\r
-<key name="id_box3"> 62, </key>\r
-<key name="id_chamfer_"> 79, </key>\r
-<key name="id_chamfer_all"> 79, </key>\r
-<key name="id_chamfer_f"> 79, </key>\r
-<key name="id_chamfer_f1"> 79, </key>\r
+<key name="id_box1"> 64,66, </key>\r
+<key name="id_box2"> 64,66, </key>\r
+<key name="id_box3"> 64, </key>\r
+<key name="id_chamfer_"> 81, </key>\r
+<key name="id_chamfer_all"> 81, </key>\r
+<key name="id_chamfer_f"> 81, </key>\r
+<key name="id_chamfer_f1"> 81, </key>\r
<key name="id_circle1"> 3, </key>\r
<key name="id_circle2"> 3, </key>\r
<key name="id_common"> 7, </key>\r
-<key name="id_compound"> 6,18, </key>\r
-<key name="id_cone1"> 62, </key>\r
-<key name="id_cone2"> 62, </key>\r
-<key name="id_cs1"> 79, </key>\r
-<key name="id_cs2"> 79, </key>\r
-<key name="id_cut"> 7,64, </key>\r
-<key name="id_cut_without_f_2"> 64, </key>\r
-<key name="id_cylind"> 7,79, </key>\r
-<key name="id_divid"> 64, </key>\r
-<key name="id_edg"> 18,45,64, </key>\r
+<key name="id_compound"> 6,19,66, </key>\r
+<key name="id_cone1"> 64, </key>\r
+<key name="id_cone2"> 64, </key>\r
+<key name="id_cs1"> 81, </key>\r
+<key name="id_cs2"> 81, </key>\r
+<key name="id_cut"> 7,66, </key>\r
+<key name="id_cut_without_f_2"> 66, </key>\r
+<key name="id_cylind"> 7,81, </key>\r
+<key name="id_divid"> 66, </key>\r
+<key name="id_edg"> 19,46,66, </key>\r
<key name="id_edge1"> 9, </key>\r
<key name="id_edge2"> 9, </key>\r
<key name="id_edge3"> 9, </key>\r
<key name="id_edge4"> 9, </key>\r
<key name="id_ellips"> 3, </key>\r
-<key name="id_fac"> 3,64,73, </key>\r
-<key name="id_face_rot"> 64, </key>\r
-<key name="id_face1"> 18,45, </key>\r
-<key name="id_face2"> 18,45, </key>\r
-<key name="id_face3"> 45, </key>\r
-<key name="id_fil"> 18, </key>\r
-<key name="id_fillet"> 79, </key>\r
-<key name="id_filletall"> 79, </key>\r
+<key name="id_fac"> 3,66,75, </key>\r
+<key name="id_face_rot"> 66, </key>\r
+<key name="id_face1"> 19,46, </key>\r
+<key name="id_face2"> 19,46, </key>\r
+<key name="id_face3"> 46, </key>\r
+<key name="id_fil"> 19, </key>\r
+<key name="id_fillet"> 81, </key>\r
+<key name="id_filletall"> 81, </key>\r
<key name="id_fus"> 7, </key>\r
-<key name="id_group1"> 47, </key>\r
-<key name="id_importbrep"> 64, </key>\r
+<key name="id_glu"> 66, </key>\r
+<key name="id_group1"> 48, </key>\r
+<key name="id_importbrep"> 66, </key>\r
<key name="id_interpol"> 3, </key>\r
<key name="id_line1"> 3, </key>\r
<key name="id_line2"> 3, </key>\r
<key name="id_make_block_explod"> 6, </key>\r
-<key name="id_mirror1"> 79, </key>\r
-<key name="id_mirror2"> 79, </key>\r
-<key name="id_mirror3"> 79, </key>\r
-<key name="id_offset"> 79, </key>\r
-<key name="id_p"> 64, </key>\r
+<key name="id_mirror1"> 81, </key>\r
+<key name="id_mirror2"> 81, </key>\r
+<key name="id_mirror3"> 81, </key>\r
+<key name="id_offset"> 81, </key>\r
+<key name="id_p"> 66, </key>\r
<key name="id_p_on_arc"> 3, </key>\r
<key name="id_p0"> 3, </key>\r
<key name="id_p1"> 3,9, </key>\r
<key name="id_p100"> 3, </key>\r
<key name="id_p2"> 3,9, </key>\r
<key name="id_p3"> 3,9, </key>\r
-<key name="id_p4"> 3,9,79, </key>\r
+<key name="id_p4"> 3,9,81, </key>\r
<key name="id_partition1"> 4, </key>\r
<key name="id_partition2"> 4, </key>\r
<key name="id_partition3"> 4, </key>\r
-<key name="id_pip"> 18, </key>\r
-<key name="id_plan"> 4,79, </key>\r
+<key name="id_pip"> 19, </key>\r
+<key name="id_plan"> 4,81, </key>\r
<key name="id_plane1"> 3, </key>\r
<key name="id_plane2"> 3, </key>\r
<key name="id_plane3"> 3, </key>\r
<key name="id_polylin"> 3, </key>\r
-<key name="id_position"> 79, </key>\r
-<key name="id_prism"> 79, </key>\r
-<key name="id_prism1"> 18, </key>\r
-<key name="id_prism2"> 18, </key>\r
+<key name="id_position"> 81, </key>\r
+<key name="id_prism"> 81, </key>\r
+<key name="id_prism1"> 19, </key>\r
+<key name="id_prism2"> 19, </key>\r
<key name="id_px"> 3, </key>\r
<key name="id_py"> 3, </key>\r
<key name="id_pz"> 3, </key>\r
<key name="id_qface1"> 9, </key>\r
<key name="id_qface2"> 9, </key>\r
<key name="id_qface3"> 9, </key>\r
-<key name="id_result"> 64, </key>\r
-<key name="id_revolution"> 18, </key>\r
-<key name="id_rot1d"> 79, </key>\r
-<key name="id_rot2d"> 79, </key>\r
-<key name="id_rotation"> 79, </key>\r
-<key name="id_scal"> 79, </key>\r
+<key name="id_result"> 66, </key>\r
+<key name="id_revolution"> 19, </key>\r
+<key name="id_rot1d"> 81, </key>\r
+<key name="id_rot2d"> 81, </key>\r
+<key name="id_rotation"> 81, </key>\r
+<key name="id_scal"> 81, </key>\r
<key name="id_section"> 7, </key>\r
-<key name="id_sew"> 64, </key>\r
-<key name="id_shap"> 64, </key>\r
-<key name="id_shell"> 45, </key>\r
-<key name="id_sketcher1"> 73, </key>\r
-<key name="id_sketcher2"> 73, </key>\r
-<key name="id_solid"> 45, </key>\r
+<key name="id_sew"> 66, </key>\r
+<key name="id_shap"> 66, </key>\r
+<key name="id_shell"> 46, </key>\r
+<key name="id_sketcher1"> 75, </key>\r
+<key name="id_sketcher2"> 75, </key>\r
+<key name="id_solid"> 46, </key>\r
<key name="id_solid1"> 9, </key>\r
<key name="id_solid2"> 9, </key>\r
<key name="id_spher"> 7, </key>\r
-<key name="id_sphere1"> 62, </key>\r
-<key name="id_sphere2"> 62, </key>\r
-<key name="id_sphere3"> 62, </key>\r
-<key name="id_torus1"> 62, </key>\r
-<key name="id_torus2"> 62, </key>\r
-<key name="id_tr1d"> 79, </key>\r
-<key name="id_tr2d"> 79, </key>\r
-<key name="id_translation1"> 79, </key>\r
-<key name="id_translation2"> 79, </key>\r
-<key name="id_translation3"> 79, </key>\r
+<key name="id_sphere1"> 64, </key>\r
+<key name="id_sphere2"> 64, </key>\r
+<key name="id_sphere3"> 64, </key>\r
+<key name="id_torus1"> 64, </key>\r
+<key name="id_torus2"> 64, </key>\r
+<key name="id_tr1d"> 81, </key>\r
+<key name="id_tr2d"> 81, </key>\r
+<key name="id_translation1"> 81, </key>\r
+<key name="id_translation2"> 81, </key>\r
+<key name="id_translation3"> 81, </key>\r
<key name="id_vector"> 3, </key>\r
<key name="id_vector1"> 3, </key>\r
<key name="id_vector2"> 3, </key>\r
-<key name="id_vector3"> 18, </key>\r
-<key name="id_vr"> 79, </key>\r
+<key name="id_vector3"> 19, </key>\r
+<key name="id_vr"> 81, </key>\r
<key name="id_vxy"> 3, </key>\r
-<key name="id_wir"> 18,45,64, </key>\r
-<key name="id_wire_clos"> 64, </key>\r
-<key name="idlist"> 64,79, </key>\r
-<key name="idlist_"> 79, </key>\r
-<key name="idlist_f"> 79, </key>\r
-<key name="if"> 0,13,16,20,29,47,50,58,64,70,77,78,33,37,38,40,85, </key>\r
-<key name="ig"> 30,36, </key>\r
-<key name="imag"> 51,41,79, </key>\r
-<key name="import"> 3,4,6,7,9,11,18,45,47,30,50,62,64,73,34,36,37,79, </key>\r
-<key name="importation"> 36, </key>\r
-<key name="importbrep"> 64, </key>\r
-<key name="importcomponentgui"> 3,4,6,7,9,11,18,45,47,50,62,64,73,79, </key>\r
-<key name="impossibl"> 29, </key>\r
+<key name="id_wir"> 19,46,66, </key>\r
+<key name="id_wire_clos"> 66, </key>\r
+<key name="idlist"> 66,81, </key>\r
+<key name="idlist_"> 81, </key>\r
+<key name="idlist_f"> 81, </key>\r
+<key name="if"> 0,13,16,21,30,48,52,60,66,72,79,80,38,39,41,34, </key>\r
+<key name="ig"> 31,37, </key>\r
+<key name="imag"> 53,42,81, </key>\r
+<key name="implement"> 37, </key>\r
+<key name="import"> 3,4,6,7,9,11,19,46,48,31,52,64,66,75,35,37,38,81, </key>\r
+<key name="importation"> 37, </key>\r
+<key name="importbrep"> 66, </key>\r
+<key name="importcomponentgui"> 3,4,6,7,9,11,19,46,48,52,64,66,75,81, </key>\r
+<key name="impossibl"> 30, </key>\r
<key name="improv"> 6, </key>\r
-<key name="in"> 57,41, </key>\r
-<key name="includ"> 47, </key>\r
-<key name="increas"> 16,40, </key>\r
-<key name="independent"> 17,34, </key>\r
-<key name="index"> 26,64, </key>\r
-<key name="indic"> 10,26,58,38, </key>\r
-<key name="indicat"> 55,61, </key>\r
-<key name="inertia"> 50,37, </key>\r
-<key name="inform"> 37, </key>\r
-<key name="initial"> 51,52,53,66,67,41,80, </key>\r
-<key name="inquir"> 37, </key>\r
-<key name="inretia"> 37, </key>\r
-<key name="insert"> 16,40, </key>\r
-<key name="insid"> 58,38, </key>\r
-<key name="instead"> 20, </key>\r
-<key name="integ"> 27,54,38, </key>\r
-<key name="integer"> 54,38, </key>\r
-<key name="intend"> 70,40, </key>\r
-<key name="interactive"> 27,38, </key>\r
-<key name="intermediat"> 56, </key>\r
-<key name="internal"> 64,78,40, </key>\r
+<key name="in"> 59,37,42, </key>\r
+<key name="includ"> 48, </key>\r
+<key name="increas"> 16,41, </key>\r
+<key name="independent"> 18,35, </key>\r
+<key name="index"> 27,89, </key>\r
+<key name="indic"> 10,27,60,66,39, </key>\r
+<key name="indicat"> 57,63, </key>\r
+<key name="inertia"> 52,38, </key>\r
+<key name="inform"> 38, </key>\r
+<key name="initial"> 53,54,55,68,69,42,82, </key>\r
+<key name="inquir"> 38, </key>\r
+<key name="insert"> 16,41, </key>\r
+<key name="insid"> 60,39, </key>\r
+<key name="instead"> 21, </key>\r
+<key name="integ"> 56,39, </key>\r
+<key name="integer"> 28,56,39, </key>\r
+<key name="intend"> 72,41, </key>\r
+<key name="interactive"> 28,39, </key>\r
+<key name="intermediat"> 58, </key>\r
+<key name="internal"> 66,80,41, </key>\r
<key name="interpol"> 3, </key>\r
-<key name="interpolat"> 21, </key>\r
-<key name="interpolation"> 3, </key>\r
-<key name="intersect"> 58,38, </key>\r
-<key name="intersection"> 58,38, </key>\r
-<key name="introduction"> 56,30, </key>\r
-<key name="invalid"> 50,64,70,40, </key>\r
-<key name="investigat"> 37, </key>\r
-<key name="ion"> 83, </key>\r
-<key name="isbyparamet"> 0,40, </key>\r
-<key name="iscommonvertex"> 16,40, </key>\r
+<key name="interpolat"> 22, </key>\r
+<key name="intersect"> 60,39, </key>\r
+<key name="intersection"> 60,39, </key>\r
+<key name="introduction"> 58,31, </key>\r
+<key name="invalid"> 52,66,72,41, </key>\r
+<key name="invisibl"> 83, </key>\r
+<key name="isbyparamet"> 0,41, </key>\r
+<key name="iscommonvertex"> 16,41, </key>\r
<key name="iso"> 12, </key>\r
-<key name="isolin"> 12, </key>\r
-<key name="isplanarfac"> 45, </key>\r
-<key name="isplanarwant"> 3,18,29,73, </key>\r
-<key name="issucces"> 64, </key>\r
-<key name="isvalid"> 50,64, </key>\r
-<key name="iteration"> 43,35, </key>\r
-<key name="itself"> 16,40, </key>\r
-<key name="ix"> 50,37, </key>\r
-<key name="iy"> 50,37, </key>\r
-<key name="iz"> 50,37, </key>\r
-<key name="just"> 56, </key>\r
-<key name="keep"> 51,52,66,41,80, </key>\r
-<key name="ko"> 64, </key>\r
-<key name="l"> 45,73, </key>\r
-<key name="last"> 24,33,31, </key>\r
-<key name="lc"> 49,31, </key>\r
-<key name="least"> 21,31, </key>\r
-<key name="len"> 64, </key>\r
-<key name="length"> 0,50,72,37,40, </key>\r
-<key name="les"> 70,40, </key>\r
+<key name="isolin"> 49, </key>\r
+<key name="isplanarfac"> 46, </key>\r
+<key name="isplanarwant"> 3,19,30,75, </key>\r
+<key name="issucces"> 66, </key>\r
+<key name="isvalid"> 52,66, </key>\r
+<key name="iteration"> 44,36, </key>\r
+<key name="itself"> 16,41, </key>\r
+<key name="ix"> 52,38, </key>\r
+<key name="iy"> 52,38, </key>\r
+<key name="iz"> 52,38, </key>\r
+<key name="just"> 58, </key>\r
+<key name="keep"> 53,54,68,42,82,89, </key>\r
+<key name="keyboard"> 89, </key>\r
+<key name="ko"> 66, </key>\r
+<key name="l"> 46,75, </key>\r
+<key name="last"> 25,51,34,32, </key>\r
+<key name="lc"> 51,32, </key>\r
+<key name="least"> 22,32, </key>\r
+<key name="leav"> 89, </key>\r
+<key name="left"> 54, </key>\r
+<key name="len"> 66, </key>\r
+<key name="length"> 0,52,74,38,41, </key>\r
+<key name="les"> 72,41, </key>\r
<key name="li"> 1,15, </key>\r
-<key name="limit"> 58,38, </key>\r
-<key name="lin"> 2,3,48,72,38,31, </key>\r
+<key name="limit"> 60,39, </key>\r
+<key name="lin"> 2,3,50,74,39,32,89, </key>\r
<key name="line1"> 3, </key>\r
<key name="line2"> 3, </key>\r
-<key name="linear"> 72, </key>\r
-<key name="list"> 3,10,13,14,16,19,21,26,29,43,47,58,63,69,70,71,72,74,76,77,78,33,35,38,40,31,83,85, </key>\r
+<key name="linear"> 74, </key>\r
+<key name="list"> 3,10,13,14,16,20,22,27,30,44,48,60,65,66,71,72,73,74,76,78,79,80,36,39,41,34,32,81,86,89, </key>\r
<key name="listchain"> 6, </key>\r
-<key name="listoffaceid"> 10,38, </key>\r
-<key name="listofgeomshap"> 76,40, </key>\r
-<key name="listofid"> 76,33,40, </key>\r
-<key name="listofind"> 26, </key>\r
-<key name="listofkeepinsid"> 58,38, </key>\r
-<key name="listofmaterial"> 58,38, </key>\r
-<key name="listofremoveinsid"> 58,38, </key>\r
-<key name="listofshap"> 19,21,58,69,71,74,33,38,40,31,83, </key>\r
-<key name="listofshapeid"> 38, </key>\r
-<key name="listoftool"> 58,38, </key>\r
-<key name="listofwireid"> 77,40, </key>\r
-<key name="listshap"> 42, </key>\r
-<key name="local"> 49,57,72,41,31,79, </key>\r
+<key name="listoffaceid"> 10,39, </key>\r
+<key name="listofgeomshap"> 78,41, </key>\r
+<key name="listofid"> 78,41,34, </key>\r
+<key name="listofind"> 27, </key>\r
+<key name="listofkeepinsid"> 60,39, </key>\r
+<key name="listofmaterial"> 60,39, </key>\r
+<key name="listofremoveinsid"> 60,39, </key>\r
+<key name="listofshap"> 20,22,60,71,73,76,39,41,34,32,86, </key>\r
+<key name="listofshapeid"> 39, </key>\r
+<key name="listoftool"> 60,39, </key>\r
+<key name="listofwireid"> 79,41, </key>\r
+<key name="listshap"> 43, </key>\r
+<key name="local"> 51,54,59,74,42,32,81, </key>\r
<key name="localop"> 6, </key>\r
-<key name="locat"> 49,61,31, </key>\r
-<key name="location"> 49,52,36,41,31,79, </key>\r
-<key name="ly"> 72,78,40, </key>\r
-<key name="main"> 0,1,2,56,8,5,10,13,14,15,16,17,19,20,21,22,23,24,25,26,27,28,29,42,43,44,46,48,49,50,51,52,53,54,55,57,58,59,60,61,63,65,66,67,68,69,70,71,72,74,75,76,77,78,33,34,35,37,38,39,40,41,31,80,81,82,83,84,85, </key>\r
-<key name="mainshap"> 85, </key>\r
-<key name="major"> 25,39,31,81, </key>\r
-<key name="mak"> 6,7,10,50,54,55,58,64,38,41,79,80,85, </key>\r
+<key name="locat"> 63,32, </key>\r
+<key name="location"> 51,54,37,42,32,81, </key>\r
+<key name="lsc"> 54, </key>\r
+<key name="ly"> 74,80,41, </key>\r
+<key name="main"> 0,1,2,58,8,5,10,13,14,15,16,18,20,21,22,23,24,25,26,27,28,29,30,43,44,45,47,50,51,52,53,54,55,56,57,59,60,61,62,63,65,67,68,69,70,71,72,73,74,76,77,78,79,80,35,36,38,39,40,41,42,34,32,82,84,85,86,88,89, </key>\r
+<key name="mainshap"> 89, </key>\r
+<key name="major"> 26,40,32,84, </key>\r
+<key name="mak"> 6,7,10,52,56,57,60,66,39,42,81,82,89, </key>\r
<key name="make_block_explod"> 6, </key>\r
-<key name="makearc"> 1,3,18,45,64,73,31,79, </key>\r
-<key name="makebezi"> 3,21,31, </key>\r
-<key name="makeblockexplod"> 6,27,38, </key>\r
-<key name="makeboolean"> 11,32, </key>\r
-<key name="makebox"> 8,11,50,62,64,39,79, </key>\r
-<key name="makeboxdxdydz"> 6,8,50,62,64,79, </key>\r
-<key name="makeboxtwopnt"> 4,8,47,62, </key>\r
-<key name="makecdg"> 50,37, </key>\r
-<key name="makechamf"> 79, </key>\r
-<key name="makechamferall"> 10,79, </key>\r
-<key name="makechamferedg"> 10,38,79, </key>\r
-<key name="makechamferfac"> 10,38,79, </key>\r
-<key name="makecircl"> 3,15,31, </key>\r
+<key name="makearc"> 1,3,19,46,66,75,32,81, </key>\r
+<key name="makebezi"> 3,22,32, </key>\r
+<key name="makeblockexplod"> 6,28,39, </key>\r
+<key name="makeboolean"> 11,33, </key>\r
+<key name="makebox"> 8,11,52,64,66,40,81, </key>\r
+<key name="makeboxdxdydz"> 6,8,52,64,66,81, </key>\r
+<key name="makeboxtwopnt"> 4,8,48,64, </key>\r
+<key name="makecdg"> 52,38, </key>\r
+<key name="makechamf"> 81, </key>\r
+<key name="makechamferall"> 10,81, </key>\r
+<key name="makechamferedg"> 10,39,81, </key>\r
+<key name="makechamferfac"> 10,39,81, </key>\r
+<key name="makecircl"> 3,15,32, </key>\r
<key name="makecirclethreepnt"> 3,15, </key>\r
-<key name="makecommon"> 7,17, </key>\r
-<key name="makecompound"> 6,18,19,50,64,33, </key>\r
-<key name="makecon"> 20,62,64,39, </key>\r
-<key name="makeconer1r2h"> 20,62, </key>\r
-<key name="makecut"> 7,64, </key>\r
-<key name="makecylind"> 7,23,64,39,79, </key>\r
-<key name="makecylinderrh"> 23, </key>\r
-<key name="makeedg"> 9,18,24,45,64,33, </key>\r
-<key name="makeellips"> 3,25,31, </key>\r
-<key name="makefac"> 3,18,29,45,64,73,33,79, </key>\r
-<key name="makefacewir"> 29,45, </key>\r
-<key name="makefil"> 18,43,35, </key>\r
-<key name="makefillet"> 42,38,79, </key>\r
-<key name="makefilletall"> 42,79, </key>\r
-<key name="makefus"> 7,44, </key>\r
-<key name="makegluefac"> 46,50,40, </key>\r
-<key name="makehalfpartition"> 4,58, </key>\r
-<key name="makehexa"> 9, </key>\r
-<key name="makehexa2fac"> 9, </key>\r
-<key name="makehexasolid"> 56, </key>\r
-<key name="makehexasolidtwofac"> 56, </key>\r
-<key name="makeinterpol"> 3,21,31, </key>\r
-<key name="makelin"> 3,48,31, </key>\r
-<key name="makelinetwopnt"> 3, </key>\r
-<key name="makemark"> 49,31,79, </key>\r
-<key name="makemirrorbyaxi"> 51,79, </key>\r
-<key name="makemirrorbyplan"> 51,41,79, </key>\r
-<key name="makemirrorbypoint"> 51,79, </key>\r
-<key name="makemultirotation1d"> 53,41, </key>\r
-<key name="makemultirotation2d"> 53,41, </key>\r
-<key name="makemultitransformation1d"> 6,54,38, </key>\r
-<key name="makemultitransformation2d"> 6,54,38, </key>\r
-<key name="makemultitranslation1d"> 55,41,79, </key>\r
-<key name="makemultitranslation2d"> 55,41,79, </key>\r
-<key name="makeoffset"> 57,41,79, </key>\r
-<key name="makepartition"> 4,58,38, </key>\r
-<key name="makepip"> 18,59,35, </key>\r
-<key name="makeplan"> 3,4,60,31, </key>\r
-<key name="makeplanefac"> 3,60, </key>\r
-<key name="makeplanethreepnt"> 3,60,79, </key>\r
-<key name="makepolylin"> 3,21,31, </key>\r
-<key name="makeposition"> 52,41,79, </key>\r
-<key name="makeprism"> 18,28,45,35, </key>\r
-<key name="makeprismvech"> 18,28,64,79, </key>\r
-<key name="makequad"> 9, </key>\r
-<key name="makequad2edg"> 9, </key>\r
-<key name="makequad4vertic"> 9, </key>\r
-<key name="makequadfac"> 56, </key>\r
-<key name="makequadfaceedg"> 56, </key>\r
-<key name="makequadfacevertic"> 56, </key>\r
-<key name="makerevolution"> 18,65,35, </key>\r
-<key name="makerotation"> 64,66,41,79, </key>\r
-<key name="makescaletransform"> 67,41,79, </key>\r
-<key name="makesection"> 7,68, </key>\r
-<key name="makesew"> 64,69,40, </key>\r
-<key name="makeshell"> 45,71,33, </key>\r
-<key name="makesketch"> 45,72,73, </key>\r
-<key name="makesketcheronplan"> 73, </key>\r
-<key name="makesolid"> 45,74,33, </key>\r
-<key name="makespher"> 6,7,11,62,75,39, </key>\r
-<key name="makespherepntr"> 62, </key>\r
-<key name="maketoru"> 62,39,81, </key>\r
-<key name="maketorusrr"> 62,81, </key>\r
-<key name="maketranslation"> 18,41,79,80, </key>\r
-<key name="maketranslationtwopoint"> 79,80, </key>\r
-<key name="maketranslationvector"> 79,80, </key>\r
-<key name="makevector"> 3,7,18,45,62,64,73,31,79,82, </key>\r
-<key name="makevectordxdydz"> 3,4,18,82, </key>\r
-<key name="makevertex"> 3,4,6,7,9,18,45,47,50,61,62,64,73,31,79, </key>\r
-<key name="makevertexoncurv"> 3,61,31, </key>\r
-<key name="makevertexwithref"> 3,61,31, </key>\r
-<key name="makewir"> 3,18,45,64,73,33,79,83, </key>\r
-<key name="manual"> 31, </key>\r
-<key name="mas"> 50,37, </key>\r
-<key name="material"> 58,38, </key>\r
-<key name="math"> 50,64,79, </key>\r
-<key name="matrix"> 50,37, </key>\r
-<key name="max"> 27,43,50,70,35,38,40, </key>\r
-<key name="maxdeg"> 18, </key>\r
-<key name="maxdegre"> 43,35, </key>\r
-<key name="maximal"> 27,70,35,37,38,40, </key>\r
-<key name="maximum"> 27,43,46,70,38,40, </key>\r
-<key name="maxnbfac"> 27,38, </key>\r
-<key name="maxtoleranc"> 70,40, </key>\r
-<key name="maxtolerance3d"> 70,40, </key>\r
-<key name="mean"> 57,61,72,41, </key>\r
-<key name="measur"> 37, </key>\r
-<key name="measurement"> 50,37, </key>\r
-<key name="mention"> 56, </key>\r
-<key name="menu"> 0,1,2,56,8,5,10,12,13,14,15,16,17,19,20,21,22,23,24,25,26,27,28,29,42,43,44,46,48,49,51,52,53,54,55,57,58,59,60,61,63,65,66,67,68,69,70,71,72,74,75,76,77,78,33,34,35,36,37,38,39,40,41,31,80,81,82,83,84,85, </key>\r
-<key name="merg"> 70,40, </key>\r
-<key name="mesh"> 2,56,38, </key>\r
-<key name="meshingdeflection"> 2,4,38, </key>\r
-<key name="method"> 33, </key>\r
-<key name="middl"> 1,61,31, </key>\r
-<key name="min"> 27,43,50,35,37,38, </key>\r
-<key name="min_dist"> 50, </key>\r
-<key name="mindeg"> 18, </key>\r
-<key name="mindegre"> 43,35, </key>\r
-<key name="mindistanc"> 50,37, </key>\r
-<key name="minimal"> 27,29,50,35,37,38, </key>\r
-<key name="minimum"> 27,43,38, </key>\r
-<key name="minnbfac"> 27,38, </key>\r
-<key name="minor"> 25,39,31,81, </key>\r
-<key name="mirror"> 51,41,79, </key>\r
-<key name="mirror1"> 79, </key>\r
-<key name="mirror2"> 79, </key>\r
-<key name="mirror3"> 79, </key>\r
-<key name="mod"> 0,11,12,16,70,40, </key>\r
-<key name="model"> 2,30,38, </key>\r
-<key name="modifi"> 16,49,52,40,41,31, </key>\r
-<key name="modification"> 40,41, </key>\r
-<key name="modify"> 52,41,79, </key>\r
-<key name="modul"> 30,34, </key>\r
-<key name="moment"> 50,37, </key>\r
-<key name="mov"> 52,55,41, </key>\r
-<key name="much"> 85, </key>\r
-<key name="multi"> 6,5,53,54,55,38,41,79, </key>\r
-<key name="multirotate1d"> 79, </key>\r
-<key name="multirotate2d"> 79, </key>\r
-<key name="multitud"> 63,38, </key>\r
-<key name="must"> 50,53,55,77,37,40,41, </key>\r
-<key name="nam"> 0,1,2,56,8,10,15,16,17,19,20,21,22,23,24,25,28,29,42,43,44,46,48,49,51,52,53,54,55,57,58,59,60,61,65,67,68,69,70,71,74,75,76,77,78,33,35,36,38,39,40,41,31,80,81,82,83,84, </key>\r
-<key name="nb"> 8,28,48,75, </key>\r
-<key name="nb_sub"> 26, </key>\r
-<key name="nbit"> 18,43,35, </key>\r
-<key name="nbound"> 50, </key>\r
-<key name="nbox"> 50, </key>\r
-<key name="nbsplitpoint"> 70,40, </key>\r
-<key name="nbtim"> 53,54,55,38,41, </key>\r
-<key name="nbtimes1"> 53,55,41, </key>\r
-<key name="nbtimes2"> 53,55,41, </key>\r
-<key name="nbtimesu"> 54,38, </key>\r
-<key name="nbtimesv"> 54,38, </key>\r
-<key name="ncentr"> 50, </key>\r
-<key name="ncompound"> 50, </key>\r
-<key name="ne"> 8,10,26,28,29,42,43,53,55,59,65,66,67,75,80, </key>\r
-<key name="necessary"> 10,42,70,72,34,37,40, </key>\r
-<key name="need"> 16,40, </key>\r
-<key name="negativ"> 57,41, </key>\r
-<key name="neigbour"> 70,40, </key>\r
-<key name="new"> 1,56,8,15,16,19,20,21,23,24,25,26,28,29,43,48,49,59,60,61,65,71,72,74,75,33,35,39,40,31,79,81,82,83,84,85, </key>\r
-<key name="ninertia"> 50, </key>\r
-<key name="nminimal"> 50, </key>\r
-<key name="nod"> 21,31, </key>\r
-<key name="noerror"> 13,40, </key>\r
-<key name="non"> 50, </key>\r
-<key name="normal"> 3,15,25,28,57,60,35,41,31,81, </key>\r
-<key name="not"> 20, </key>\r
-<key name="noth"> 29, </key>\r
-<key name="notion"> 56, </key>\r
-<key name="numb"> 12,27,43,53,54,55,57,64,69,70,77,35,38,40,41,79, </key>\r
-<key name="number"> 54,38, </key>\r
-<key name="numeb"> 38, </key>\r
-<key name="object"> 1,2,3,4,6,7,9,10,12,15,17,18,19,21,24,25,26,28,29,42,43,45,47,30,48,49,51,52,53,57,59,60,61,62,63,64,65,66,71,73,74,78,33,34,35,36,37,38,39,40,41,32,31,79,80,82,83,85, </key>\r
-<key name="obtain"> 26,50, </key>\r
-<key name="occ"> 0,12,16,76,77,78,34,40,85, </key>\r
-<key name="occur"> 13,40, </key>\r
-<key name="offer"> 85, </key>\r
-<key name="offset"> 57,41,79, </key>\r
-<key name="ok"> 49,50,64,36,31, </key>\r
-<key name="old"> 61, </key>\r
-<key name="on"> 0,16,22,53,54,55,60,61,64,70,72,34,38,40,41,31,79,84, </key>\r
-<key name="open"> 13,16,64,40, </key>\r
-<key name="openwir"> 13,64,40, </key>\r
-<key name="operation"> 0,1,2,4,56,6,7,8,10,13,14,15,16,17,20,21,22,23,25,26,27,28,42,43,44,46,30,48,51,52,53,54,55,57,58,59,60,61,63,64,65,66,67,68,69,70,75,76,77,78,34,35,38,40,41,32,79,80,81,82,85, </key>\r
-<key name="operator"> 64,70,40, </key>\r
-<key name="opposit"> 8,39, </key>\r
-<key name="optimization"> 30, </key>\r
-<key name="option"> 5, </key>\r
-<key name="ord"> 70,37,40, </key>\r
-<key name="orient"> 56,49,31, </key>\r
-<key name="origin"> 8,20,23,49,75,39,31,81,82, </key>\r
-<key name="otherwis"> 0,16,51,52,66,40,41,80, </key>\r
-<key name="our"> 0,1,2,56,8,10,12,13,14,15,16,17,19,20,21,22,23,24,25,27,28,29,42,43,44,46,48,51,52,53,54,55,57,58,59,60,61,63,65,66,67,68,69,70,71,72,74,75,76,77,78,37,32,80,81,82,83,85, </key>\r
-<key name="outsid"> 58,38, </key>\r
-<key name="ox"> 49,72,31, </key>\r
-<key name="oy"> 49,31, </key>\r
-<key name="oz"> 20,23,49,72,31, </key>\r
-<key name="p"> 62, </key>\r
+<key name="makecommon"> 7,18, </key>\r
+<key name="makecompound"> 6,19,20,52,66,34, </key>\r
+<key name="makecon"> 21,64,66,40, </key>\r
+<key name="makeconer1r2h"> 21,64, </key>\r
+<key name="makecut"> 7,66, </key>\r
+<key name="makecylind"> 7,24,66,40,81, </key>\r
+<key name="makecylinderrh"> 24, </key>\r
+<key name="makeedg"> 9,19,25,46,66,34, </key>\r
+<key name="makeellips"> 3,26,32, </key>\r
+<key name="makefac"> 3,19,30,46,66,75,34,81, </key>\r
+<key name="makefacewir"> 30,46, </key>\r
+<key name="makefil"> 19,44,36, </key>\r
+<key name="makefillet"> 43,39,81, </key>\r
+<key name="makefilletall"> 43,81, </key>\r
+<key name="makefus"> 7,45, </key>\r
+<key name="makegluefac"> 47,52,66,41, </key>\r
+<key name="makehalfpartition"> 4,60, </key>\r
+<key name="makehexa"> 58,9, </key>\r
+<key name="makehexa2fac"> 58,9, </key>\r
+<key name="makeinterpol"> 3,22,32, </key>\r
+<key name="makelin"> 3,50,32, </key>\r
+<key name="makelinetwopnt"> 3,50, </key>\r
+<key name="makemark"> 51,32,81, </key>\r
+<key name="makemirrorbyaxi"> 53,81, </key>\r
+<key name="makemirrorbyplan"> 53,42,81, </key>\r
+<key name="makemirrorbypoint"> 53,81, </key>\r
+<key name="makemultirotate1d"> 55, </key>\r
+<key name="makemultirotate2d"> 55, </key>\r
+<key name="makemultirotation1d"> 55,42, </key>\r
+<key name="makemultirotation2d"> 55,42, </key>\r
+<key name="makemultitransformation1d"> 6,56,39, </key>\r
+<key name="makemultitransformation2d"> 6,56,39, </key>\r
+<key name="makemultitranslation1d"> 57,42,81, </key>\r
+<key name="makemultitranslation2d"> 57,42,81, </key>\r
+<key name="makeoffset"> 59,42,81, </key>\r
+<key name="makepartition"> 4,60,39, </key>\r
+<key name="makepip"> 19,61,36, </key>\r
+<key name="makeplan"> 3,4,62,32, </key>\r
+<key name="makeplanefac"> 3,62, </key>\r
+<key name="makeplanethreepnt"> 3,62,81, </key>\r
+<key name="makepolylin"> 3,22,32, </key>\r
+<key name="makeposition"> 54,42,81, </key>\r
+<key name="makeprism"> 19,29,46,36, </key>\r
+<key name="makeprismvech"> 19,29,66,81, </key>\r
+<key name="makequad"> 58,9, </key>\r
+<key name="makequad2edg"> 58,9, </key>\r
+<key name="makequad4vertic"> 58,9, </key>\r
+<key name="makerevolution"> 19,67,36, </key>\r
+<key name="makerotation"> 66,68,42,81, </key>\r
+<key name="makescaletransform"> 69,42,81, </key>\r
+<key name="makesection"> 7,70, </key>\r
+<key name="makesew"> 66,71,41, </key>\r
+<key name="makeshell"> 46,73,34, </key>\r
+<key name="makesketch"> 46,75,74, </key>\r
+<key name="makesketcheronplan"> 75, </key>\r
+<key name="makesolid"> 46,76,34, </key>\r
+<key name="makespher"> 6,7,11,64,77,40, </key>\r
+<key name="makespherepntr"> 64, </key>\r
+<key name="maketoru"> 64,40,84, </key>\r
+<key name="maketorusrr"> 64,84, </key>\r
+<key name="maketranslation"> 19,42,81,82, </key>\r
+<key name="maketranslationtwopoint"> 81,82, </key>\r
+<key name="maketranslationvector"> 81,82, </key>\r
+<key name="makevector"> 3,7,19,46,64,66,75,32,81,85, </key>\r
+<key name="makevectordxdydz"> 3,4,19,85, </key>\r
+<key name="makevertex"> 3,4,6,7,9,19,46,48,52,63,64,66,75,32,81, </key>\r
+<key name="makevertexoncurv"> 3,63,32, </key>\r
+<key name="makevertexwithref"> 3,63,32, </key>\r
+<key name="makewir"> 3,19,46,66,75,34,81,86, </key>\r
+<key name="manual"> 32,89, </key>\r
+<key name="mas"> 52,38, </key>\r
+<key name="material"> 60,39, </key>\r
+<key name="math"> 52,66,81, </key>\r
+<key name="matrix"> 52,38, </key>\r
+<key name="max"> 28,44,52,72,36,39,41, </key>\r
+<key name="maxdeg"> 19, </key>\r
+<key name="maxdegre"> 44,36, </key>\r
+<key name="maximal"> 28,72,36,38,39,41, </key>\r
+<key name="maximum"> 28,44,47,72,39,41, </key>\r
+<key name="maxnbfac"> 28,39, </key>\r
+<key name="maxtoleranc"> 72,41, </key>\r
+<key name="maxtolerance3d"> 72,41, </key>\r
+<key name="mean"> 12,59,63,74,42,87, </key>\r
+<key name="measur"> 38, </key>\r
+<key name="measurement"> 52,38, </key>\r
+<key name="mechanism"> 37, </key>\r
+<key name="mention"> 58, </key>\r
+<key name="menu"> 0,1,2,58,8,5,10,12,13,14,15,16,17,18,20,21,22,23,24,25,26,27,28,29,30,43,44,45,47,49,50,51,53,54,55,56,57,59,60,61,62,63,65,67,68,69,70,71,72,73,74,76,77,78,79,80,35,36,37,38,39,40,41,42,34,32,82,84,85,86,87,88,89, </key>\r
+<key name="merg"> 72,41, </key>\r
+<key name="mesh"> 2,58,39, </key>\r
+<key name="meshingdeflection"> 2,4,39, </key>\r
+<key name="method"> 34, </key>\r
+<key name="middl"> 63,32, </key>\r
+<key name="min"> 28,44,52,36,38,39, </key>\r
+<key name="min_dist"> 52, </key>\r
+<key name="mindeg"> 19, </key>\r
+<key name="mindegre"> 44,36, </key>\r
+<key name="mindistanc"> 52,38, </key>\r
+<key name="minimal"> 28,30,52,36,38,39, </key>\r
+<key name="minimum"> 28,44,39, </key>\r
+<key name="minnbfac"> 28,39, </key>\r
+<key name="minor"> 26,40,32,84, </key>\r
+<key name="mirror"> 53,42,81, </key>\r
+<key name="mirror1"> 81, </key>\r
+<key name="mirror2"> 81, </key>\r
+<key name="mirror3"> 81, </key>\r
+<key name="mod"> 0,11,12,16,72,41,87, </key>\r
+<key name="model"> 2,31,39, </key>\r
+<key name="modifi"> 16,54,41,42,32, </key>\r
+<key name="modification"> 41,42, </key>\r
+<key name="modify"> 54,42,81, </key>\r
+<key name="modul"> 31,35, </key>\r
+<key name="moment"> 52,38, </key>\r
+<key name="mov"> 54,57,42, </key>\r
+<key name="much"> 89, </key>\r
+<key name="multi"> 6,5,55,56,57,39,42,81, </key>\r
+<key name="multirotate1d"> 81, </key>\r
+<key name="multirotate2d"> 81, </key>\r
+<key name="multitud"> 65,39, </key>\r
+<key name="must"> 52,55,57,79,38,41,42, </key>\r
+<key name="nam"> 0,1,2,58,8,10,15,16,18,20,21,22,23,24,25,26,29,30,43,44,45,47,50,51,53,54,55,56,57,59,60,61,62,63,67,69,70,71,72,73,76,77,78,79,80,36,37,39,40,41,42,34,32,82,84,85,86,88,89, </key>\r
+<key name="nb"> 8,29,50,77, </key>\r
+<key name="nb_sub"> 27, </key>\r
+<key name="nbit"> 19,44,36, </key>\r
+<key name="nbound"> 52, </key>\r
+<key name="nbox"> 52, </key>\r
+<key name="nbsplitpoint"> 72,41, </key>\r
+<key name="nbtim"> 55,56,57,39,42, </key>\r
+<key name="nbtimes1"> 55,57,42, </key>\r
+<key name="nbtimes2"> 55,57,42, </key>\r
+<key name="nbtimesu"> 56,39, </key>\r
+<key name="nbtimesv"> 56,39, </key>\r
+<key name="ncentr"> 52, </key>\r
+<key name="ncompound"> 52, </key>\r
+<key name="ne"> 8,10,27,29,30,43,44,55,57,61,67,68,69,77,82, </key>\r
+<key name="necessary"> 10,43,72,74,35,38,41, </key>\r
+<key name="need"> 16,41, </key>\r
+<key name="negativ"> 59,42, </key>\r
+<key name="neigbour"> 72,41, </key>\r
+<key name="new"> 1,58,8,15,16,20,21,22,24,25,26,27,29,30,44,50,51,61,62,63,67,73,74,76,77,36,40,41,34,32,81,84,85,86,88,89, </key>\r
+<key name="ninertia"> 52, </key>\r
+<key name="nminimal"> 52, </key>\r
+<key name="nod"> 22,32, </key>\r
+<key name="noerror"> 13,41, </key>\r
+<key name="non"> 52, </key>\r
+<key name="normal"> 3,15,26,29,59,62,36,42,32,84, </key>\r
+<key name="not"> 21, </key>\r
+<key name="noth"> 30, </key>\r
+<key name="notion"> 58, </key>\r
+<key name="numb"> 28,44,49,55,56,57,59,66,71,72,79,36,39,41,42,81, </key>\r
+<key name="number"> 56,39, </key>\r
+<key name="numeb"> 39, </key>\r
+<key name="object"> 1,2,3,4,6,7,9,10,12,15,17,18,19,20,22,25,26,27,29,30,43,44,46,48,31,50,51,53,54,55,59,61,62,63,64,65,66,67,68,73,75,76,80,35,36,37,38,39,40,41,42,34,33,32,81,82,85,86,87,89, </key>\r
+<key name="obtain"> 27,52, </key>\r
+<key name="occ"> 0,10,12,16,43,78,79,80,35,41,89, </key>\r
+<key name="occur"> 13,41, </key>\r
+<key name="offer"> 89, </key>\r
+<key name="offset"> 59,42,81, </key>\r
+<key name="ok"> 51,52,66,32,89, </key>\r
+<key name="old"> 63, </key>\r
+<key name="on"> 0,16,23,54,55,56,57,62,63,66,72,74,35,39,41,42,32,81,88, </key>\r
+<key name="opaqu"> 83, </key>\r
+<key name="open"> 13,16,66,37,41,89, </key>\r
+<key name="openwir"> 13,66,41, </key>\r
+<key name="operation"> 0,1,2,4,58,6,7,8,10,13,14,15,16,18,21,22,23,24,26,27,28,29,43,44,45,47,31,50,53,54,55,56,57,59,60,61,62,63,65,66,67,68,69,70,71,72,74,77,78,79,80,35,36,39,41,42,33,81,82,84,85,89, </key>\r
+<key name="operator"> 66,72,41, </key>\r
+<key name="opportunity"> 37, </key>\r
+<key name="opposit"> 8,40, </key>\r
+<key name="optimization"> 31, </key>\r
+<key name="option"> 5,12,87, </key>\r
+<key name="ord"> 72,41, </key>\r
+<key name="orient"> 58,32, </key>\r
+<key name="origin"> 8,21,24,51,77,40,32,84,85, </key>\r
+<key name="os"> 66, </key>\r
+<key name="otherwis"> 0,16,53,54,68,41,42,82, </key>\r
+<key name="our"> 0,1,2,58,8,10,13,14,15,16,17,18,20,21,22,23,24,25,26,28,29,30,43,44,45,47,50,53,54,55,56,57,59,60,61,62,63,65,67,68,69,70,71,72,73,74,76,77,78,79,80,38,33,82,83,84,85,86,87,89, </key>\r
+<key name="outsid"> 60,39, </key>\r
+<key name="ox"> 51,74,32, </key>\r
+<key name="oy"> 51,32, </key>\r
+<key name="oz"> 21,24,51,74,32, </key>\r
+<key name="p"> 64, </key>\r
<key name="p_25_25_50"> 6, </key>\r
<key name="p_25_50_25"> 6, </key>\r
<key name="p_50_25_25"> 6, </key>\r
<key name="p_on_arc"> 3, </key>\r
-<key name="p0"> 3,4,18,45,47,62,64,79, </key>\r
-<key name="p1"> 3,7,9,18,62,64,73,79, </key>\r
+<key name="p0"> 3,4,19,46,48,64,66,81, </key>\r
+<key name="p1"> 3,7,9,19,64,66,75,81, </key>\r
<key name="p10"> 9, </key>\r
<key name="p100"> 3, </key>\r
<key name="p11"> 9, </key>\r
<key name="p12"> 9, </key>\r
<key name="p13"> 9, </key>\r
-<key name="p2"> 3,7,9,18,62,64,73,79, </key>\r
-<key name="p200"> 4,47, </key>\r
-<key name="p3"> 3,9,18,64,73,79, </key>\r
-<key name="p4"> 3,9,18,79, </key>\r
-<key name="p5"> 3,9,18,79, </key>\r
+<key name="p2"> 3,7,9,19,64,66,75,81, </key>\r
+<key name="p200"> 4,48, </key>\r
+<key name="p3"> 3,9,19,66,75,81, </key>\r
+<key name="p4"> 3,9,19,81, </key>\r
+<key name="p5"> 3,9,19,81, </key>\r
<key name="p50"> 3, </key>\r
-<key name="p6"> 9,18, </key>\r
-<key name="p7"> 9,18, </key>\r
-<key name="p70"> 62, </key>\r
-<key name="p8"> 9,18, </key>\r
+<key name="p6"> 9,19, </key>\r
+<key name="p7"> 9,19, </key>\r
+<key name="p70"> 64, </key>\r
+<key name="p8"> 9,19, </key>\r
<key name="p9"> 9, </key>\r
-<key name="parallel"> 8,48, </key>\r
-<key name="paramet"> 0,16,49,61,70,33,40,31, </key>\r
-<key name="parameter"> 4,11,12,43,49,64,70,72,35,40,31, </key>\r
-<key name="paramt"> 0,40, </key>\r
-<key name="part"> 17,20,39, </key>\r
-<key name="partition"> 4,58,38, </key>\r
+<key name="parallel"> 8,50,51, </key>\r
+<key name="paramet"> 0,16,63,72,41,34,32, </key>\r
+<key name="parameter"> 4,11,12,17,44,66,72,74,36,41,32,83,87, </key>\r
+<key name="paramt"> 0,41, </key>\r
+<key name="part"> 18,21,40, </key>\r
+<key name="partition"> 4,60,39, </key>\r
<key name="partition1"> 4, </key>\r
<key name="partition2"> 4, </key>\r
<key name="partition3"> 4, </key>\r
-<key name="pas"> 21,48,53,60,72,31, </key>\r
-<key name="path"> 18,59,35, </key>\r
-<key name="pathshap"> 59,35, </key>\r
-<key name="pattern"> 41, </key>\r
-<key name="perform"> 4,26,58,38,79,85, </key>\r
-<key name="perpendicular"> 72, </key>\r
-<key name="pi"> 53,64,79, </key>\r
-<key name="pip"> 18,59,35, </key>\r
-<key name="plan"> 2,3,4,51,58,60,72,38,41,31,79,84, </key>\r
-<key name="planar"> 29,72,73,33,31,79,84, </key>\r
+<key name="pas"> 22,50,55,62,74,32, </key>\r
+<key name="path"> 19,61,36, </key>\r
+<key name="pathshap"> 61,36, </key>\r
+<key name="pattern"> 42, </key>\r
+<key name="perform"> 4,27,60,39,81, </key>\r
+<key name="perpendicular"> 74, </key>\r
+<key name="pi"> 55,66,81, </key>\r
+<key name="pictur"> 54, </key>\r
+<key name="pip"> 19,61,36, </key>\r
+<key name="plac"> 54, </key>\r
+<key name="plan"> 2,3,4,53,60,62,74,39,42,32,81,88,89, </key>\r
+<key name="planar"> 30,75,74,34,32,81,88, </key>\r
<key name="plane1"> 3, </key>\r
<key name="plane2"> 3, </key>\r
<key name="plane3"> 3, </key>\r
-<key name="platform"> 85, </key>\r
-<key name="plung"> 2,38, </key>\r
-<key name="point"> 0,1,3,4,56,8,15,16,18,20,21,23,24,25,28,45,47,48,49,50,51,53,57,60,61,64,67,70,72,73,75,37,39,40,41,31,79,80,81,82, </key>\r
-<key name="point1"> 1,3,8,9,15,24,28,48,60,31,80,82, </key>\r
-<key name="point2"> 1,3,8,9,15,24,28,48,60,31,80,82, </key>\r
-<key name="point3"> 1,3,9,15,60,31, </key>\r
+<key name="platform"> 89, </key>\r
+<key name="plug"> 37, </key>\r
+<key name="plung"> 2,39, </key>\r
+<key name="point"> 0,1,3,4,58,8,9,15,16,19,21,22,24,25,26,29,46,48,50,51,52,53,55,59,62,63,66,69,72,75,74,77,38,40,41,42,32,81,82,84,85,89, </key>\r
+<key name="point1"> 1,3,8,9,15,25,29,50,62,32,82,85, </key>\r
+<key name="point2"> 1,3,8,9,15,25,29,50,62,32,82,85, </key>\r
+<key name="point3"> 1,3,9,15,62,32, </key>\r
<key name="point4"> 3,9, </key>\r
<key name="point5"> 3, </key>\r
-<key name="pointcoordinat"> 50,37, </key>\r
-<key name="polylin"> 3,21,31, </key>\r
-<key name="pop"> 12,34, </key>\r
-<key name="position"> 0,61,40,31,79,84, </key>\r
-<key name="possibiliti"> 29, </key>\r
-<key name="possibility"> 70,40, </key>\r
-<key name="possibl"> 6,21,63,70,34,37,38,40, </key>\r
-<key name="precision"> 64,69,40, </key>\r
-<key name="predefin"> 72, </key>\r
-<key name="preferenc"> 85, </key>\r
-<key name="pres"> 49,31, </key>\r
-<key name="preview"> 49,31, </key>\r
-<key name="previou"> 72, </key>\r
-<key name="primitiv"> 8,20,23,30,62,75,39,81, </key>\r
-<key name="print"> 50,64,37, </key>\r
-<key name="prism"> 18,28,45,64,35,79, </key>\r
-<key name="prism_edg"> 79, </key>\r
-<key name="prism_fac"> 45,79, </key>\r
-<key name="prism1"> 18, </key>\r
-<key name="prism2"> 18, </key>\r
-<key name="problem"> 70,40, </key>\r
-<key name="proces"> 16,64,70,76,38,40, </key>\r
-<key name="processshap"> 64,70,40, </key>\r
-<key name="produc"> 2,10,16,17,22,27,42,44,51,53,54,55,57,58,63,66,67,68,69,70,76,79,80, </key>\r
-<key name="project"> 85, </key>\r
-<key name="projection"> 53,84, </key>\r
-<key name="prop"> 50, </key>\r
-<key name="propagat"> 6,63,38, </key>\r
-<key name="propagation"> 6,63,38, </key>\r
-<key name="properti"> 12,50,37, </key>\r
-<key name="provid"> 0,1,2,56,8,10,12,13,14,15,16,17,19,20,21,22,23,24,25,27,28,29,42,43,44,46,48,51,52,53,54,55,57,58,59,60,61,63,65,66,67,68,69,70,71,72,74,75,76,77,78,32,80,81,82,83,85, </key>\r
-<key name="ps"> 64, </key>\r
-<key name="put"> 2,38, </key>\r
-<key name="px"> 3,18,45,64,79, </key>\r
-<key name="pxy"> 79, </key>\r
-<key name="pxyz"> 18,45,79, </key>\r
-<key name="py"> 3,18,45,64,79, </key>\r
-<key name="py1"> 64, </key>\r
-<key name="python"> 37, </key>\r
-<key name="pz"> 3,4,18,45,64,79, </key>\r
+<key name="pointcoordinat"> 52,38, </key>\r
+<key name="polylin"> 3,22,32, </key>\r
+<key name="pop"> 12,17,35,87, </key>\r
+<key name="position"> 0,63,41,32,81,88, </key>\r
+<key name="possibiliti"> 30, </key>\r
+<key name="possibility"> 72,41, </key>\r
+<key name="possibl"> 6,22,65,72,35,38,39,41, </key>\r
+<key name="precision"> 66,71,41, </key>\r
+<key name="predefin"> 74, </key>\r
+<key name="pres"> 51,32, </key>\r
+<key name="presum"> 51, </key>\r
+<key name="preview"> 32, </key>\r
+<key name="previou"> 74, </key>\r
+<key name="primitiv"> 8,21,24,31,64,77,40,84, </key>\r
+<key name="print"> 52,66,38, </key>\r
+<key name="prism"> 19,29,46,66,36,81, </key>\r
+<key name="prism_edg"> 81, </key>\r
+<key name="prism_fac"> 46,81, </key>\r
+<key name="prism1"> 19, </key>\r
+<key name="prism2"> 19, </key>\r
+<key name="problem"> 72,41, </key>\r
+<key name="proces"> 16,66,72,78,39,41, </key>\r
+<key name="processshap"> 66,72,41, </key>\r
+<key name="produc"> 2,10,16,18,23,28,43,45,53,55,56,57,59,60,65,68,69,70,71,72,78,81,82, </key>\r
+<key name="program"> 48, </key>\r
+<key name="projection"> 55,88, </key>\r
+<key name="prop"> 52, </key>\r
+<key name="propagat"> 6,65,39, </key>\r
+<key name="propagation"> 6,65,39, </key>\r
+<key name="properti"> 12,52,38, </key>\r
+<key name="provid"> 0,1,2,58,8,10,13,14,15,16,17,18,20,21,22,23,24,25,26,28,29,30,43,44,45,47,50,53,54,55,56,57,59,60,61,62,63,65,67,68,69,70,71,72,73,74,76,77,78,79,80,33,82,83,84,85,86,87,89, </key>\r
+<key name="ps"> 66, </key>\r
+<key name="put"> 2,39, </key>\r
+<key name="px"> 3,19,46,66,81, </key>\r
+<key name="pxy"> 81, </key>\r
+<key name="pxyz"> 19,46,81, </key>\r
+<key name="py"> 3,19,46,66,81, </key>\r
+<key name="py1"> 66, </key>\r
+<key name="python"> 38, </key>\r
+<key name="pz"> 3,4,19,46,66,81, </key>\r
<key name="qface1"> 9, </key>\r
<key name="qface2"> 9, </key>\r
<key name="qface3"> 9, </key>\r
<key name="qface6"> 9, </key>\r
<key name="qface7"> 9, </key>\r
<key name="qface8"> 9, </key>\r
-<key name="quadrangl"> 56,9,60,37,31, </key>\r
-<key name="r"> 42,45,73, </key>\r
-<key name="radian"> 70,40, </key>\r
-<key name="radiu"> 3,10,15,20,23,25,42,72,75,38,39,31,79,81, </key>\r
-<key name="radius"> 3,20,25,39,31,81, </key>\r
-<key name="radius1"> 7,20,62,64,39,79, </key>\r
-<key name="radius2"> 20,62,39, </key>\r
-<key name="radius3"> 62, </key>\r
-<key name="radiusmajor"> 25,39,31,81, </key>\r
-<key name="radiusminor"> 25,39,31,81, </key>\r
-<key name="rais"> 50,64, </key>\r
-<key name="rang"> 0,26,30,40, </key>\r
-<key name="re"> 70,40, </key>\r
-<key name="reasonabl"> 34, </key>\r
-<key name="reconstruction"> 58,38, </key>\r
-<key name="referenc"> 49,61,31, </key>\r
-<key name="regard"> 61,31, </key>\r
-<key name="relativ"> 72, </key>\r
-<key name="relative"> 79, </key>\r
-<key name="remov"> 47,51,52,64,66,70,76,77,78,40,41,80,85, </key>\r
-<key name="removeobject"> 47,85, </key>\r
-<key name="removeweb"> 58,38, </key>\r
-<key name="repair"> 0,13,14,16,46,30,64,69,70,76,77,78,40, </key>\r
-<key name="repetition"> 53,55,41, </key>\r
-<key name="represent"> 60,31, </key>\r
-<key name="request"> 33, </key>\r
-<key name="requir"> 70,34,36,40, </key>\r
-<key name="requireddegre"> 70,40, </key>\r
-<key name="requirednbsegment"> 70,40, </key>\r
-<key name="res"> 64, </key>\r
-<key name="respect"> 46,72,40, </key>\r
-<key name="restriction"> 70,40, </key>\r
-<key name="result"> 0,1,2,4,56,6,7,8,10,13,14,15,16,17,19,20,21,22,23,24,25,26,27,28,29,42,43,44,46,48,51,52,53,54,55,57,58,59,60,61,63,64,65,66,67,68,69,70,71,72,74,75,76,77,78,33,35,37,38,39,40,41,31,79,80,81,82,83,85, </key>\r
-<key name="resultant"> 70,40, </key>\r
-<key name="retriev"> 14,33,40, </key>\r
-<key name="return"> 14,26,27,50,33,37,38,40,85, </key>\r
-<key name="revers"> 53,66,41, </key>\r
-<key name="revolution"> 18,65,70,35,40, </key>\r
-<key name="right"> 12,34, </key>\r
-<key name="rot1d"> 79, </key>\r
-<key name="rot2d"> 79, </key>\r
-<key name="rotat"> 53,65,66,35,41,79, </key>\r
-<key name="rotation"> 53,64,66,41,79, </key>\r
-<key name="runtimeerror"> 50,64, </key>\r
-<key name="s"> 13,15,16,18,47,50,54,64,67,76,77,78,33,38,40,41,31,85, </key>\r
-<key name="s1"> 17,44,68, </key>\r
-<key name="s2"> 17,44,68, </key>\r
-<key name="salom"> 3,4,6,7,9,11,18,45,47,30,50,62,64,73,79,85, </key>\r
-<key name="sam"> 53,70,72,40,79, </key>\r
-<key name="sameparamet"> 70,40, </key>\r
-<key name="satisfy"> 37, </key>\r
-<key name="scal"> 67,41,79, </key>\r
-<key name="script"> 0,1,2,56,8,10,12,13,14,15,16,17,19,20,21,22,23,24,25,27,28,29,42,43,44,46,48,51,52,53,54,55,57,58,59,60,61,63,65,66,67,68,69,70,71,72,74,75,76,77,78,37,32,80,81,82,83,85, </key>\r
-<key name="se"> 36,37, </key>\r
-<key name="search"> 36, </key>\r
-<key name="second"> 8,15,20,23,51,54,55,58,60,61,73,75,38,39,41,32,80,81,82,84, </key>\r
-<key name="section"> 2,7,68,38,32, </key>\r
-<key name="seem"> 64, </key>\r
-<key name="segment"> 70,72,40, </key>\r
-<key name="select"> 0,1,2,8,5,10,12,13,14,15,16,17,19,20,21,22,23,24,25,26,27,28,29,42,43,44,46,48,49,51,52,53,54,55,57,58,59,60,61,63,64,65,66,67,68,69,70,71,72,74,75,76,77,78,33,34,35,36,37,38,39,40,31,80,81,82,83,84,85, </key>\r
-<key name="selection"> 42,60,72,38,31,84, </key>\r
-<key name="sens"> 58,38, </key>\r
-<key name="separat"> 32, </key>\r
-<key name="serv"> 21,28,59,65,35,31, </key>\r
-<key name="set"> 0,12,16,27,29,45,53,57,61,38,40,41,31,84, </key>\r
-<key name="setcolor"> 11,12, </key>\r
-<key name="setdisplaymod"> 3,4,6,7,9,11,12,18,45,62,64,73,79, </key>\r
-<key name="settransparency"> 3,11,12,45,73, </key>\r
-<key name="sew"> 64,69,40, </key>\r
-<key name="sg"> 6,47,64,34, </key>\r
-<key name="shad"> 12, </key>\r
-<key name="shap"> 0,2,4,10,12,13,14,16,17,19,22,26,28,42,43,44,47,30,50,51,52,53,55,57,58,59,63,64,65,66,67,68,69,70,76,77,78,33,34,35,37,38,40,41,79,80,85, </key>\r
-<key name="shape1"> 37,32, </key>\r
-<key name="shape2"> 37,32, </key>\r
-<key name="shapelistcompound"> 18, </key>\r
-<key name="shapes_of_given_typ"> 26, </key>\r
-<key name="shapesto"> 46,40, </key>\r
-<key name="shapetyp"> 42,45,47,64,38,79,85, </key>\r
-<key name="shapetypeedg"> 79, </key>\r
-<key name="shapetypefac"> 79, </key>\r
-<key name="shar"> 14,40, </key>\r
-<key name="shel"> 14,19,45,57,71,74,33,40,41, </key>\r
-<key name="shell"> 56,28,45,57,59,65,71,74,33,35,41, </key>\r
-<key name="shift"> 61,83, </key>\r
-<key name="short"> 12, </key>\r
-<key name="shortcut"> 29, </key>\r
-<key name="should"> 28,48,76,77,37,40, </key>\r
-<key name="show"> 37, </key>\r
-<key name="shown"> 49,31, </key>\r
-<key name="sid"> 60,31, </key>\r
-<key name="sign"> 57,41, </key>\r
-<key name="similar"> 60, </key>\r
-<key name="simpl"> 53,54,55, </key>\r
-<key name="singl"> 29, </key>\r
-<key name="six"> 56,9, </key>\r
-<key name="siz"> 10,60,70,38,40,31, </key>\r
-<key name="sketch"> 45,72,73, </key>\r
-<key name="sketcher"> 45, </key>\r
-<key name="sketcher1"> 45,73, </key>\r
-<key name="sketcher2"> 45,73, </key>\r
-<key name="sketcher3"> 45, </key>\r
-<key name="small"> 49,70,40,31, </key>\r
-<key name="so"> 29, </key>\r
-<key name="solid"> 56,8,9,20,23,26,28,45,54,57,59,65,74,75,33,35,38,39,41,81, </key>\r
+<key name="quadrangl"> 58,9,62,38,32, </key>\r
+<key name="r"> 43,46,75, </key>\r
+<key name="radian"> 72,41, </key>\r
+<key name="radio"> 89, </key>\r
+<key name="radiu"> 3,10,15,21,24,26,43,74,77,39,40,32,81,84, </key>\r
+<key name="radius"> 3,21,26,40,32,84, </key>\r
+<key name="radius1"> 7,21,64,66,40,81, </key>\r
+<key name="radius2"> 21,64,40, </key>\r
+<key name="radius3"> 64, </key>\r
+<key name="radiusmajor"> 26,40,32,84, </key>\r
+<key name="radiusminor"> 26,40,32,84, </key>\r
+<key name="rais"> 48,52,66, </key>\r
+<key name="rang"> 0,27,31,37,41,83, </key>\r
+<key name="re"> 72,41, </key>\r
+<key name="reasonabl"> 35, </key>\r
+<key name="reconstruction"> 60,39, </key>\r
+<key name="referenc"> 51,63,32, </key>\r
+<key name="regard"> 63,32, </key>\r
+<key name="relativ"> 74, </key>\r
+<key name="relative"> 81, </key>\r
+<key name="relevant"> 12,87, </key>\r
+<key name="remain"> 87, </key>\r
+<key name="remov"> 48,53,54,66,68,72,78,79,80,41,42,82,89, </key>\r
+<key name="removeobject"> 48,89, </key>\r
+<key name="removeweb"> 60,39, </key>\r
+<key name="repair"> 0,13,14,16,47,31,66,71,72,78,79,80,41, </key>\r
+<key name="repetition"> 55,57,42, </key>\r
+<key name="represent"> 62,32, </key>\r
+<key name="request"> 34, </key>\r
+<key name="requir"> 72,35,37,41, </key>\r
+<key name="requireddegre"> 72,41, </key>\r
+<key name="requirednbsegment"> 72,41, </key>\r
+<key name="res"> 66, </key>\r
+<key name="respect"> 47,74,41, </key>\r
+<key name="restriction"> 72,41, </key>\r
+<key name="result"> 0,1,2,4,58,6,7,8,10,13,14,15,16,18,20,21,22,23,24,25,26,27,28,29,30,43,44,45,47,50,53,54,55,56,57,59,60,61,62,63,65,66,67,68,69,70,71,72,73,74,76,77,78,79,80,36,38,39,40,41,42,34,32,81,82,84,85,86,89, </key>\r
+<key name="resultant"> 72,41, </key>\r
+<key name="retriev"> 14,41,34, </key>\r
+<key name="return"> 14,27,28,52,38,39,41,34,89, </key>\r
+<key name="revers"> 55,68,42, </key>\r
+<key name="revolution"> 19,67,72,36,41, </key>\r
+<key name="right"> 12,17,54,35,87, </key>\r
+<key name="rot1d"> 81, </key>\r
+<key name="rot2d"> 81, </key>\r
+<key name="rotat"> 55,67,68,36,42,81, </key>\r
+<key name="rotation"> 55,66,68,42,81, </key>\r
+<key name="runtimeerror"> 52,66, </key>\r
+<key name="s"> 13,15,16,19,56,66,69,78,79,80,39,41,42,34,32,89, </key>\r
+<key name="s1"> 18,45,70, </key>\r
+<key name="s2"> 18,45,70, </key>\r
+<key name="salom"> 3,4,6,7,9,11,19,46,48,31,52,64,66,75,81,89, </key>\r
+<key name="sam"> 55,72,74,41,81,89, </key>\r
+<key name="sameparamet"> 72,41, </key>\r
+<key name="satisfy"> 38, </key>\r
+<key name="sav"> 37, </key>\r
+<key name="scal"> 69,42,81, </key>\r
+<key name="script"> 0,1,2,58,8,10,13,14,15,16,17,18,20,21,22,23,24,25,26,28,29,30,43,44,45,47,50,53,54,55,56,57,59,60,61,62,63,65,67,68,69,70,71,72,73,74,76,77,78,79,80,38,33,82,83,84,85,86,87,89, </key>\r
+<key name="se"> 87, </key>\r
+<key name="search"> 37, </key>\r
+<key name="second"> 8,15,21,24,51,53,54,56,57,60,62,63,75,77,39,40,42,33,82,84,85,88, </key>\r
+<key name="section"> 2,7,70,39,33, </key>\r
+<key name="seem"> 66, </key>\r
+<key name="segment"> 72,74,41, </key>\r
+<key name="select"> 0,1,2,4,8,5,10,12,13,14,15,16,17,18,20,21,22,23,24,25,26,27,28,29,30,43,44,45,47,48,50,51,53,54,55,56,57,59,60,61,62,63,65,66,67,68,69,70,71,72,73,74,76,77,78,79,80,35,36,37,38,39,40,41,34,32,82,84,85,86,87,88,89, </key>\r
+<key name="selection"> 43,74,39,32,88,89, </key>\r
+<key name="sens"> 60,39, </key>\r
+<key name="separat"> 33, </key>\r
+<key name="serv"> 22,29,61,67,36,32, </key>\r
+<key name="set"> 0,12,16,28,30,46,55,59,63,39,41,42,32,88, </key>\r
+<key name="setcolor"> 11,12,17, </key>\r
+<key name="setdisplaymod"> 3,4,6,7,9,11,12,19,46,64,66,75,81,87, </key>\r
+<key name="settransparency"> 3,11,12,46,75,83, </key>\r
+<key name="sew"> 66,71,41, </key>\r
+<key name="sg"> 6,48,66,35, </key>\r
+<key name="shad"> 12,87, </key>\r
+<key name="shap"> 0,2,4,10,12,13,14,16,18,20,23,27,29,43,44,45,47,48,31,49,52,53,54,55,57,59,60,61,65,66,67,68,69,70,71,72,78,79,80,35,36,38,39,41,42,34,81,82,83,89, </key>\r
+<key name="shape1"> 38,33, </key>\r
+<key name="shape2"> 38,33, </key>\r
+<key name="shapelistcompound"> 19, </key>\r
+<key name="shapes_of_given_typ"> 27, </key>\r
+<key name="shapesto"> 41, </key>\r
+<key name="shapetyp"> 43,46,48,66,39,81,89, </key>\r
+<key name="shapetypeedg"> 81, </key>\r
+<key name="shapetypefac"> 81, </key>\r
+<key name="shar"> 14,41, </key>\r
+<key name="shel"> 14,20,46,59,73,76,41,42,34,87, </key>\r
+<key name="shell"> 58,29,46,59,61,67,73,76,36,42,34, </key>\r
+<key name="shift"> 63,86,89, </key>\r
+<key name="short"> 12,17,87, </key>\r
+<key name="shortcut"> 30, </key>\r
+<key name="should"> 29,50,78,79,38,41, </key>\r
+<key name="show"> 38, </key>\r
+<key name="shown"> 51,32, </key>\r
+<key name="sid"> 62,32, </key>\r
+<key name="sign"> 59,42, </key>\r
+<key name="similar"> 62, </key>\r
+<key name="simp"> 51, </key>\r
+<key name="simpl"> 55,56,57, </key>\r
+<key name="singl"> 30, </key>\r
+<key name="six"> 58,9, </key>\r
+<key name="siz"> 10,62,72,39,41,32, </key>\r
+<key name="sketch"> 46,75,74, </key>\r
+<key name="sketcher"> 46, </key>\r
+<key name="sketcher1"> 46,75, </key>\r
+<key name="sketcher2"> 46,75, </key>\r
+<key name="sketcher3"> 46, </key>\r
+<key name="skip"> 89, </key>\r
+<key name="small"> 72,41,32, </key>\r
+<key name="so"> 30,54, </key>\r
+<key name="solid"> 58,8,9,21,24,27,29,46,56,59,61,67,76,77,36,39,40,42,34,84, </key>\r
<key name="solid1"> 9, </key>\r
<key name="solid2"> 9, </key>\r
-<key name="soon"> 49,31, </key>\r
-<key name="sort"> 26, </key>\r
-<key name="sourc"> 65, </key>\r
-<key name="spac"> 15,21,60,61,37,31,82, </key>\r
-<key name="specifi"> 0,8,9,10,16,42,49,54,64,70,78,38,40,31,79, </key>\r
-<key name="specific"> 56, </key>\r
-<key name="specify"> 0,66,40,41, </key>\r
-<key name="spher"> 6,7,11,62,75,39,79, </key>\r
-<key name="sphere1"> 62, </key>\r
-<key name="sphere2"> 62, </key>\r
-<key name="sphere3"> 62, </key>\r
-<key name="splin"> 21,31, </key>\r
-<key name="split"> 0,70,40, </key>\r
-<key name="splitangl"> 70,40, </key>\r
-<key name="splitclosedfac"> 70,40, </key>\r
-<key name="splitcontinuity"> 70,40, </key>\r
-<key name="spot"> 70,40, </key>\r
-<key name="sqrt"> 50, </key>\r
-<key name="stag"> 56, </key>\r
-<key name="standard"> 36, </key>\r
-<key name="start"> 1,28,52,72,41,31,80,82, </key>\r
-<key name="step"> 30,53,55,36,41, </key>\r
-<key name="step1"> 55,41, </key>\r
-<key name="step2"> 55,41, </key>\r
-<key name="str"> 72, </key>\r
-<key name="strip"> 70,40, </key>\r
-<key name="study"> 3,4,6,7,9,18,45,62,64,73,34,79, </key>\r
-<key name="sub"> 26,64,77,33,40,85, </key>\r
-<key name="sub_shape_id"> 64, </key>\r
-<key name="subfacelist"> 47, </key>\r
-<key name="submenu"> 5,33,37,40, </key>\r
-<key name="subshap"> 26,33,38,85, </key>\r
-<key name="subshapeall"> 26,33, </key>\r
-<key name="subshapeallid"> 26, </key>\r
-<key name="subshapeallsort"> 26,45,47,64,79, </key>\r
-<key name="subshapeallsortedid"> 26, </key>\r
-<key name="subshapeid"> 85, </key>\r
-<key name="subshapesort"> 26, </key>\r
-<key name="successful"> 50, </key>\r
-<key name="sup_fac"> 64, </key>\r
-<key name="suppres"> 64,76,77,78,40, </key>\r
-<key name="suppressfac"> 64,76,40, </key>\r
-<key name="suppresshol"> 64,77,40, </key>\r
-<key name="suppressinternalwir"> 64,78,40, </key>\r
-<key name="surfac"> 29,43,50,57,70,37,40,41,79, </key>\r
-<key name="surfacecontinuity"> 70,40, </key>\r
-<key name="surfacemod"> 70,40, </key>\r
-<key name="symmetric"> 79, </key>\r
-<key name="symmetrical"> 51,41,79, </key>\r
-<key name="symmetry"> 51,39,41, </key>\r
-<key name="system"> 20,23,49,52,75,41,31,79,84, </key>\r
-<key name="t"> 8,28,75, </key>\r
-<key name="tangent"> 72, </key>\r
-<key name="target"> 27,72,38, </key>\r
-<key name="tetrahedral"> 56, </key>\r
-<key name="textual"> 72,73, </key>\r
-<key name="theendlc"> 52,41, </key>\r
-<key name="them"> 8,26,70,76,40,83, </key>\r
-<key name="theobject"> 52,41, </key>\r
-<key name="therefor"> 72, </key>\r
-<key name="theshap"> 46,64,40, </key>\r
-<key name="thestartlc"> 52,41, </key>\r
-<key name="thetoleranc"> 46,40, </key>\r
+<key name="soon"> 32, </key>\r
+<key name="sort"> 27, </key>\r
+<key name="sourc"> 67, </key>\r
+<key name="spac"> 15,22,62,63,38,32,85, </key>\r
+<key name="specifi"> 0,8,10,16,43,51,56,66,72,80,39,41,32,81, </key>\r
+<key name="specific"> 58, </key>\r
+<key name="specify"> 0,68,41,42, </key>\r
+<key name="spher"> 6,7,11,64,77,40,81, </key>\r
+<key name="sphere1"> 64, </key>\r
+<key name="sphere2"> 64, </key>\r
+<key name="sphere3"> 64, </key>\r
+<key name="splin"> 3,22,32, </key>\r
+<key name="split"> 0,72,41, </key>\r
+<key name="splitangl"> 72,41, </key>\r
+<key name="splitclosedfac"> 72,41, </key>\r
+<key name="splitcontinuity"> 72,41, </key>\r
+<key name="spot"> 72,41, </key>\r
+<key name="sqrt"> 52, </key>\r
+<key name="stag"> 58, </key>\r
+<key name="standard"> 17, </key>\r
+<key name="start"> 1,29,54,74,42,32,82,85, </key>\r
+<key name="step"> 31,55,57,37,42, </key>\r
+<key name="step1"> 57,42, </key>\r
+<key name="step2"> 57,42, </key>\r
+<key name="str"> 74, </key>\r
+<key name="strip"> 72,41, </key>\r
+<key name="study"> 3,4,6,7,9,19,46,64,66,75,35,81, </key>\r
+<key name="sub"> 27,66,79,41,34,89, </key>\r
+<key name="sub_shape_id"> 66, </key>\r
+<key name="subfacelist"> 48, </key>\r
+<key name="submenu"> 5,38,41,34, </key>\r
+<key name="subshap"> 27,39,34,89, </key>\r
+<key name="subshapeall"> 27,34, </key>\r
+<key name="subshapeallid"> 27, </key>\r
+<key name="subshapeallsort"> 27,46,48,66,81, </key>\r
+<key name="subshapeallsortedid"> 27, </key>\r
+<key name="subshapeid"> 89, </key>\r
+<key name="subshapesort"> 27, </key>\r
+<key name="successful"> 52, </key>\r
+<key name="sup_fac"> 66, </key>\r
+<key name="suppres"> 66,78,79,80,41, </key>\r
+<key name="suppressfac"> 66,78,41, </key>\r
+<key name="suppresshol"> 66,79,41, </key>\r
+<key name="suppressinternalwir"> 66,80,41, </key>\r
+<key name="surfac"> 30,44,52,59,72,38,41,42,81, </key>\r
+<key name="surfacecontinuity"> 72,41, </key>\r
+<key name="surfacemod"> 72,41, </key>\r
+<key name="symmetric"> 81, </key>\r
+<key name="symmetrical"> 53,42,81, </key>\r
+<key name="symmetry"> 53,40,42, </key>\r
+<key name="system"> 21,24,51,54,77,42,32,81,88, </key>\r
+<key name="t"> 8,29,48,77, </key>\r
+<key name="tangent"> 74, </key>\r
+<key name="target"> 28,74,39, </key>\r
+<key name="tetrahedral"> 58, </key>\r
+<key name="textual"> 75,74, </key>\r
+<key name="theendlc"> 54,42, </key>\r
+<key name="them"> 8,27,72,78,41,86,89, </key>\r
+<key name="theobject"> 54,42, </key>\r
+<key name="therefor"> 74, </key>\r
+<key name="theshap"> 47,66,41, </key>\r
+<key name="thestartlc"> 54,42, </key>\r
+<key name="thetoleranc"> 47,41, </key>\r
<key name="third"> 8, </key>\r
-<key name="thre"> 1,3,15,18,21,45,51,60,61,73,79,84, </key>\r
-<key name="tim"> 21,53,55,61,41,79, </key>\r
-<key name="tmp"> 64, </key>\r
-<key name="tobezi"> 70,40, </key>\r
-<key name="toggl"> 85, </key>\r
-<key name="tol"> 50, </key>\r
-<key name="tol2d"> 18,43,35, </key>\r
-<key name="tol3d"> 18,43,35, </key>\r
-<key name="toleranc"> 16,43,46,50,70,35,37,40, </key>\r
-<key name="tolerance2d"> 70,40, </key>\r
-<key name="tolerance3d"> 64,70,40, </key>\r
-<key name="tool"> 50,58,37, </key>\r
+<key name="thre"> 1,3,15,19,22,46,51,53,62,63,75,81,88, </key>\r
+<key name="thu"> 83, </key>\r
+<key name="tim"> 22,55,57,63,42,81, </key>\r
+<key name="tobezi"> 72,41, </key>\r
+<key name="togeth"> 89, </key>\r
+<key name="tol"> 52, </key>\r
+<key name="tol2d"> 19,44,36, </key>\r
+<key name="tol3d"> 19,44,36, </key>\r
+<key name="toleranc"> 16,44,47,52,66,72,36,38,41, </key>\r
+<key name="tolerance2d"> 72,41, </key>\r
+<key name="tolerance3d"> 66,72,41, </key>\r
+<key name="tool"> 52,60,38, </key>\r
<key name="top_fac"> 6, </key>\r
<key name="top_face_ind"> 6, </key>\r
-<key name="toru"> 20,62,39,81, </key>\r
-<key name="torus"> 62, </key>\r
-<key name="torus1"> 62, </key>\r
-<key name="torus2"> 62, </key>\r
-<key name="tr1d"> 79, </key>\r
-<key name="tr2d"> 79, </key>\r
-<key name="transform"> 6,17,54,67,38,41,79, </key>\r
+<key name="toru"> 64,40,84, </key>\r
+<key name="torus"> 64, </key>\r
+<key name="torus1"> 64, </key>\r
+<key name="torus2"> 64, </key>\r
+<key name="tr1d"> 81, </key>\r
+<key name="tr2d"> 81, </key>\r
+<key name="transform"> 6,18,56,69,39,42,81, </key>\r
<key name="transformat"> 6, </key>\r
-<key name="transformation"> 6,5,10,42,30,51,52,53,54,55,57,66,67,38,41,79,80, </key>\r
-<key name="translat"> 53,55,57,41,79,80, </key>\r
-<key name="translation"> 53,54,55,38,41,79,80, </key>\r
-<key name="translation1"> 79, </key>\r
-<key name="translation2"> 79, </key>\r
-<key name="translation3"> 79, </key>\r
-<key name="transparency"> 11,12, </key>\r
-<key name="trihedron"> 49,31, </key>\r
-<key name="trimsiz"> 3,4,60,31, </key>\r
-<key name="tru"> 0,16,58,64,37,38,40, </key>\r
-<key name="truncat"> 20, </key>\r
-<key name="try"> 29, </key>\r
-<key name="tt"> 45,73, </key>\r
-<key name="tui"> 0,1,2,56,8,10,12,13,14,15,16,17,19,20,21,22,23,24,25,26,27,28,29,42,43,44,46,48,49,51,52,53,54,55,57,58,59,60,61,63,65,66,67,68,69,70,71,72,74,75,76,77,78,33,34,35,37,38,39,40,41,32,31,80,81,82,83,85, </key>\r
-<key name="tupl"> 37, </key>\r
-<key name="two"> 0,3,4,56,8,9,10,14,17,18,20,24,44,45,46,47,53,54,55,58,73,75,37,38,39,40,41,79,81,84, </key>\r
-<key name="typ"> 21,26,27,58,70,72,33,37,38,39,40,32,85, </key>\r
-<key name="typeofshap"> 33, </key>\r
-<key name="underly"> 16,40, </key>\r
-<key name="unionlist"> 47, </key>\r
-<key name="up"> 12,20,34,38,39, </key>\r
-<key name="updat"> 49,31, </key>\r
-<key name="updateobjbrows"> 6,47,64, </key>\r
-<key name="us"> 2,56,16,26,27,43,30,49,54,70,72,78,33,34,35,37,38,40,41,32,31,85, </key>\r
-<key name="useful"> 0,1,2,56,8,10,12,13,14,15,16,17,19,20,21,22,23,24,25,27,28,29,42,43,44,46,48,51,52,53,54,55,57,58,59,60,61,63,65,66,67,68,69,70,71,72,74,75,76,77,78,32,80,81,82,83,85, </key>\r
-<key name="v"> 7,62,64,79, </key>\r
-<key name="v1"> 56, </key>\r
-<key name="v2"> 56, </key>\r
-<key name="v3"> 56, </key>\r
-<key name="v4"> 56, </key>\r
-<key name="val"> 0,40, </key>\r
-<key name="valid"> 50,64,37, </key>\r
-<key name="validity"> 37, </key>\r
-<key name="valu"> 0,2,8,10,12,16,20,23,28,42,46,49,50,53,55,57,60,64,65,69,70,72,75,35,37,38,39,40,41,31,80,81,82, </key>\r
-<key name="variety"> 26, </key>\r
-<key name="variou"> 70,40, </key>\r
-<key name="vector"> 3,4,7,15,18,20,23,25,28,45,48,49,51,53,55,60,62,64,65,66,72,73,35,39,41,31,79,80,81,82,84, </key>\r
-<key name="vector_arc"> 3,73, </key>\r
-<key name="vector1"> 3,18, </key>\r
-<key name="vector1_arc1"> 18, </key>\r
-<key name="vector1_arc2"> 18, </key>\r
-<key name="vector2"> 3,18, </key>\r
-<key name="vector2_arc1"> 18, </key>\r
-<key name="vector2_arc2"> 18, </key>\r
-<key name="vector3"> 18, </key>\r
-<key name="vertex"> 3,4,7,15,16,18,20,23,24,25,28,50,51,59,60,61,62,64,65,67,75,33,35,37,39,40,41,31,79,81, </key>\r
-<key name="vertex_n"> 61, </key>\r
-<key name="vertex1"> 24,33, </key>\r
-<key name="vertex2"> 24,33, </key>\r
-<key name="vertexmaxtol"> 37, </key>\r
-<key name="vertexmintol"> 37, </key>\r
-<key name="vertic"> 1,3,56,6,8,9,16,18,24,26,45,47,48,62,64,73,33,39,40,41,31,79,80,82, </key>\r
-<key name="via"> 56,8,28,48,72,75,41,85, </key>\r
-<key name="view"> 0,10,12,16,42,49,76,77,78,34,37,40,31,83,85, </key>\r
-<key name="viewer"> 34, </key>\r
-<key name="visibility"> 34, </key>\r
-<key name="visualization"> 12,34, </key>\r
-<key name="volum"> 50,37, </key>\r
-<key name="vr"> 79, </key>\r
-<key name="vrot1d"> 79, </key>\r
-<key name="vt"> 79, </key>\r
-<key name="vtk"> 34, </key>\r
-<key name="vtr1d"> 79, </key>\r
-<key name="vtr2d"> 79, </key>\r
-<key name="vx"> 72, </key>\r
-<key name="vxy"> 3,18,45,64,79, </key>\r
+<key name="transformation"> 6,5,10,43,31,53,54,55,56,57,59,68,69,39,42,81,82, </key>\r
+<key name="translat"> 55,57,59,42,81,82, </key>\r
+<key name="translation"> 55,56,57,39,42,81,82, </key>\r
+<key name="translation1"> 81, </key>\r
+<key name="translation2"> 81, </key>\r
+<key name="translation3"> 81, </key>\r
+<key name="transparency"> 11,12,83, </key>\r
+<key name="transparent"> 83,87, </key>\r
+<key name="trihedron"> 32, </key>\r
+<key name="trimsiz"> 3,4,62,32, </key>\r
+<key name="tru"> 0,16,60,66,38,39,41, </key>\r
+<key name="truncat"> 21, </key>\r
+<key name="try"> 30, </key>\r
+<key name="tt"> 46,75, </key>\r
+<key name="tui"> 0,1,2,58,8,10,12,13,14,15,16,17,18,20,21,22,23,24,25,26,27,28,29,30,43,44,45,47,50,51,53,54,55,56,57,59,60,61,62,63,65,67,68,69,70,71,72,73,74,76,77,78,79,80,35,36,38,39,40,41,42,34,33,32,82,83,84,85,86,87,89, </key>\r
+<key name="tupl"> 38, </key>\r
+<key name="two"> 0,3,4,58,8,9,10,14,18,19,21,25,45,46,47,48,54,55,56,57,60,75,77,38,39,40,41,42,81,84,88,89, </key>\r
+<key name="typ"> 22,27,28,60,72,74,38,39,40,41,34,33,89, </key>\r
+<key name="typeofshap"> 34, </key>\r
+<key name="underly"> 16,41, </key>\r
+<key name="unionlist"> 48, </key>\r
+<key name="up"> 12,17,21,35,39,40,87, </key>\r
+<key name="updat"> 32, </key>\r
+<key name="updateobjbrows"> 6,48,66, </key>\r
+<key name="us"> 2,58,16,27,28,44,31,54,56,72,74,80,35,36,38,39,41,42,34,33,32,83,89, </key>\r
+<key name="useful"> 0,1,2,58,8,10,13,14,15,16,17,18,20,21,22,23,24,25,26,28,29,30,43,44,45,47,50,53,54,55,56,57,59,60,61,62,63,65,67,68,69,70,71,72,73,74,76,77,78,79,80,33,82,83,84,85,86,87,89, </key>\r
+<key name="v"> 7,64,66,81, </key>\r
+<key name="v1"> 58, </key>\r
+<key name="v2"> 58, </key>\r
+<key name="v3"> 58, </key>\r
+<key name="v4"> 58, </key>\r
+<key name="val"> 0,41, </key>\r
+<key name="valid"> 52,66,38, </key>\r
+<key name="validity"> 38, </key>\r
+<key name="valu"> 0,2,8,10,16,21,24,29,43,47,49,51,52,55,57,59,62,66,67,71,72,74,77,36,38,39,40,41,42,32,82,84,85, </key>\r
+<key name="variety"> 27, </key>\r
+<key name="variou"> 72,41, </key>\r
+<key name="vector"> 3,4,7,15,19,21,24,26,29,46,50,51,53,55,57,62,64,66,67,68,75,74,36,40,42,32,81,82,84,85,88, </key>\r
+<key name="vector_arc"> 3,75, </key>\r
+<key name="vector1"> 3,19, </key>\r
+<key name="vector1_arc1"> 19, </key>\r
+<key name="vector1_arc2"> 19, </key>\r
+<key name="vector2"> 3,19, </key>\r
+<key name="vector2_arc1"> 19, </key>\r
+<key name="vector2_arc2"> 19, </key>\r
+<key name="vector3"> 19, </key>\r
+<key name="vertex"> 3,4,7,15,16,19,21,24,25,26,29,52,53,61,62,63,64,66,67,69,77,36,38,40,41,42,34,32,81,84, </key>\r
+<key name="vertex_n"> 63, </key>\r
+<key name="vertex1"> 25,34, </key>\r
+<key name="vertex2"> 25,34, </key>\r
+<key name="vertexmaxtol"> 38, </key>\r
+<key name="vertexmintol"> 38, </key>\r
+<key name="vertic"> 1,3,58,6,8,9,16,19,25,27,46,48,50,64,66,75,40,41,42,34,32,81,82,85, </key>\r
+<key name="via"> 58,8,29,30,50,74,77,37,42, </key>\r
+<key name="view"> 0,10,12,16,43,51,78,79,80,35,38,41,32,86,87,89, </key>\r
+<key name="viewer"> 35, </key>\r
+<key name="visibility"> 35, </key>\r
+<key name="visualization"> 12,35, </key>\r
+<key name="volum"> 52,38, </key>\r
+<key name="vr"> 81, </key>\r
+<key name="vrot1d"> 81, </key>\r
+<key name="vt"> 81, </key>\r
+<key name="vtk"> 35, </key>\r
+<key name="vtr1d"> 81, </key>\r
+<key name="vtr2d"> 81, </key>\r
+<key name="vxy"> 3,19,46,66,81, </key>\r
<key name="vxyz"> 4, </key>\r
-<key name="vz"> 79, </key>\r
-<key name="w_0"> 64, </key>\r
-<key name="wantplanarfac"> 64,33, </key>\r
-<key name="wat"> 2,38, </key>\r
-<key name="waterdensity"> 2,4,38, </key>\r
-<key name="way"> 8,26,28,48,51,53,75, </key>\r
-<key name="weight"> 2,4,38, </key>\r
-<key name="wf"> 73, </key>\r
-<key name="what"> 50, </key>\r
-<key name="whati"> 50,37, </key>\r
-<key name="wheth"> 37, </key>\r
-<key name="whil"> 13,18,50,40, </key>\r
-<key name="whos"> 29,33,37, </key>\r
-<key name="wid"> 30, </key>\r
-<key name="will"> 1,2,8,10,15,17,19,20,21,22,23,24,25,26,27,28,29,42,43,44,48,51,52,53,54,55,57,58,59,60,61,63,65,66,67,68,70,71,72,74,75,36,38,40,41,31,80,81,82,83, </key>\r
-<key name="wir"> 3,56,13,16,18,26,28,29,45,50,59,64,65,72,73,77,78,33,35,40,79,83, </key>\r
-<key name="wire_clos"> 64, </key>\r
-<key name="wire_nam"> 64, </key>\r
-<key name="wire1"> 18, </key>\r
-<key name="wire2"> 18, </key>\r
-<key name="wirefram"> 12, </key>\r
-<key name="wish"> 26,36, </key>\r
-<key name="within"> 12,16,40, </key>\r
-<key name="without"> 64, </key>\r
-<key name="work"> 53,70,72,34,40,31,84,85, </key>\r
-<key name="workingplan"> 72, </key>\r
-<key name="ww"> 45,73, </key>\r
-<key name="x"> 3,8,25,49,61,72,75,37,31, </key>\r
-<key name="x1"> 8,39, </key>\r
-<key name="x2"> 8,39, </key>\r
-<key name="xdx"> 49,31, </key>\r
-<key name="xdy"> 49,31, </key>\r
-<key name="xdz"> 49,31, </key>\r
-<key name="xmax"> 50,37, </key>\r
-<key name="xmin"> 50,37, </key>\r
-<key name="xoy"> 72, </key>\r
-<key name="xyz"> 31,84, </key>\r
+<key name="vz"> 81, </key>\r
+<key name="w_0"> 66, </key>\r
+<key name="wantplanarfac"> 66,34, </key>\r
+<key name="wat"> 2,39, </key>\r
+<key name="waterdensity"> 2,4,39, </key>\r
+<key name="way"> 8,27,29,50,53,55,77,89, </key>\r
+<key name="weight"> 2,4,39, </key>\r
+<key name="wf"> 75, </key>\r
+<key name="what"> 52, </key>\r
+<key name="whati"> 52,38, </key>\r
+<key name="wheth"> 38, </key>\r
+<key name="whil"> 13,19,52,41,87, </key>\r
+<key name="whos"> 30,38,34, </key>\r
+<key name="wid"> 31, </key>\r
+<key name="will"> 1,2,58,8,10,15,18,20,21,22,23,24,25,26,27,28,29,30,43,44,45,50,51,53,54,55,56,57,59,60,61,62,63,65,67,68,69,70,72,73,74,76,77,37,39,41,42,32,82,84,85,86,89, </key>\r
+<key name="wir"> 3,58,13,16,19,27,29,30,46,52,61,66,67,75,74,79,80,36,41,34,81,86, </key>\r
+<key name="wire_clos"> 66, </key>\r
+<key name="wire_nam"> 66, </key>\r
+<key name="wire1"> 19, </key>\r
+<key name="wire2"> 19, </key>\r
+<key name="wirefram"> 12,87, </key>\r
+<key name="wish"> 27,37, </key>\r
+<key name="within"> 16,49,41, </key>\r
+<key name="without"> 66, </key>\r
+<key name="work"> 31,55,72,74,35,41,32,88,89, </key>\r
+<key name="workingplan"> 74, </key>\r
+<key name="ww"> 46,75, </key>\r
+<key name="x"> 3,8,26,51,63,74,77,38,32, </key>\r
+<key name="x1"> 8,40, </key>\r
+<key name="x2"> 8,40, </key>\r
+<key name="xdx"> 51,32, </key>\r
+<key name="xdy"> 51,32, </key>\r
+<key name="xdz"> 51,32, </key>\r
+<key name="xmax"> 52,38, </key>\r
+<key name="xmin"> 52,38, </key>\r
+<key name="xoy"> 74, </key>\r
+<key name="xyz"> 32,88, </key>\r
<key name="xz_fac"> 6, </key>\r
<key name="xz_face_ind"> 6, </key>\r
-<key name="y"> 3,8,25,49,61,72,75,37,31, </key>\r
-<key name="y1"> 8,39, </key>\r
-<key name="y2"> 8,39, </key>\r
-<key name="ydx"> 49,31, </key>\r
-<key name="ydy"> 49,31, </key>\r
-<key name="ydz"> 49,31, </key>\r
-<key name="ymax"> 50,37, </key>\r
-<key name="ymin"> 50,37, </key>\r
-<key name="your"> 43,69,77,36,37,40,84,85, </key>\r
+<key name="y"> 3,8,26,51,63,74,77,38,32, </key>\r
+<key name="y1"> 8,40, </key>\r
+<key name="y2"> 8,40, </key>\r
+<key name="ydx"> 51,32, </key>\r
+<key name="ydy"> 51,32, </key>\r
+<key name="ydz"> 51,32, </key>\r
+<key name="ymax"> 52,38, </key>\r
+<key name="ymin"> 52,38, </key>\r
+<key name="your"> 17,44,71,79,37,38,41,88,89, </key>\r
+<key name="yourselv"> 51, </key>\r
<key name="yz_fac"> 6, </key>\r
<key name="yz_face_ind"> 6, </key>\r
-<key name="z"> 2,3,8,49,61,75,37,38,31, </key>\r
-<key name="z1"> 8,39, </key>\r
-<key name="z2"> 8,39, </key>\r
-<key name="zero"> 20, </key>\r
-<key name="zmax"> 50,37, </key>\r
-<key name="zmin"> 50,37, </key>\r
+<key name="z"> 2,3,8,51,63,77,38,39,32, </key>\r
+<key name="z1"> 8,40, </key>\r
+<key name="z2"> 8,40, </key>\r
+<key name="zero"> 21, </key>\r
+<key name="zmax"> 52,38, </key>\r
+<key name="zmin"> 52,38, </key>\r
\r
</ftswdata> \r
<tocdata>\r
<book name="GEOM module" >\r
<item name="Introduction to GEOM" url="files/introduction_to_geom.htm" />\r
- <item name="Importing\exporting geometrical objects" url="files/salome2_sp3_geomtoolsgui_functions.htm" />\r
+ <item name="Importing/exporting geometrical objects" url="files/salome2_sp3_geomtoolsgui_functions.htm" />\r
<book name="Managing geometrical objects" >\r
- <item name="Changing displaying parameters" url="changing_displaying_parameters.htm" />\r
- <item name="Displaying\hiding objects" url="files/salome2_sp3_displaygui_functions.htm" />\r
+ <item name="Displaying/hiding objects" url="files/salome2_sp3_displaygui_functions.htm" />\r
+ <book name="Changing Display Parameters" >\r
+ <item name="Display Mode" url="wireframe_and_shading.htm" />\r
+ <item name="Color" url="color.htm" />\r
+ <item name="Transparency" url="transparency.htm" />\r
+ <item name="Isolines" url="isos.htm" />\r
+ </book>\r
</book>\r
<book name="Creating geometrical objects" >\r
<book name="Creation of Basic Geometric Objects" >\r
</book>\r
<item name="Using measurement tools" url="files/salome2_sp3_measuregui_functions.htm" />\r
<book name="TUI Scripts" >\r
- <item name="Changing Displaying Parameters" url="changing_display_parameters.htm" />\r
+ <item name="Changing Display Parameters" url="changing_display_parameters.htm" />\r
<book name="Creation of Geometric Objects" >\r
<item name="Basic Geometrical Objects" url="basic_geometrical_objects.htm" />\r
<item name="Primitives" url="primitives.htm" />\r
<item name="Repairing Operations" url="repairing_operations.htm" />\r
</book>\r
<item name="Measurement Tools" url="measurement_tools.htm" />\r
- <item name="Module geompy" url="geompy_doc/namespacegeompy.html" />
</book>\r
</book>\r
\r
<p> </p>\r
\r
<p>You can create a <span style="font-weight: bold;"><B>Wire</B></span> from several \r
- connected edges and wires by selecting them in the object browser or ion \r
+ connected edges and wires by selecting them in the object browser or in \r
the viewer holding Shift button. </p>\r
\r
<p class="whs2"><b style="font-weight: bold;"><span style="font-weight: normal;">The</span> \r
--- /dev/null
+<!doctype HTML public "-//W3C//DTD HTML 4.0 Frameset//EN">\r
+\r
+<html>\r
+\r
+<head>\r
+<title>Wireframe and Shading</title>\r
+<meta http-equiv="content-type" content="text/html; charset=windows-1252">\r
+<meta name="generator" content="RoboHelp by eHelp Corporation www.ehelp.com">\r
+<link rel="stylesheet" href="default_ns.css"><script type="text/javascript" language="JavaScript" title="WebHelpSplitCss">\r
+<!--\r
+if (navigator.appName !="Netscape")\r
+{ document.write("<link rel='stylesheet' href='default.css'>");}\r
+//-->\r
+</script>\r
+<style type="text/css">\r
+<!--\r
+img_whs1 { width:20px; height:20px; border-style:none; }\r
+p.whs2 { margin-left:0px; }\r
+p.whs3 { font-family:'Times New Roman' , serif; font-size:12pt; }\r
+p.whs4 { font-family:'Times New Roman' , serif; font-size:12pt; font-style:italic; }\r
+img_whs5 { border:none; width:400px; height:420px; float:none; border-style:none; }\r
+img_whs6 { border:none; float:none; width:400px; height:420px; border-style:none; }\r
+p.whs7 { font-size:12pt; margin-left:40px; }\r
+p.whs8 { font-size:12pt; }\r
+-->\r
+</style><script type="text/javascript" language="JavaScript">\r
+<!--\r
+if ((navigator.appName == "Netscape") && (parseInt(navigator.appVersion) == 4))\r
+{\r
+ var strNSS = "<style type='text/css'>";\r
+ strNSS += "p.whs2 {margin-left:1pt; }";\r
+ strNSS +="</style>";\r
+ document.write(strNSS);\r
+}\r
+//-->\r
+</script>\r
+<script type="text/javascript" language="JavaScript" title="WebHelpInlineScript">\r
+<!--\r
+function reDo() {\r
+ if (innerWidth != origWidth || innerHeight != origHeight)\r
+ location.reload();\r
+}\r
+if ((parseInt(navigator.appVersion) == 4) && (navigator.appName == "Netscape")) {\r
+ origWidth = innerWidth;\r
+ origHeight = innerHeight;\r
+ onresize = reDo;\r
+}\r
+onerror = null; \r
+//-->\r
+</script>\r
+<style type="text/css">\r
+<!--\r
+div.WebHelpPopupMenu { position:absolute; left:0px; top:0px; z-index:4; visibility:hidden; }\r
+-->\r
+</style><script type="text/javascript" language="javascript1.2" src="whmsg.js"></script>\r
+<script type="text/javascript" language="javascript" src="whver.js"></script>\r
+<script type="text/javascript" language="javascript1.2" src="whproxy.js"></script>\r
+<script type="text/javascript" language="javascript1.2" src="whutils.js"></script>\r
+<script type="text/javascript" language="javascript1.2" src="whtopic.js"></script>\r
+</head>\r
+<body><script type="text/javascript" language="javascript1.2">\r
+<!--\r
+if (window.gbWhTopic)\r
+{\r
+ if (window.addTocInfo)\r
+ {\r
+ addTocInfo("GEOM module\nManaging geometrical objects\nChanging Display Parameters\nDisplay Mode");\r
+addButton("show",BTN_TEXT,"Show","","","","",0,0,"","","");\r
+\r
+ }\r
+ if (window.writeBtnStyle)\r
+ writeBtnStyle();\r
+\r
+ if (window.writeIntopicBar)\r
+ writeIntopicBar(1);\r
+\r
+ if (window.setRelStartPage)\r
+ {\r
+ setRelStartPage("geom.htm");\r
+\r
+ autoSync(1);\r
+ sendSyncInfo();\r
+ sendAveInfoOut();\r
+ }\r
+}\r
+else\r
+ if (window.gbIE4)\r
+ document.location.reload();\r
+//-->\r
+</script>\r
+<h1><span style="font-size: 14pt;"><font size=4 style="font-size:14pt;"><b style="font-weight: bold;"><img src="files/salome2_sp3_displaygui_functions_salome2_sp3_displaygui_functions_image51.gif" width="20px" height="20px" border="0" class="img_whs1"> </b></font></span>Display Mode</h1>\r
+\r
+<p class=TODO\r
+ style="font-family: 'Times New Roman', serif;\r
+ font-size: 12pt;\r
+ font-style: normal;">This option is relevant for viewing 3D \r
+ objects. <span style="font-weight: bold;"><B>Wireframe</B></span> mode means \r
+ that you can see only edges \r
+ of the object, while its shells remain transparent. <span style="font-weight: bold;"><B>Shading</B></span> \r
+ mode means that the shells are filled with color.</p>\r
+\r
+<p class=TODO\r
+ style="font-family: 'Times New Roman', serif;\r
+ font-size: 12pt;\r
+ font-style: normal;"> </p>\r
+\r
+<p class="whs2">To change the display mode right-click on \r
+ this geometrical object in the viewer and from the pop-up menu select \r
+ <span style="font-weight: bold;"><B>Display mode --> Wireframe</B></span> \r
+ or<span style="font-weight: bold;"><B> Shading</B></span>.</p>\r
+\r
+<p class="whs3"> </p>\r
+\r
+<p class="whs3"><b style="font-weight: bold;">TUI \r
+ Command:</b><i> gg.setDisplayMode(ID, Short)</i></p>\r
+\r
+<p class="whs3"> </p>\r
+\r
+<p class="whs3"><b style="font-weight: bold;">Examples:</b></p>\r
+\r
+<p class="whs3"> </p>\r
+\r
+<p class="whs4">Wireframe </p>\r
+\r
+<p class="whs3"><img src="pics/disp_mode1sn.png" x-maintain-ratio="TRUE" width="400px" height="420px" border="0" class="img_whs5"> </p>\r
+\r
+<p class="whs4">Shading</p>\r
+\r
+<p class="whs3"><img src="pics/disp_mode2sn.png" x-maintain-ratio="TRUE" width="400px" height="420px" border="0" class="img_whs6"></p>\r
+\r
+<p class="whs7"> </p>\r
+\r
+<p class="whs8">Our TUI Scripts provide you with useful examples \r
+ of <a href="changing_display_parameters.htm#bookmark">Changing Display \r
+ Parameters</a>. </p>\r
+\r
+<p> </p>\r
+\r
+<script type="text/javascript" language="javascript1.2">\r
+<!--\r
+if (window.writeIntopicBar)\r
+ writeIntopicBar(0);\r
+//-->\r
+</script>\r
+</body>\r
+</html>\r
</script>\r
<style type="text/css">\r
<!--\r
-p.whs1 { margin-left:40px; }\r
-img_whs2 { border:none; width:24px; height:22px; border-style:none; }\r
-p.whs3 { font-size:12pt; }\r
-p.whs4 { font-size:12pt; margin-left:40px; font-weight:bold; }\r
-img_whs5 { border:none; border-style:none; width:312px; height:379px; float:none; }\r
-p.whs6 { font-size:12pt; font-weight:bold; }\r
-p.whs7 { font-size:12pt; margin-left:40px; }\r
-img_whs8 { border:none; width:250px; height:307px; border-style:none; }\r
-img_whs9 { border:none; width:22px; height:22px; border-style:none; }\r
-ul.whs10 { list-style:disc; }\r
+img_whs1 { border:none; width:24px; height:22px; border-style:none; }\r
+p.whs2 { font-size:12pt; }\r
+p.whs3 { font-size:12pt; font-weight:bold; margin-left:40px; }\r
+img_whs4 { border:none; width:312px; height:379px; float:none; border-style:none; }\r
+p.whs5 { font-size:12pt; margin-left:0px; font-weight:normal; }\r
+ul.whs6 { list-style:disc; }\r
+img_whs7 { border:none; width:50px; height:31px; border-style:none; }\r
+p.whs8 { font-size:12pt; margin-left:48px; }\r
+p.whs9 { font-size:12pt; margin-left:0px; }\r
+p.whs10 { font-size:12pt; font-weight:bold; }\r
+p.whs11 { font-size:12pt; margin-left:40px; }\r
+img_whs12 { border:none; width:250px; height:307px; border-style:none; }\r
+img_whs13 { border:none; width:22px; height:22px; border-style:none; }\r
+p.whs14 { font-size:12pt; margin-left:40px; font-weight:bold; }\r
-->\r
-</style><script type="text/javascript" language="JavaScript" title="WebHelpInlineScript">\r
+</style><script type="text/javascript" language="JavaScript">\r
+<!--\r
+if ((navigator.appName == "Netscape") && (parseInt(navigator.appVersion) == 4))\r
+{\r
+ var strNSS = "<style type='text/css'>";\r
+ strNSS += "p.whs5 {margin-left:1pt; }";\r
+ strNSS += "p.whs9 {margin-left:1pt; }";\r
+ strNSS +="</style>";\r
+ document.write(strNSS);\r
+}\r
+//-->\r
+</script>\r
+<script type="text/javascript" language="JavaScript" title="WebHelpInlineScript">\r
<!--\r
function reDo() {\r
if (innerWidth != origWidth || innerHeight != origHeight)\r
<p>The <span style="font-style: italic;"><I>Salome</I></span> platform offers \r
such a useful functionality as creation and editing groups of subshapes \r
of a geometrical object which makes handling subshapes much easier. However \r
- the functionality is available in the OCC viewer only. If other viewer \r
- is used in your project by default, you can toggle the OCC viewer via \r
- Preferences / Viewer background / OCC viewer. </p>\r
+ the functionality is available in the OCC viewer only.</p>\r
\r
<p> </p>\r
\r
-<p class=TODO>To perform operations with groups:</p>\r
-\r
-<p class=TODO> </p>\r
-\r
-<p class="whs1">In the main menu select <span style="font-weight: bold;"><B>New \r
- entity > Group</B></span>.</p>\r
+<p><img src="image56.gif" width="24px" height="22px" border="0" class="img_whs1"> <span style="font-weight: bold; font-size: 14pt;"><font size=4 style="font-size:14pt;"><B>Create \r
+ a group</B></font></span></p>\r
\r
<p> </p>\r
\r
-<p><img src="image56.gif" width="24px" height="22px" border="0" class="img_whs2"> <span style="font-weight: bold; font-size: 14pt;"><font size=4 style="font-size:14pt;"><B>Create \r
- a group</B></font></span></p>\r
+<p class="whs2">To create a group of subshapes of a geometrical \r
+ object in the main menu select <span style="font-weight: bold;"><B>New entity \r
+ > Group > Create</B></span>. </p>\r
\r
-<p> </p>\r
+<p class="whs2">The following menu will appear. </p>\r
+\r
+<p class="whs2"> </p>\r
\r
-<p class="whs3"><span style="font-size: 12pt;"><font size=3 style="font-size:12pt;"><b style="font-weight: bold;">Description:</b> \r
- Creates a group of subshapes of a geometrical object.</font></span></p>\r
+<p class="whs3"><b style="font-weight: bold;"><img src="pics/creategroup.png" x-maintain-ratio="TRUE" width="312px" height="379px" border="0" class="img_whs4"></b></p>\r
\r
<p class="whs3"> </p>\r
\r
-<p class="whs3"><b style="font-weight: bold;">Result:</b> GEOM_Object.</p>\r
+<p class="whs5">In this Menu: </p>\r
\r
-<p class="whs3"> </p>\r
+<p class="whs5"> </p>\r
\r
-<p class="whs3"><b style="font-weight: bold;">TUI Command:</b><i> \r
- </i><span style="font-style: italic;"><I>geompy.CreateGroup(MainShape, ShapeType)</I></span>, \r
- where MainShape is a shape for which the group is created, ShapeType is \r
- a type of shapes in the created group.</p>\r
+<ul type="disc" class="whs6">\r
+ \r
+ <li class=kadov-p><p class="whs5"><span style="font-weight: bold;"><B>Shape \r
+ Type</B></span> radio button define the type of elements for the group (points, \r
+ lines, planes or shapes). </p></li>\r
+ \r
+ <li class=kadov-p><p class="whs5"><span style="font-weight: bold;"><B>Group \r
+ Name</B></span> - here you can enter the name of the group, by default, it \r
+ is Group_n.</p></li>\r
+ \r
+ <li class=kadov-p><p class="whs5">Then, using the <img src="image28.gif" width="50px" height="31px" border="0" class="img_whs7"> button, select the <span style="font-weight: bold;"><B>Main \r
+ Shape</B></span> (a geometrical object on which the group will be created). \r
+ You can select the elements of your group in two ways:</p></li>\r
+ \r
+ <li class=kadov-p><p class="whs8">Clicking \r
+ <span style="font-weight: bold;"><B>Select Sub-Shapes</B></span> button you can \r
+ select them manually in the 3D Viewer, and add to the group by clicking \r
+ the <span style="font-weight: bold;"><B>Add</B></span> button (keep down the \r
+ Shift button on the keyboard to select several elements and add all them \r
+ together). The indexes of the selected elements will be displayed in the \r
+ list. To delete elements from the list, select them and click <span style="font-weight: bold;"><B>Remove</B></span> \r
+ button. </p></li>\r
+ \r
+ <li class=kadov-p><p class="whs8">Clicking \r
+ <span style="font-weight: bold;"><B>Select All</B></span> button you can add \r
+ all object's elements of a certain type in the list of the elements of \r
+ the group. To delete elements from the list, select them and click <span \r
+ style="font-weight: bold;"><B>Remove</B></span> button. </p></li>\r
+ \r
+ <li class=kadov-p><p class="whs9">Finally, \r
+ confirm your selection by clicking <span style="font-weight: bold;"><B>OK \r
+ </B></span>(also closes the Menu) or <span style="font-weight: bold;"><B>Apply</B></span> \r
+ (leaves the Menu open for creation of other groups), or skip it by clicking \r
+ <span style="font-weight: bold;"><B>Close</B></span> button. </p></li>\r
+</ul>\r
\r
-<p class="whs3"> </p>\r
+<p class="whs2"> </p>\r
\r
-<p class="whs3"><b style="font-weight: bold;">Arguments:</b> \r
- 1 Shape + Type of subshape.</p>\r
+<p class="whs2"><b><span style="font-weight: normal;">The</span> \r
+ Result <span style="font-weight: normal;">of the operation will be a</span></b><b> \r
+ GEOM_Object<span style="font-weight: normal;">.</span></b></p>\r
\r
-<p class="whs3"> </p>\r
+<p class="whs2"> </p>\r
\r
-<p class="whs3"><b style="font-weight: bold;">Dialog Box:</b></p>\r
+<p class="whs2"><b style="font-weight: bold;">TUI Command:</b><i> \r
+ </i><span style="font-style: italic;"><I>geompy.CreateGroup(MainShape, ShapeType)</I></span>, \r
+ where MainShape is a shape for which the group is created, ShapeType is \r
+ a type of shapes in the created group.</p>\r
\r
-<p class="whs3"> </p>\r
+<p class="whs2"> </p>\r
\r
-<p class="whs4"><b style="font-weight: bold;"><img src="pics/creategroup.png" x-maintain-ratio="TRUE" width="312px" height="379px" border="0" class="img_whs5"></b></p>\r
+<p class="whs2"><b style="font-weight: bold;">Arguments:</b> \r
+ 1 Shape + Type of subshape.</p>\r
\r
-<p class="whs3"> </p>\r
+<p class="whs2"> </p>\r
\r
-<p class="whs6">Example:</p>\r
+<p class="whs10">Example:</p>\r
\r
-<p class="whs6"> </p>\r
+<p class="whs10"> </p>\r
\r
-<p class="whs7"><img src="image193.jpg" width="250px" height="307px" border="0" class="img_whs8"></p>\r
+<p class="whs11"><img src="image193.jpg" width="250px" height="307px" border="0" class="img_whs12"></p>\r
\r
-<p class="whs3"> </p>\r
+<p class="whs2"> </p>\r
\r
-<p class="whs3"> </p>\r
+<p class="whs2"> </p>\r
\r
-<p class="whs3"> </p>\r
+<p class="whs2"> </p>\r
\r
-<p class="whs3"><img src="image57.gif" width="22px" height="22px" border="0" class="img_whs9"> <span style="font-weight: bold; font-size: 14pt;"><font size=4 style="font-size:14pt;"><B>Edit \r
+<p class="whs2"><img src="image57.gif" width="22px" height="22px" border="0" class="img_whs13"> <span style="font-weight: bold; font-size: 14pt;"><font size=4 style="font-size:14pt;"><B>Edit \r
a group</B></font></span></p>\r
\r
-<p class="whs3"> </p>\r
+<p class="whs2"> </p>\r
\r
-<p class="whs3"><span style="font-size: 12pt;"><font size=3 style="font-size:12pt;"><b style="font-weight: bold;">Description:</b> \r
- Allows to edit the existing group.</font></span></p>\r
+<p class="whs2">To<span style="font-weight: bold;"><B> Edit </B></span>an \r
+ existing group in the main menu select <span style="font-weight: bold;"><B>New \r
+ entity > Group > Edit</B></span>. This menu is designed in the same \r
+ way as the <span style="font-weight: bold;"><B>Create a group</B></span> menu. \r
+ </p>\r
\r
-<p class="whs3"> </p>\r
+<p class="whs2"> </p>\r
\r
-<p class="whs3"><b style="font-weight: bold;">Result:</b> GEOM_Object.</p>\r
+<p class="whs2"><b><span style="font-weight: normal;">The</span> \r
+ Result <span style="font-weight: normal;">of the operation will be a</span></b><b> \r
+ GEOM_Object<span style="font-weight: normal;">.</span></b></p>\r
\r
-<p class="whs3"> </p>\r
+<p> </p>\r
\r
-<p class="whs3"><b style="font-weight: bold;">TUI Command:</b><i> \r
+<p class="whs2"><b style="font-weight: bold;">TUI Command:</b><i> \r
</i></p>\r
\r
-<ul type="disc" class="whs10">\r
+<ul type="disc" class="whs6">\r
\r
- <li class=kadov-p><p class="whs3"><i><span style="font-style: italic;"><I>g</i>eompy.AddObject(Group, \r
+ <li class=kadov-p><p class="whs2"><i><span style="font-style: italic;"><I>g</i>eompy.AddObject(Group, \r
SubShapeID)</I></span>, where Group is a group to which a sub shape has to \r
be added, SubShapeID is an ID of the sub shape to be added to the group</p></li>\r
\r
- <li class=kadov-p><p class="whs3"><span style="font-style: italic;"><I>geompy.RemoveObject(Group, \r
+ <li class=kadov-p><p class="whs2"><span style="font-style: italic;"><I>geompy.RemoveObject(Group, \r
SubShapeID)</I></span>, where Group is a group from which a sub shape has \r
to be removed, SubShapeID is an ID of the sub shape to be removed from \r
the group</p></li>\r
\r
- <li class=kadov-p><p class="whs3"><span style="font-style: italic;"><I>geompy.GetObjectIDs(Group)</I></span>, \r
+ <li class=kadov-p><p class="whs2"><span style="font-style: italic;"><I>geompy.GetObjectIDs(Group)</I></span>, \r
where Group is a group for which its object ID\92s are returned. </p></li>\r
</ul>\r
\r
-<p class="whs7"><span style="font-size: 12pt;"><font size=3 style="font-size:12pt;">Returns: \r
+<p class="whs11"><span style="font-size: 12pt;"><font size=3 style="font-size:12pt;">Returns: \r
List of IDs.</font></span></p>\r
\r
-<p class="whs3"> </p>\r
+<p class="whs2"> </p>\r
\r
-<p class="whs3"><b style="font-weight: bold;">Arguments:</b> \r
+<p class="whs2"><b style="font-weight: bold;">Arguments:</b> \r
1 Shape + its subshapes.</p>\r
\r
-<p class="whs3"> </p>\r
+<p class="whs2"> </p>\r
\r
-<p class="whs3"><b style="font-weight: bold;">Dialog Box:</b></p>\r
+<p class="whs2"><b style="font-weight: bold;">Dialog Box:</b></p>\r
\r
-<p class="whs3"> </p>\r
+<p class="whs2"> </p>\r
\r
-<p class="whs4"><b><img src="pics/editgroup.png" x-maintain-ratio="TRUE" width="312px" height="379px" border="0" class="img_whs5"></b></p>\r
+<p class="whs14"><b style="font-weight: bold;"><img src="pics/editgroup.png" x-maintain-ratio="TRUE" width="312px" height="379px" border="0" class="img_whs4"></b></p>\r
\r
-<p class="whs4"> </p>\r
+<p class="whs14"> </p>\r
\r
-<p class="whs3">Our <span style="font-weight: bold;"><B>TUI Scripts</B></span> \r
+<p class="whs2">Our <span style="font-weight: bold;"><B>TUI Scripts</B></span> \r
provide you with useful examples of <a href="working_with_groups.htm">Working \r
with Groups</a>. </p>\r
\r
<component-comment>Geometry component</component-comment>
<component-multistudy>1</component-multistudy>
<component-icone>ModuleGeom.png</component-icone>
+ <component-impltype>1</component-impltype>
<!-- component interface list -->
<component-interface-list>
<component-version>3.1.0</component-version>
<component-comment>Supervision wrapper for Geometry component</component-comment>
<component-multistudy>1</component-multistudy>
+ <component-impltype>1</component-impltype>
<component-icone></component-icone>
<constraint></constraint>
<component-interface-list>
#include <SALOME_ListIteratorOfListIO.hxx>
#include <SVTK_ViewWindow.h>
-#include <SVTK_RenderWindowInteractor.h>
+#include <SVTK_View.h>
#include <SVTK_ViewModel.h>
#include <SOCC_ViewModel.h>
#include <SVTK_Prs.h>
if ( !viewWindow )
viewWindow = SUIT_Session::session()->activeApplication()->desktop()->activeWindow();
if ( viewWindow->getViewManager()->getType() == SVTK_Viewer::Type() ) {
- SVTK_ViewWindow* wnd = dynamic_cast<SVTK_ViewWindow*>( viewWindow );
- SVTK_RenderWindowInteractor* myRenderInter = wnd ? wnd->getRWInteractor() : 0;
- if( myRenderInter )
- myRenderInter->SetDisplayMode( mode );
+ SVTK_View* aView = ((SVTK_ViewWindow*)viewWindow)->getView();
+ aView->SetDisplayMode( mode );
}
else if ( viewWindow->getViewManager()->getType() == OCCViewer_Viewer::Type() ) {
OCCViewer_Viewer* v3d = ((OCCViewer_ViewManager*)(viewWindow->getViewManager()))->getOCCViewer();
if ( !viewWindow )
viewWindow = SUIT_Session::session()->activeApplication()->desktop()->activeWindow();
if ( viewWindow->getViewManager()->getType() == SVTK_Viewer::Type() ) {
- SVTK_ViewWindow* wnd = dynamic_cast<SVTK_ViewWindow*>( viewWindow );
- SVTK_RenderWindowInteractor* myRenderInter = wnd ? wnd->getRWInteractor() : 0;
- if( myRenderInter )
- dispMode = myRenderInter->GetDisplayMode();
+ SVTK_View* aView = ((SVTK_ViewWindow*)viewWindow)->getView();
+ dispMode = aView->GetDisplayMode();
}
else if ( viewWindow->getViewManager()->getType() == OCCViewer_Viewer::Type() ) {
OCCViewer_Viewer* v3d = ((OCCViewer_ViewManager*)(viewWindow->getViewManager()))->getOCCViewer();
if ( viewWindow->getViewManager()->getType() == SVTK_Viewer::Type() ) {
SVTK_ViewWindow* vw = dynamic_cast<SVTK_ViewWindow*>( viewWindow );
- SVTK_RenderWindowInteractor* rwi = vw ? vw->getRWInteractor() : 0;
-
- if( !rwi )
- return;
+ SVTK_View* aView = vw->getView();
aSelMgr->selectedObjects( aList );
SALOME_ListIteratorOfListIO It( aList );
SVTK_Prs* vtkPrs = stvkViewer ? dynamic_cast<SVTK_Prs*>( stvkViewer->CreatePrs( It.Value()->getEntry() ) ) : 0;
if ( vtkPrs && !vtkPrs->IsNull() ) {
if ( mode == 0 )
- rwi->ChangeRepresentationToWireframe( vtkPrs->GetObjects() );
+ aView->ChangeRepresentationToWireframe( vtkPrs->GetObjects() );
else if ( mode == 1 )
- rwi->ChangeRepresentationToSurface( vtkPrs->GetObjects() );
+ aView->ChangeRepresentationToSurface( vtkPrs->GetObjects() );
}
}
- rwi->Render();
+ aView->Repaint();
}
else if ( viewWindow->getViewManager()->getType() == OCCViewer_Viewer::Type() ) {
OCCViewer_Viewer* v3d = ((OCCViewer_ViewManager*)(viewWindow->getViewManager()))->getOCCViewer();
// function : GetShape()
// purpose :
//=======================================================================
+TopoDS_Shape GEOM_Client::GetShape( GEOM::GEOM_Gen_ptr geom, GEOM::GEOM_Object_ptr aShape )
+{
+ TopoDS_Shape S;
+ TCollection_AsciiString IOR = geom->GetStringFromIOR(aShape);
+ Standard_Integer anIndex = Find(IOR, S);
-TopoDS_Shape GEOM_Client::GetShape( GEOM::GEOM_Gen_ptr geom, GEOM::GEOM_Object_ptr aShape )
-{
- TopoDS_Shape S;
- TCollection_AsciiString IOR = geom->GetStringFromIOR(aShape);
- Standard_Integer anIndex = Find(IOR, S);
-
- if (anIndex !=0 ) return S ;
+ if (anIndex != 0) return S;
- /******* in case of a MAIN GEOM::SHAPE ********/
- if (aShape->IsMainShape()) {
- S = Load(geom, aShape);
- Bind(IOR, S);
- return S;
- }
+ /******* in case of a MAIN GEOM::SHAPE ********/
+ if (aShape->IsMainShape()) {
+ S = Load(geom, aShape);
+ Bind(IOR, S);
+ return S;
+ }
- /******* in case of SUB GEOM::SHAPE ***********/
- // Load and Explore the Main Shape
- TopoDS_Shape aMainShape = GetShape (geom, aShape->GetMainShape());
- GEOM::ListOfLong_var list = aShape->GetSubShapeIndices();
+ /******* in case of SUB GEOM::SHAPE ***********/
+ // Load and Explore the Main Shape
+ TopoDS_Shape aMainShape = GetShape (geom, aShape->GetMainShape());
+ GEOM::ListOfLong_var list = aShape->GetSubShapeIndices();
TopTools_IndexedMapOfShape anIndices;
TopExp::MapShapes(aMainShape, anIndices);
- /* Case of only one subshape */
- if (list->length() == 1)
- {
- S = anIndices.FindKey(list[0]);
- }
+ /* Case of only one subshape */
+ if (list->length() == 1) {
+ S = anIndices.FindKey(list[0]);
+ }
else {
BRep_Builder B;
TopoDS_Compound aCompound;
B.MakeCompound(aCompound);
- for(int i=0; i<list->length(); i++) {
- TopoDS_Shape aSubShape = anIndices.FindKey(list[i]);
- B.Add(aCompound, aSubShape);
+ for (int i = 0; i < list->length(); i++) {
+ if (0 < list[i] && list[i] <= anIndices.Extent()) {
+ TopoDS_Shape aSubShape = anIndices.FindKey(list[i]);
+ B.Add(aCompound, aSubShape);
+ }
}
S = aCompound;
}
- Bind(IOR, S);
- return S;
-}
-
+ Bind(IOR, S);
+ return S;
+}
// VTK Includes
#include <vtkActorCollection.h>
+#include <vtkProperty.h>
// STL Includes
#include <cstring>
sm->clearFilters();
SALOME_View* vf = GetActiveView();
- if ( vf )
- {
- SALOME_Prs* prs = vf->CreatePrs( theIO.IsNull() ? 0 : theIO->getEntry() );
- vf->LocalSelection( prs, theMode );
- delete prs; // delete presentation because displayer is its owner
- }
+ if ( vf ) {
+ if (!theIO.IsNull() && !vf->isVisible(theIO))
+ Display(theIO);
+ SALOME_Prs* prs = vf->CreatePrs( theIO.IsNull() ? 0 : theIO->getEntry() );
+ vf->LocalSelection( prs, theMode );
+ delete prs; // delete presentation because displayer is its owner
+ }
}
//=================================================================
#include "GeometryGUI.h"
-#include <SUIT_Session.h>
-#include <SalomeApp_Application.h>
-#include <SalomeApp_Study.h>
-#include <SalomeApp_ImportOperation.h>
+#include "SUIT_Session.h"
+#include "SalomeApp_Application.h"
+#include "SalomeApp_Study.h"
+#include "SalomeApp_ImportOperation.h"
-#include <OB_Browser.h>
+#include "OB_Browser.h"
-#include <OCCViewer_ViewWindow.h>
-#include <OCCViewer_ViewManager.h>
-#include <SOCC_ViewModel.h>
+#include "OCCViewer_ViewWindow.h"
+#include "OCCViewer_ViewManager.h"
+#include "SOCC_ViewModel.h"
-#include <SVTK_ViewModel.h>
-#include <SVTK_ViewWindow.h>
-#include <SVTK_RenderWindowInteractor.h>
+#include "SVTK_ViewModel.h"
+#include "SVTK_ViewWindow.h"
+#include "SVTK_View.h"
#include "GEOM_Actor.h"
#include "GEOM_Client.hxx"
#include "GEOM_AssemblyBuilder.h"
#include "GEOM_InteractiveObject.hxx"
-#include <SALOME_Event.hxx>
+#include "SALOME_Event.hxx"
#include "utilities.h"
"GEOM",
const_cast<char*>( obj->GetID().c_str()));
- if (SVTK_ViewWindow* svtkViewWindow = GetSVTKViewWindow(app)) {
-
- SVTK_RenderWindowInteractor* aRenderInter= svtkViewWindow->getRWInteractor();
- int aMode = aRenderInter->GetDisplayMode();
+ if (SVTK_ViewWindow* aViewWindow = GetSVTKViewWindow(app)) {
+ SVTK_View* aView = aViewWindow->getView();
+ int aMode = aView->GetDisplayMode();
vtkActorCollection* theActors =
GEOM_AssemblyBuilder::BuildActors(Shape,0,aMode,true);
GEOM_Actor* GActor = GEOM_Actor::SafeDownCast(anActor);
GActor->setName(const_cast<char*>(aNameValue.c_str()));
GActor->setIO(anIO);
- aRenderInter->Display(GActor);
+ aView->Display(GActor);
}
- aRenderInter->Update();
+ aView->Repaint();
} else if (OCCViewer_Viewer* occViewer = GetOCCViewer(app)) {
Handle(AIS_InteractiveContext) ic = occViewer->getAISContext();
Handle(GEOM_AISShape) aSh =
myApp(theApp), myIO(theIO), myParam(theParam)
{}
virtual void Execute(){
- if(SVTK_ViewWindow* svtkViewWindow = GetSVTKViewWindow(myApp)){
- SVTK_RenderWindowInteractor* myRenderInter= svtkViewWindow->getRWInteractor();
- myRenderInter->SetDisplayMode(myIO,myParam);
- myRenderInter->Update();
+ if(SVTK_ViewWindow* aViewWindow = GetSVTKViewWindow(myApp)){
+ SVTK_View* aView = aViewWindow->getView();
+ aView->SetDisplayMode(myIO,myParam);
+ aView->Repaint();
}
else if(OCCViewer_Viewer* occViewer = GetOCCViewer(myApp)) {
SOCC_Viewer* soccViewer = dynamic_cast<SOCC_Viewer*>( occViewer );
myApp(theApp), myIO(theIO), myParam(theParam)
{}
virtual void Execute(){
- if(SVTK_ViewWindow* svtkViewWindow = GetSVTKViewWindow(myApp)){
- SVTK_RenderWindowInteractor* myRenderInter= svtkViewWindow->getRWInteractor();
- myRenderInter->SetColor(myIO,myParam);
- myRenderInter->Update();
+ if(SVTK_ViewWindow* aViewWindow = GetSVTKViewWindow(myApp)){
+ SVTK_View* aView = aViewWindow->getView();
+ aView->SetColor(myIO,myParam);
+ aView->Repaint();
}else if(OCCViewer_Viewer* occViewer = GetOCCViewer(myApp)){
Handle(AIS_InteractiveContext) ic = occViewer->getAISContext();
AIS_ListOfInteractive List;
myApp(theApp), myIO(theIO), myParam(theParam)
{}
virtual void Execute(){
- if(SVTK_ViewWindow* svtkViewWindow = GetSVTKViewWindow(myApp)){
- SVTK_RenderWindowInteractor* myRenderInter= svtkViewWindow->getRWInteractor();
- myRenderInter->SetTransparency(myIO,myParam);
- myRenderInter->Update();
+ if(SVTK_ViewWindow* aViewWindow = GetSVTKViewWindow(myApp)){
+ SVTK_View* aView = aViewWindow->getView();
+ aView->SetTransparency(myIO,myParam);
+ aView->Repaint();
}else if(OCCViewer_Viewer* occViewer = GetOCCViewer(myApp)) {
SOCC_Viewer* soccViewer = dynamic_cast<SOCC_Viewer*>( occViewer );
if (soccViewer)
Handle(GEOM_Function) aFunction = theGroup->GetFunction(1);
if(aFunction.IsNull()) return;
- GEOM_ISubShape aSSI(aFunction);
+ GEOM_ISubShape aSSI (aFunction);
+
+ // Check sub-shape index validity
+ TDF_Label aLabel = aSSI.GetMainShape()->GetOwnerEntry();
+ if (aLabel.IsRoot()) return;
+ Handle(GEOM_Object) anObj = GEOM_Object::GetObject(aLabel);
+ if (anObj.IsNull()) return;
+ TopoDS_Shape aMainShape = anObj->GetValue();
+ if (aMainShape.IsNull()) return;
+
+ TopTools_IndexedMapOfShape aMapOfShapes;
+ TopExp::MapShapes(aMainShape, aMapOfShapes);
+
+ if (theSubShapeID < 1 || aMapOfShapes.Extent() < theSubShapeID) {
+ SetErrorCode("Invalid sub-shape index: out of range");
+ return;
+ }
+
+ // Add sub-shape index
Handle(TColStd_HArray1OfInteger) aSeq = aSSI.GetIndices();
if(aSeq.IsNull()) return;
if(aSeq->Length() == 1 && aSeq->Value(1) == -1) {
aSSI.SetIndices(aNewSeq);
}
- //Make a Python command
+ //Make a Python command
TCollection_AsciiString anOldDescr = aFunction->GetDescription();
GEOM::TPythonDump(aFunction) << anOldDescr.ToCString() << "\n\t"
<< "geompy.AddObject(" << theGroup << ", " << theSubShapeID << ")";
SetErrorCode(OK);
- return;
+ return;
}
//=============================================================================
#include <GProp_GProps.hxx>
#include <gp_Pnt.hxx>
#include <gp_Lin.hxx>
+#include <TColStd_ListOfInteger.hxx>
+#include <TColStd_ListIteratorOfListOfInteger.hxx>
#include <TColStd_Array1OfReal.hxx>
#include <TColStd_HArray1OfInteger.hxx>
Handle(GEOM_Object) GEOMImpl_IShapesOperations::MakeSolidShells
(list<Handle(GEOM_Object)> theShapes)
{
- return MakeShape(theShapes, GEOM_SOLID, SOLID_SHELLS, "MakeSolidShells");
+ return MakeShape(theShapes, GEOM_SOLID, SOLID_SHELLS, "MakeSolid");
}
//=============================================================================
* GetInPlace
*/
//=============================================================================
+static void SimplifyWhat (TopoDS_Shape& theWhat,
+ TopTools_IndexedMapOfShape& theArgumentIndices,
+ TColStd_ListOfInteger& theSimpleSubWhat)
+{
+ TopTools_MapOfShape mapShape;
+ TopoDS_Iterator It (theWhat, Standard_True, Standard_True);
+ for (; It.More(); It.Next()) {
+ if (mapShape.Add(It.Value())) {
+ TopoDS_Shape curSh = It.Value();
+ if (curSh.ShapeType() == TopAbs_COMPOUND ||
+ curSh.ShapeType() == TopAbs_COMPSOLID) {
+ SimplifyWhat(curSh, theArgumentIndices, theSimpleSubWhat);
+ } else {
+ theSimpleSubWhat.Append(theArgumentIndices.FindIndex(curSh));
+ }
+ }
+ }
+}
+
+static bool GetInPlaceOfCompound (Handle(GEOM_Function)& theWhereFunction,
+ TopoDS_Shape& theWhat,
+ TColStd_ListOfInteger& theModifiedArray)
+{
+ bool isFoundAny = false;
+ TopTools_MapOfShape mapShape;
+ TopoDS_Iterator It (theWhat, Standard_True, Standard_True);
+ for (; It.More(); It.Next()) {
+ if (mapShape.Add(It.Value())) {
+ TopoDS_Shape curWhat = It.Value();
+ if (curWhat.ShapeType() == TopAbs_COMPOUND ||
+ curWhat.ShapeType() == TopAbs_COMPSOLID) {
+ // Recursive call for compound or compsolid
+ if (GetInPlaceOfCompound(theWhereFunction, curWhat, theModifiedArray))
+ isFoundAny = true;
+ } else {
+ // Try to find for "simple" shape
+ bool isFound = false;
+
+ TDF_LabelSequence aLabelSeq;
+ theWhereFunction->GetDependency(aLabelSeq);
+ Standard_Integer nbArg = aLabelSeq.Length();
+
+ for (Standard_Integer iarg = 1; iarg <= nbArg && !isFound; iarg++) {
+
+ TDF_Label anArgumentRefLabel = aLabelSeq.Value(iarg);
+
+ Handle(GEOM_Object) anArgumentObject = GEOM_Object::GetReferencedObject(anArgumentRefLabel);
+ TopoDS_Shape anArgumentShape = anArgumentObject->GetValue();
+
+ TopTools_IndexedMapOfShape anArgumentIndices;
+ TopExp::MapShapes(anArgumentShape, anArgumentIndices);
+
+ if (anArgumentIndices.Contains(curWhat)) {
+ isFound = Standard_True;
+ Standard_Integer aWhatIndex = anArgumentIndices.FindIndex(curWhat);
+
+ // Find corresponding label in history
+ TDF_Label anArgumentHistoryLabel =
+ theWhereFunction->GetArgumentHistoryEntry(anArgumentRefLabel, Standard_False);
+ if (!anArgumentHistoryLabel.IsNull()) {
+ TDF_Label aWhatHistoryLabel = anArgumentHistoryLabel.FindChild(aWhatIndex, Standard_False);
+ if (!aWhatHistoryLabel.IsNull()) {
+ Handle(TDataStd_IntegerArray) anIntegerArray;
+ if (aWhatHistoryLabel.FindAttribute(TDataStd_IntegerArray::GetID(), anIntegerArray)) {
+ Standard_Integer imod, aModifLen = anIntegerArray->Array()->Length();
+ for (imod = 1; imod <= aModifLen; imod++) {
+ theModifiedArray.Append(anIntegerArray->Array()->Value(imod));
+ }
+ }
+ }
+ }
+ }
+ }
+ if (isFound)
+ isFoundAny = true;
+ }
+ }
+ }
+ return isFoundAny;
+}
+
Handle(GEOM_Object) GEOMImpl_IShapesOperations::GetInPlace
(Handle(GEOM_Object) theShapeWhere,
Handle(GEOM_Object) theShapeWhat)
TDF_Label aWhatHistoryLabel = anArgumentHistoryLabel.FindChild(aWhatIndex, Standard_False);
if (aWhatHistoryLabel.IsNull()) {
- // Removed entity
- SetErrorCode(OK);
- return NULL;
- }
-
- Handle(TDataStd_IntegerArray) anIntegerArray;
- if (!aWhatHistoryLabel.FindAttribute(TDataStd_IntegerArray::GetID(), anIntegerArray)) {
- SetErrorCode("Error: Empty modifications history for the sought shape.");
- return NULL;
- }
-
- aModifiedArray = anIntegerArray->Array();
- if (aModifiedArray->Length() == 0) {
- SetErrorCode("Error: Empty modifications history for the sought shape.");
- return NULL;
+ // Check, if the sought shape is Compound or Compsolid.
+ // In that case we will try to find history for its sub-shapes
+ if (aWhat.ShapeType() == TopAbs_COMPOUND ||
+ aWhat.ShapeType() == TopAbs_COMPSOLID) {
+ TColStd_ListOfInteger aSimpleSubWhat, aModifiedList;
+ SimplifyWhat(aWhat, anArgumentIndices, aSimpleSubWhat);
+ TColStd_ListIteratorOfListOfInteger anIterSub (aSimpleSubWhat);
+ for (; anIterSub.More(); anIterSub.Next()) {
+ Standard_Integer aSubWhatIndex = anIterSub.Value();
+ TDF_Label aSubWhatHistoryLabel =
+ anArgumentHistoryLabel.FindChild(aSubWhatIndex, Standard_False);
+ if (!aSubWhatHistoryLabel.IsNull()) {
+ Handle(TDataStd_IntegerArray) anIntegerArray;
+ if (aSubWhatHistoryLabel.FindAttribute(TDataStd_IntegerArray::GetID(), anIntegerArray)) {
+ for (Standard_Integer isub = 1; isub <= anIntegerArray->Length(); isub++) {
+ aModifiedList.Append(anIntegerArray->Value(isub));
+ }
+ }
+ }
+ }
+ if (aModifiedList.Extent() > 0) {
+ Handle(TColStd_HArray1OfInteger) aModifiedArraySub =
+ new TColStd_HArray1OfInteger (1, aModifiedList.Extent());
+ TColStd_ListIteratorOfListOfInteger anIterModif (aModifiedList);
+ for (Standard_Integer imod = 1; anIterModif.More(); anIterModif.Next(), imod++) {
+ aModifiedArraySub->SetValue(imod, anIterModif.Value());
+ }
+ aModifiedArray = aModifiedArraySub;
+ } else {
+ // Removed entity
+ SetErrorCode(OK);
+ return NULL;
+ }
+ } else {
+ // Removed entity
+ SetErrorCode(OK);
+ return NULL;
+ }
+ } else {
+ Handle(TDataStd_IntegerArray) anIntegerArray;
+ if (!aWhatHistoryLabel.FindAttribute(TDataStd_IntegerArray::GetID(), anIntegerArray)) {
+ SetErrorCode("Error: Empty modifications history for the sought shape.");
+ return NULL;
+ }
+
+ aModifiedArray = anIntegerArray->Array();
+ if (aModifiedArray->Length() == 0) {
+ SetErrorCode("Error: Empty modifications history for the sought shape.");
+ return NULL;
+ }
}
}
}
if (!isFound) {
- SetErrorCode("The sought shape does not belong to any operation argument.");
- return NULL;
+ // try compound element by element
+ if (aWhat.ShapeType() == TopAbs_COMPOUND ||
+ aWhat.ShapeType() == TopAbs_COMPSOLID) {
+ TColStd_ListOfInteger aModifiedList;
+ isFound = GetInPlaceOfCompound(aWhereFunction, aWhat, aModifiedList);
+ if (isFound) {
+ aModifiedArray = new TColStd_HArray1OfInteger (1, aModifiedList.Extent());
+ TColStd_ListIteratorOfListOfInteger anIterModif (aModifiedList);
+ for (Standard_Integer imod = 1; anIterModif.More(); anIterModif.Next(), imod++) {
+ aModifiedArray->SetValue(imod, anIterModif.Value());
+ }
+ }
+ }
+ if (!isFound) {
+ SetErrorCode("The sought shape does not belong to any operation argument.");
+ return NULL;
+ }
}
}
#include "GEOM_Actor.h"
#include "GEOMBase.h"
-#include <SALOME_ListIO.hxx>
-#include <SALOME_ListIteratorOfListIO.hxx>
+#include "SALOME_ListIO.hxx"
+#include "SALOME_ListIteratorOfListIO.hxx"
#include <SVTK_ViewModel.h>
#include <SVTK_ViewWindow.h>
-#include <SVTK_RenderWindowInteractor.h>
+#include <SVTK_View.h>
#include <OCCViewer_ViewModel.h>
#include <OCCViewer_ViewWindow.h>
SVTK_ViewWindow* vtkVW = dynamic_cast<SVTK_ViewWindow*>( window );
if ( !vtkVW )
return;
- SVTK_RenderWindowInteractor* rwi = vtkVW->getRWInteractor();
- QColor initcolor = rwi->GetColor( selected.First() );
+ SVTK_View* aView = vtkVW->getView();
+ QColor initcolor = aView->GetColor( selected.First() );
QColor c = QColorDialog::getColor( QColor(), app->desktop() );
if ( c.isValid() ) {
SUIT_OverrideCursor();
for ( SALOME_ListIteratorOfListIO It( selected ); It.More(); It.Next() ) {
- rwi->SetColor( It.Value(), c );
+ aView->SetColor( It.Value(), c );
}
}
} // if ( isVTK )
#include "GEOMBase.h"
#include "GEOM_AISShape.hxx"
-#include <SALOME_ListIO.hxx>
-#include <SALOME_ListIteratorOfListIO.hxx>
+#include "SALOME_ListIO.hxx"
+#include "SALOME_ListIteratorOfListIO.hxx"
#include <SVTK_ViewModel.h>
#include <SVTK_ViewWindow.h>
-#include <SVTK_RenderWindowInteractor.h>
+#include <SVTK_View.h>
#include <OCCViewer_ViewModel.h>
#include <OCCViewer_ViewWindow.h>
SVTK_ViewWindow* vtkVW = dynamic_cast<SVTK_ViewWindow*>( window );
if ( !vtkVW )
return;
- SVTK_RenderWindowInteractor* rwi = vtkVW->getRWInteractor();
+ SVTK_View* aView = vtkVW->getView();
if ( myFirstInit ) {
myFirstInit = false;
- float transp = (rwi->GetTransparency(FirstIOS))*10.0;
+ float transp = (aView->GetTransparency(FirstIOS))*10.0;
mySlider->setValue(int(transp));
return;
}
SUIT_OverrideCursor();
for ( SALOME_ListIteratorOfListIO It( selected ); It.More(); It.Next() ) {
- rwi->SetTransparency( It.Value(), newValue/10.0 );
+ aView->SetTransparency( It.Value(), newValue/10.0 );
}
- rwi->Render();
+ aView->Repaint();
} // if ( isVTK )
else if ( isOCC ) {
#include <TColStd_MapOfInteger.hxx>
-
-
-GroupGUI_GroupDlg::GroupGUI_GroupDlg(Mode mode,
- QWidget* parent,
- const char* name,
- bool modal,
- WFlags fl)
+GroupGUI_GroupDlg::GroupGUI_GroupDlg(Mode mode,
+ QWidget* parent,
+ const char* name,
+ bool modal,
+ WFlags fl)
:GEOMBase_Skeleton( parent, "GroupGUI_GroupDlg", false,
- WStyle_Customize | WStyle_NormalBorder | WStyle_Title | WStyle_SysMenu),
- myMode( mode ),
+ WStyle_Customize | WStyle_NormalBorder | WStyle_Title | WStyle_SysMenu),
+ myMode( mode ),
myBusy( false )
{
- QPixmap image0( SUIT_Session::session()->resourceMgr()->loadPixmap( "GEOM", tr( "ICON_OBJBROWSER_VERTEX" ) ) );
- QPixmap image1( SUIT_Session::session()->resourceMgr()->loadPixmap( "GEOM", tr( "ICON_OBJBROWSER_EDGE" ) ) );
- QPixmap image2( SUIT_Session::session()->resourceMgr()->loadPixmap( "GEOM", tr( "ICON_OBJBROWSER_FACE" ) ) );
- QPixmap image3( SUIT_Session::session()->resourceMgr()->loadPixmap( "GEOM", tr( "ICON_OBJBROWSER_SOLID" ) ) );
-
- QPixmap iconSelect( SUIT_Session::session()->resourceMgr()->loadPixmap( "GEOM", tr( "ICON_SELECT" ) ) );
+ SUIT_ResourceMgr* resMgr = SUIT_Session::session()->resourceMgr();
+
+ QPixmap image0 (resMgr->loadPixmap("GEOM", tr("ICON_OBJBROWSER_VERTEX")));
+ QPixmap image1 (resMgr->loadPixmap("GEOM", tr("ICON_OBJBROWSER_EDGE")));
+ QPixmap image2 (resMgr->loadPixmap("GEOM", tr("ICON_OBJBROWSER_FACE")));
+ QPixmap image3 (resMgr->loadPixmap("GEOM", tr("ICON_OBJBROWSER_SOLID")));
+ QPixmap iconSelect (resMgr->loadPixmap("GEOM", tr("ICON_SELECT")));
setCaption( myMode == CreateGroup ? tr( "CREATE_GROUP_TITLE" ) : tr( "EDIT_GROUP_TITLE" ) );
myMainName = new QLineEdit( aFrame );
myMainName->setReadOnly( true );
myMainName->setEnabled( myMode == CreateGroup );
-
- mySelSubBtn = new QPushButton( tr( "SELECT_SUB_SHAPES" ), aFrame );
- mySelAllBtn = new QPushButton( tr( "SELECT_ALL" ), aFrame );
- myAddBtn = new QPushButton( tr( "ADD" ), aFrame );
- myRemBtn = new QPushButton( tr( "REMOVE" ), aFrame );
+
+ mySelSubBtn = new QPushButton( tr( "SELECT_SUB_SHAPES" ), aFrame );
+ mySelAllBtn = new QPushButton( tr( "SELECT_ALL" ), aFrame );
+ myAddBtn = new QPushButton( tr( "ADD" ), aFrame );
+ myRemBtn = new QPushButton( tr( "REMOVE" ), aFrame );
myIdList = new QListBox( aFrame );
-
+
myIdList->setSelectionMode( QListBox::Extended );
myIdList->setRowMode( QListBox::FitToWidth );
// Get ready for main shape selection
myEditCurrentArgument = myMainName;
- connect( GroupConstructors, SIGNAL( clicked( int ) ), this, SLOT( ConstructorsClicked( int ) ) );
- connect( mySelBtn, SIGNAL( clicked() ), this, SLOT(SetEditCurrentArgument()));
+ connect( GroupConstructors, SIGNAL( clicked( int ) ), this, SLOT( ConstructorsClicked( int ) ) );
+ connect( mySelBtn, SIGNAL( clicked() ), this, SLOT( SetEditCurrentArgument() ) );
}
else if ( myMode == EditGroup && IObjectCount() ) {
Standard_Boolean aResult = Standard_False;
GEOM::GEOM_Object_var anObj =
GEOMBase::ConvertIOinGEOMObject( firstIObject(), aResult );
-
+
if ( aResult && !CORBA::is_nil( anObj ) && anObj->GetType() == GEOM_GROUP ) {
myGroup = anObj;
GEOM::GEOM_IGroupOperations_var anOp = GEOM::GEOM_IGroupOperations::_narrow( getOperation() );
myMainObj = anOp->GetMainShape( myGroup );
if ( !CORBA::is_nil( myMainObj ) )
- myMainName->setText( GEOMBase::GetName( myMainObj ) );
+ myMainName->setText( GEOMBase::GetName( myMainObj ) );
setShapeType( (TopAbs_ShapeEnum)anOp->GetType( myGroup ) );
GEOM::ListOfLong_var aCurrList = anOp->GetObjects( myGroup );
QListBoxItem* anItem;
for ( int i = 0, n = aCurrList->length(); i < n; i++ ) {
- anItem = new QListBoxText( QString( "%1" ).arg(aCurrList[i] ) );
- myIdList->insertItem( anItem );
+ anItem = new QListBoxText( QString( "%1" ).arg(aCurrList[i] ) );
+ myIdList->insertItem( anItem );
}
myEditCurrentArgument = 0;
}
}
+ LightApp_SelectionMgr* aSelMgr =
+ ((SalomeApp_Application*)(SUIT_Session::session()->activeApplication()))->selectionMgr();
+
+ connect( aSelMgr, SIGNAL( currentSelectionChanged() ), this, SLOT( SelectionIntoArgument() ) );
+
connect( buttonOk , SIGNAL( clicked() ), this, SLOT( ClickOnOk() ) );
connect( buttonApply, SIGNAL( clicked() ), this, SLOT( ClickOnApply() ) );
connect( mySelSubBtn, SIGNAL( clicked() ), this, SLOT( SetEditCurrentArgument() ) );
connect( mySelAllBtn, SIGNAL( clicked() ), this, SLOT( SetEditCurrentArgument() ) );
- connect( ((SalomeApp_Application*)(SUIT_Session::session()->activeApplication()))->selectionMgr(),
- SIGNAL( currentSelectionChanged() ), this, SLOT( SelectionIntoArgument() ) );
- connect( mySelAllBtn, SIGNAL( clicked() ), this, SLOT( selectAllSubShapes() ) );
connect( myAddBtn, SIGNAL( clicked() ), this, SLOT( add() ) );
connect( myRemBtn, SIGNAL( clicked() ), this, SLOT( remove() ) );
connect( myIdList, SIGNAL( selectionChanged() ), this, SLOT( selectionChanged() ) );
{
GEOMBase_Skeleton::ActivateThisDialog();
- connect( ((SalomeApp_Application*)(SUIT_Session::session()->activeApplication()))->selectionMgr(),
- SIGNAL( currentSelectionChanged() ), this, SLOT( SelectionIntoArgument() ) );
+ connect( ((SalomeApp_Application*)(SUIT_Session::session()->activeApplication()))->selectionMgr(),
+ SIGNAL( currentSelectionChanged() ), this, SLOT( SelectionIntoArgument() ) );
activateSelection();
}
void GroupGUI_GroupDlg::LineEditReturnPressed()
{
QLineEdit* send = ( QLineEdit* )sender();
-
+
if ( send == myMainName && !myEditCurrentArgument ) {
myEditCurrentArgument = myMainName;
activateSelection();
myEditCurrentArgument = 0;
activateSelection();
- updateState();
+
+ if ( send == mySelAllBtn )
+ selectAllSubShapes();
+ else
+ updateState();
}
{
if ( myEditCurrentArgument ) { // Selection of a main shape is active
myEditCurrentArgument->setText( "" );
-
+ myIdList->clear();
+
if ( IObjectCount() == 1 ) {
Standard_Boolean aResult = Standard_False;
GEOM::GEOM_Object_var anObj =
myMainObj = anObj;
myEditCurrentArgument->setText( GEOMBase::GetName( anObj ) );
updateState();
- return;
+ return;
}
}
myMainObj = GEOM::GEOM_Object::_nil();
}
- else { // an attempt to synchronize list box selection with 3d viewer
+ else { // an attempt to synchronize list box selection with 3d viewer
if ( myBusy )
return;
if ( IObjectCount() == 1 ) {
Standard_Boolean aResult = Standard_False;
GEOM::GEOM_Object_var anObj =
- GEOMBase::ConvertIOinGEOMObject( firstIObject(), aResult );
-
+ GEOMBase::ConvertIOinGEOMObject( firstIObject(), aResult );
+
if ( aResult && !anObj->_is_nil() )
- ((SalomeApp_Application*)(SUIT_Session::session()->activeApplication()))->selectionMgr()->GetIndexes( firstIObject(), aMapIndex );
+ ((SalomeApp_Application*)(SUIT_Session::session()->activeApplication()))->
+ selectionMgr()->GetIndexes( firstIObject(), aMapIndex );
}
-
- if ( !aMapIndex.Extent() ) // try to find out and process the object browser selection
- {
- GEOM::ListOfGO anObjects;
- GEOMBase::ConvertListOfIOInListOfGO(selectedIO(), anObjects);
- GEOM::GEOM_ILocalOperations_var aLocOp = getGeomEngine()->GetILocalOperations( getStudyId() );
- for (int i = 0; i < anObjects.length(); i++)
- {
- TopoDS_Shape aShape;
- if ( GEOMBase::GetShape(anObjects[i], aShape, getShapeType()) )
- {
- CORBA::Long anIndex = aLocOp->GetSubShapeIndex( myMainObj, anObjects[i] );
- if ( anIndex >= 0 )
- aMapIndex.Add( anIndex );
- }
- }
+
+ // try to find out and process the object browser selection
+ if ( !aMapIndex.Extent() ) {
+ GEOM::ListOfGO anObjects;
+ GEOMBase::ConvertListOfIOInListOfGO(selectedIO(), anObjects);
+ GEOM::GEOM_ILocalOperations_var aLocOp = getGeomEngine()->GetILocalOperations( getStudyId() );
+ for (int i = 0; i < anObjects.length(); i++) {
+ TopoDS_Shape aShape;
+ if ( GEOMBase::GetShape(anObjects[i], aShape, getShapeType()) ) {
+ CORBA::Long anIndex = aLocOp->GetSubShapeIndex( myMainObj, anObjects[i] );
+ if ( anIndex >= 0 )
+ aMapIndex.Add( anIndex );
+ }
}
-
- if ( aMapIndex.Extent()>=1 )
- {
+ }
+
+ if (aMapIndex.Extent() >= 1) {
QMap<int, int> aMap;
for ( int i = 0, n = myIdList->count(); i < n; i++ )
- aMap.insert( myIdList->item( i )->text().toInt(), i );
-
- for ( int ii = 1, nn = aMapIndex.Extent(); ii <= nn; ii++ )
- {
- if ( aMap.contains( aMapIndex( ii ) ) )
- myIdList->setSelected( aMap[aMapIndex( ii )], true );
- }
+ aMap.insert( myIdList->item( i )->text().toInt(), i );
+
+ for ( int ii = 1, nn = aMapIndex.Extent(); ii <= nn; ii++ ) {
+ if ( aMap.contains( aMapIndex( ii ) ) )
+ myIdList->setSelected( aMap[aMapIndex( ii )], true );
+ }
}
myIdList->blockSignals( isBlocked );
}
bool isBlocked = myIdList->signalsBlocked();
myIdList->blockSignals( true );
myIdList->clear();
-
+
QListBoxItem* anItem;
for ( int i = 0, n = aSubShapes->length(); i < n; i++ ) {
CORBA::Long anIndex = aLocOp->GetSubShapeIndex( myMainObj, aSubShapes[i] );
TColStd_MapOfInteger aMap;
for ( int i = 0, n = myIdList->count(); i < n; i++ )
aMap.Add( myIdList->item( i )->text().toInt() );
-
+
TColStd_IndexedMapOfInteger aMapIndex;
-
+
if ( IObjectCount() == 1 ) {
Standard_Boolean aResult = Standard_False;
GEOM::GEOM_Object_var anObj =
GEOMBase::ConvertIOinGEOMObject( firstIObject(), aResult );
-
+
if ( aResult && !anObj->_is_nil() )
- ((SalomeApp_Application*)(SUIT_Session::session()->activeApplication()))->selectionMgr()->GetIndexes( firstIObject(), aMapIndex );
+ ((SalomeApp_Application*)(SUIT_Session::session()->activeApplication()))->
+ selectionMgr()->GetIndexes( firstIObject(), aMapIndex );
}
-
- if ( !aMapIndex.Extent() ) // try to find out and process the object browser selection
- {
- GEOM::ListOfGO anObjects;
- GEOMBase::ConvertListOfIOInListOfGO(selectedIO(), anObjects);
- GEOM::GEOM_ILocalOperations_var aLocOp = getGeomEngine()->GetILocalOperations( getStudyId() );
- for (int i = 0; i < anObjects.length(); i++)
- {
- TopoDS_Shape aShape;
- if ( GEOMBase::GetShape(anObjects[i], aShape, getShapeType()) )
- {
- CORBA::Long anIndex = aLocOp->GetSubShapeIndex( myMainObj, anObjects[i] );
- if ( anIndex >= 0 )
- aMapIndex.Add( anIndex );
- }
- }
+
+ // try to find out and process the object browser selection
+ if ( !aMapIndex.Extent() ) {
+ GEOM::ListOfGO anObjects;
+ GEOMBase::ConvertListOfIOInListOfGO(selectedIO(), anObjects);
+ GEOM::GEOM_ILocalOperations_var aLocOp = getGeomEngine()->GetILocalOperations( getStudyId() );
+ for (int i = 0; i < anObjects.length(); i++) {
+ TopoDS_Shape aShape;
+ if ( GEOMBase::GetShape(anObjects[i], aShape, getShapeType()) ) {
+ CORBA::Long anIndex = aLocOp->GetSubShapeIndex( myMainObj, anObjects[i] );
+ if ( anIndex >= 0 )
+ aMapIndex.Add( anIndex );
+ }
}
-
- if ( aMapIndex.Extent()>=1 )
- {
- QListBoxItem* anItem;
- bool isBlocked = myIdList->signalsBlocked();
- myIdList->blockSignals( true );
+ }
- for ( int i = 1, n = aMapIndex.Extent(); i <= n; i++ ) {
- if ( aMap.Contains( aMapIndex( i ) ) )
- continue;
+ if ( aMapIndex.Extent() >= 1 ) {
+ QListBoxItem* anItem;
+ bool isBlocked = myIdList->signalsBlocked();
+ myIdList->blockSignals( true );
- anItem = new QListBoxText( QString( "%1" ).arg( aMapIndex( i ) ) );
- myIdList->insertItem( anItem );
- myIdList->setSelected( anItem, true );
- }
+ for ( int i = 1, n = aMapIndex.Extent(); i <= n; i++ ) {
+ if ( aMap.Contains( aMapIndex( i ) ) )
+ continue;
- myIdList->blockSignals( isBlocked );
+ anItem = new QListBoxText( QString( "%1" ).arg( aMapIndex( i ) ) );
+ myIdList->insertItem( anItem );
+ myIdList->setSelected( anItem, true );
}
-
+
+ myIdList->blockSignals( isBlocked );
+ }
+
updateState();
}
void GroupGUI_GroupDlg::remove()
{
for ( int i = myIdList->count() - 1; i >= 0; i-- ) {
- if ( myIdList->isSelected( i ) )
+ if ( myIdList->isSelected( i ) )
myIdList->removeItem( i );
}
updateState();
case TopAbs_EDGE: anId = 1; break;
case TopAbs_FACE: anId = 2; break;
case TopAbs_SOLID: anId = 3; break;
- }
+ }
GroupConstructors->setButton( anId );
}
bool isAdd = false;
TColStd_IndexedMapOfInteger aMapIndex;
-
+
if ( IObjectCount() == 1 ) {
Standard_Boolean aResult = Standard_False;
GEOM::GEOM_Object_var anObj =
GEOMBase::ConvertIOinGEOMObject( firstIObject(), aResult );
if ( aResult && !anObj->_is_nil() )
- ((SalomeApp_Application*)(SUIT_Session::session()->activeApplication()))->selectionMgr()->GetIndexes( firstIObject(), aMapIndex );
+ ((SalomeApp_Application*)(SUIT_Session::session()->activeApplication()))->
+ selectionMgr()->GetIndexes( firstIObject(), aMapIndex );
}
-
- if ( !aMapIndex.Extent() ) // try to find out and process the object browser selection
- {
- isAdd = true;
- GEOM::ListOfGO anObjects;
- GEOMBase::ConvertListOfIOInListOfGO(selectedIO(), anObjects);
- GEOM::GEOM_ILocalOperations_var aLocOp = getGeomEngine()->GetILocalOperations( getStudyId() );
- for (int i = 0; i < anObjects.length(); i++)
- {
- TopoDS_Shape aShape;
- if ( GEOMBase::GetShape(anObjects[i], aShape, getShapeType()) )
- {
- CORBA::Long anIndex = aLocOp->GetSubShapeIndex( myMainObj, anObjects[i] );
- if ( anIndex >= 0 )
- aMapIndex.Add( anIndex );
- else
- isAdd = false;
- }
- else
- isAdd = false;
-
- if ( !isAdd )
- {
- aMapIndex.Clear();
- break;
- }
- }
+
+ // try to find out and process the object browser selection
+ if ( !aMapIndex.Extent() && !CORBA::is_nil( myMainObj ) ) {
+ isAdd = true;
+ GEOM::ListOfGO anObjects;
+ GEOMBase::ConvertListOfIOInListOfGO(selectedIO(), anObjects);
+ GEOM::GEOM_ILocalOperations_var aLocOp = getGeomEngine()->GetILocalOperations( getStudyId() );
+ for (int i = 0; i < anObjects.length(); i++) {
+ TopoDS_Shape aShape;
+ if ( GEOMBase::GetShape(anObjects[i], aShape, getShapeType()) ) {
+ CORBA::Long anIndex = aLocOp->GetSubShapeIndex( myMainObj, anObjects[i] );
+ if ( anIndex >= 0 )
+ aMapIndex.Add( anIndex );
+ else
+ isAdd = false;
+ }
+ else
+ isAdd = false;
+
+ if ( !isAdd ) {
+ aMapIndex.Clear();
+ break;
+ }
}
-
+ }
+
isAdd = aMapIndex.Extent() > 0;
-
+
myAddBtn->setEnabled( !myEditCurrentArgument && !CORBA::is_nil( myMainObj ) && isAdd );
bool hasSel = false;
for ( int ii = 0, nn = myIdList->count(); !hasSel && ii < nn; ii++ )
return;
Standard_Boolean isOk;
- Handle(GEOM_AISShape) aSh =
+ Handle(GEOM_AISShape) aSh =
GEOMBase::ConvertIORinGEOMAISShape( GEOMBase::GetIORFromObject( myMainObj ), isOk, true );
if ( !isOk || aSh.IsNull() )
return;
for ( int ii = 0, nn = myIdList->count(); ii < nn; ii++ )
if ( myIdList->isSelected( ii ) )
- anIds.Add( myIdList->item( ii )->text().toInt() );
+ anIds.Add( myIdList->item( ii )->text().toInt() );
- LightApp_SelectionMgr* aSelMgr = ((SalomeApp_Application*)(SUIT_Session::session()->activeApplication()))->selectionMgr();
+ LightApp_SelectionMgr* aSelMgr =
+ ((SalomeApp_Application*)(SUIT_Session::session()->activeApplication()))->selectionMgr();
aSelMgr->clearSelected();
aSelMgr->AddOrRemoveIndex( aSh->getIO(), anIds, false );
bool GroupGUI_GroupDlg::execute( ObjectList& objects )
{
GEOM::GEOM_IGroupOperations_var anOp = GEOM::GEOM_IGroupOperations::_narrow( getOperation() );
-
+
GEOM::GEOM_Object_var aGroup;
- if ( myMode == CreateGroup )
+ if ( myMode == CreateGroup )
aGroup = anOp->CreateGroup( myMainObj, getShapeType() );
else if ( myMode == EditGroup )
aGroup = myGroup;
}
for ( int ii = 0, nn = myIdList->count(); ii < nn; ii++ ) {
- anOp->AddObject( aGroup, myIdList->item( ii )->text().toInt() );
+ anOp->AddObject( aGroup, myIdList->item( ii )->text().toInt() );
if ( !anOp->IsDone() )
return false;
}
string IOR = GEOMBase::GetIORFromObject( aGroup );
if ( IOR != "" ) {
_PTR(SObject) SO ( study->studyDS()->FindObjectIOR( IOR ) );
- if ( SO ) {
- _PTR(StudyBuilder) aBuilder (study->studyDS()->NewBuilder());
- aBuilder->SetName( SO, getNewObjectName() );
+ if ( SO ) {
+ _PTR(StudyBuilder) aBuilder (study->studyDS()->NewBuilder());
+ aBuilder->SetName( SO, getNewObjectName() );
}
}
}
try
{
getDisplayer()->SetColor( Quantity_NOC_RED );
+ getDisplayer()->SetWidth( 3 );
getDisplayer()->SetToActivate( false );
aPrs = !aSubShape.IsNull() ? getDisplayer()->BuildPrs( aSubShape ) : 0;
if ( aPrs )
void RefineSolids(const TopoDS_Shape& ,
TopTools_ListOfShape&);
-//modified by NIZNHY-PKV Fri Feb 25 17:19:39 2005f XX
static
void GetPlanes (const TopoDS_Edge& anEx,
const TopTools_IndexedDataMapOfShapeListOfShape& anEFMapx,
const TopoDS_Face& aF1,
TopAbs_State& aStPF1);
-//modified by NIZNHY-PKV Fri Feb 25 17:19:44 2005t XX
//=======================================================================
//function : ShellsAndSolids
myAddedFacesMap.Clear();
bMakeSolids=(myLimit==TopAbs_SHAPE || myLimit<TopAbs_SHELL);
//
- //modified by NIZNHY-PKV Thu Feb 24 17:22:32 2005 f XX
myInternalFaces.Clear(); // remove it after all modifs
- //modified by NIZNHY-PKV Thu Feb 24 17:22:56 2005 t XX
+ //
aItS.Initialize(myListShapes);
for ( ;aItS.More(); aItS.Next()) {
const TopoDS_Shape& aS=aItS.Value();
aShellMaker.AddConstFaces(aFC);
//
// add split faces inside aS
+ TopoDS_Shape aIFC;
if (myClosedShapes.Contains(aS)) {
//
// internal faces compound
- TopoDS_Shape aIFC=FindFacesInside(aS, Standard_True);
+ aIFC=FindFacesInside(aS, Standard_True);
aShellMaker.AddSectionFaces(aIFC);
}
//
//
// Add faces added to new shell to myAddedFacesMap:
// avoid rebuilding twice common part of 2 solids.
-
TopTools_ListIteratorOfListOfShape itS(aLNS);
TopExp_Explorer expF;
for (; itS.More(); itS.Next()) {
const TopoDS_Shape& aSh=itS.Value();
expF.Init (aSh, TopAbs_FACE);
for (; expF.More(); expF.Next()){
- myAddedFacesMap.Add (expF.Current());
+ const TopoDS_Shape& aFx=expF.Current();
+ myAddedFacesMap.Add (aFx);
}
}
-
}
//=======================================================================
//function : MakeSolids
const TopoDS_Shape& CSF = myImageShape.Image(theShape).First();
//
TopTools_MapOfShape MSE, MFP;
+ //xf
+ TopTools_IndexedMapOfShape aMFCSF;
+ //xt
TopTools_DataMapOfShapeListOfShape DMSEFP;
TopTools_MapIteratorOfMapOfShape itm;
TopTools_ListOfShape EmptyL;
TopTools_ListIteratorOfListOfShape itl;
-
+ TopTools_IndexedDataMapOfShapeListOfShape DMEF;
+ //
// MSE filling: map of new section edges of CSF
expl.Init(CSF, TopAbs_EDGE);
for (; expl.More(); expl.Next()) {
}
//
// DMEF: map edge of CSF - faces of CSF
- TopTools_IndexedDataMapOfShapeListOfShape DMEF;
TopExp::MapShapesAndAncestors(CSF, TopAbs_EDGE, TopAbs_FACE, DMEF);
+ //xf
+ TopExp::MapShapes(CSF, TopAbs_FACE, aMFCSF);
+ //xt
//
// Fill
// 1. MFP - a map of faces to process: map of resulting faces except
TopoDS_Face aFace1 = TopoDS::Face(itl.Value());
// remove aFace1 form DMSEFP and MFP
LSF.Remove( itl ); // == itl.Next();
- if (!MFP.Remove(aFace1))
+ if (!MFP.Remove(aFace1)) {
continue; // was not is MFP (i.e already checked)
+ }
//
// check if aFace1 was already added to 2 shells
if (!All &&
skipAlreadyAdded = Standard_True;
}
//
+ //xf
+ if (aMFCSF.Contains(aFace1)) {
+ // the face aFace1 can not be inside CSF
+ // if CSF contains the aFace1
+ continue;
+ }
+ //xt
+ //
TopoDS_Shape anOrigFace = aFace1;
if (myImagesFaces.IsImage(aFace1)){
anOrigFace = myImagesFaces.Root(aFace1);
aLNS.Clear();
aLNS.Append(aSolidOr);
}
-//modified by NIZNHY-PKV Fri Feb 25 16:59:57 2005f XX
//=======================================================================
//function : GetPlanes
//purpose :
}
}
}
+
//modified by NIZNHY-PKV Fri Feb 25 17:00:03 2005t XX
/*
A
#include <TColStd_MapOfInteger.hxx>
#include <Geom2d_Curve.hxx>
+#include <Geom2d_TrimmedCurve.hxx>
#include <Geom_TrimmedCurve.hxx>
#include <GeomAdaptor_Curve.hxx>
#include <BRep_Builder.hxx>
#include <BRep_Tool.hxx>
#include <BRepBndLib.hxx>
+#include <BRepLib.hxx>
#include <TopTools_IndexedMapOfShape.hxx>
#include <NMTDS_ShapesDataStructure.hxx>
#include <NMTTools_IndexedDataMapOfShapePaveBlock.hxx>
#include <NMTTools_CommonBlockAPI.hxx>
-#include <Geom2d_Curve.hxx>
#include <NMTTools_Tools.hxx>
-#include <BRepLib.hxx>
-#include <Geom2d_TrimmedCurve.hxx>
static
Standard_Boolean IsPairFound(const Standard_Integer nF1,
//
BOPTools_ListOfPaveBlock aLPB, aLPBC;
//
- //modified by NIZNHY-PKV Fri Mar 11 15:43:02 2005 f
{
Standard_Integer nFj1, nFj2, nE;
TColStd_IndexedMapOfInteger aMFence;
}
}
//
- //modified by NIZNHY-PKV Fri Apr 1 09:49:57 2005t
//
RealSplitsInFace (aBid, nF1, nF2, aLPB);
RealSplitsInFace (aBid, nF2, nF1, aLPB);
//
BOPTools_PaveSet aPSF;
//
- //modified by NIZNHY-PKV Fri Apr 1 10:53:09 2005f
PrepareSetForFace (nF1, nF2, aLPBC, aPSF);
//PrepareSetForFace (nF1, nF2, aPSF);
- //modified by NIZNHY-PKV Thu Mar 31 16:16:47 2005t
//
// Put Paves On Curves
for (j=1; j<=aNbCurves; ++j) {
continue;// mkk ft
}
//
- //modified by NIZNHY-PKV Fri Apr 1 09:56:11 2005f
// 1
const BOPTools_ListOfPaveBlock& aLPBFF=aFFi.PaveBlocks();
bIsExistingPaveBlock=IsExistingPaveBlock(aPBNew, aLPBFF, aTolR3D);
if (bIsExistingPaveBlock) {
continue;
}
- //modified by NIZNHY-PKV Fri Apr 1 09:56:14 2005t
// Checking of validity in 2D
//
bIsValidIn2D=myContext.IsValidBlockForFaces(aT1, aT2, aIC, aF1, aF2, aTol2D);
//
nF1=aPBSE.Face1();
nF2=aPBSE.Face2();
- const TopoDS_Face& aF1=TopoDS::Face(myDS->Shape(nF1));
- const TopoDS_Face& aF2=TopoDS::Face(myDS->Shape(nF2));
+ //
+ //modified by NIZNHY-PKV Thu Jan 26 10:17:04 2006f
+ //const TopoDS_Face& aF1=TopoDS::Face(myDS->Shape(nF1));
+ //const TopoDS_Face& aF2=TopoDS::Face(myDS->Shape(nF2));
+ //modified by NIZNHY-PKV Thu Jan 26 10:17:08 2006t
//
const NMTTools_ListOfCommonBlock& aLCB=aCBP(tDS.RefEdge(i));
NMTTools_CommonBlockAPI aCBAPI(aLCB);
for (; aIt.More(); aIt.Next()) {
BOPTools_PaveBlock aPB=aIt.Value();
//
+ ////modified by NIZNHY-PKV Thu Jan 26 10:16:36 2006f
+ const TopoDS_Face& aF1=TopoDS::Face(myDS->Shape(nF1));
+ const TopoDS_Face& aF2=TopoDS::Face(myDS->Shape(nF2));
+ ////modified by NIZNHY-PKV Thu Jan 26 10:16:39 2006t
+ //
if (aCBAPI.IsCommonBlock(aPB)) {
// it can be Common Block
Standard_Real aTolEx;
const TopoDS_Edge& aEx=TopoDS::Edge(tDS.Shape(mE));
aTolEx=BRep_Tool::Tolerance(aEx);
//
- // Commented out by EAP in the frame of PAL9151
- //
-// Standard_Boolean bHasPCOnF, bFound;
-// Standard_Integer nF, k, nEOrx, nF1x, nF2x;
-// Standard_Real aTolEx, aT1x, aT2x;
-// BOPTools_ListIteratorOfListOfPaveBlock aItPBx;
+ // <- Block A was here
//
-// for (k=0; k<2; ++k) {
-// nF=(!k) ? nF1 : nF2;
-// const TopoDS_Face& aF=TopoDS::Face(myDS->Shape(nF));
-// //
-// bHasPCOnF=BOPTools_Tools2D::HasCurveOnSurface(aEx, aF);
-// if (bHasPCOnF) {
-// continue;
-// }
-// //
-// bFound=Standard_False;
-// aItPBx.Initialize(aLPBx);
-// for (; aItPBx.More(); aItPBx.Next()) {
-// BOPTools_PaveBlock& aPBx=aIt.Value();
-// nEOrx=aPBx.OriginalEdge();
-// const TopoDS_Shape& aEOrx=tDS.Shape(nEOrx);
-// BOPTools_PaveBlock& aPBSEx=aMEPB.ChangeFromKey(aEOrx);
-// aT1x=aPBSEx.Pave1().Param();
-// aT2x=aPBSEx.Pave2().Param();
-// const IntTools_Curve& aICx=aPBSEx.Curve();
-// //
-// nF1x=aPBSEx.Face1();
-// nF2x=aPBSEx.Face2();
-// //
-// if (nF1x==nF) {
-// Handle(Geom2d_Curve) aC2D1x=aICx.FirstCurve2d();
-// Handle(Geom2d_TrimmedCurve)aC2D1xT =new Geom2d_TrimmedCurve(aC2D1x, aT1x, aT2x);
-// aBB.UpdateEdge(aEx, aC2D1xT, aF, aTolEx);
-// bFound=!bFound;
-// break;
-// }
-// //
-// if (nF2x==nF) {
-// Handle(Geom2d_Curve) aC2D2x=aICx.SecondCurve2d();
-// Handle(Geom2d_TrimmedCurve)aC2D2xT =new Geom2d_TrimmedCurve(aC2D2x, aT1x, aT2x);
-// aBB.UpdateEdge(aEx, aC2D2xT, aF, aTolEx);
-// bFound=!bFound;
-// break;
-// }
-// }
-// if (bFound){
-// BRepLib::SameParameter(aEx, aTolEx, Standard_True);
-// }
-// }
- //
- // The code till the if block end is restored from V2_2_2 revision
- //
aF1FWD=aF1;
aF1FWD.Orientation(TopAbs_FORWARD);
NMTTools_Tools::MakePCurve(aEx, aF1FWD, aC2D1, aTolEx);
}
}
}
-//modified by NIZNHY-PKV Fri Apr 1 09:36:06 2005f
//=======================================================================
// function: IsExistingPaveBlock
// purpose:
}
return bFlag;
}
-//modified by NIZNHY-PKV Fri Apr 1 09:36:06 2005t
//=======================================================================
// function: CheckIntermediatePoint
// purpose:
}
return bFlag;
}
-/*
-//=======================================================================
-// function: PrepareSetForFace
-// purpose:
-//=======================================================================
- void NMTTools_PaveFiller::PrepareSetForFace(const Standard_Integer nF1,
- const Standard_Integer nF2,
- BOPTools_PaveSet& aPSF)
-{
- Standard_Integer nV1, nV2;
- TColStd_MapOfInteger aMap;
- BOPTools_ListOfPaveBlock aLPB1, aLPB2;
- BOPTools_ListIteratorOfListOfPaveBlock anIt;
- //
- RealSplitsFace(nF1, aLPB1);
- RealSplitsFace(nF2, aLPB2);
- //
- aLPB1.Append(aLPB2);
- //
- anIt.Initialize(aLPB1);
- for (; anIt.More(); anIt.Next()) {
- const BOPTools_PaveBlock& aPB=anIt.Value();
- const BOPTools_Pave& aPave1=aPB.Pave1();
- nV1=aPave1.Index();
- if (!aMap.Contains(nV1)) {
- aMap.Add(nV1);
- aPSF.Append(aPave1);
- }
- const BOPTools_Pave& aPave2=aPB.Pave2();
- nV2=aPave2.Index();
- if (!aMap.Contains(nV2)) {
- aMap.Add(nV2);
- aPSF.Append(aPave2);
- }
- }
-}
-*/
-/*
-//=======================================================================
-// function: IsExistingPaveBlock
-// purpose:
-//=======================================================================
- Standard_Boolean NMTTools_PaveFiller::IsExistingPaveBlock(const BOPTools_PaveBlock& aPBNew,
- const BOPTools_SSInterference& aFFi)
-{
- Standard_Boolean bFlag;
- Standard_Real aTolR3D;
- //
- aTolR3D=aFFi.TolR3D();
- const BOPTools_ListOfPaveBlock& aLPBR=aFFi.PaveBlocks();
- //
- bFlag=IsExistingPaveBlock(aPBNew, aLPBR, aTolR3D);
- //
- return bFlag;
-}
-*/
+//
+// Block A
+//
+ //
+ // Commented out by EAP in the frame of PAL9151
+ //
+// Standard_Boolean bHasPCOnF, bFound;
+// Standard_Integer nF, k, nEOrx, nF1x, nF2x;
+// Standard_Real aTolEx, aT1x, aT2x;
+// BOPTools_ListIteratorOfListOfPaveBlock aItPBx;
+ //
+// for (k=0; k<2; ++k) {
+// nF=(!k) ? nF1 : nF2;
+// const TopoDS_Face& aF=TopoDS::Face(myDS->Shape(nF));
+// //
+// bHasPCOnF=BOPTools_Tools2D::HasCurveOnSurface(aEx, aF);
+// if (bHasPCOnF) {
+// continue;
+// }
+// //
+// bFound=Standard_False;
+// aItPBx.Initialize(aLPBx);
+// for (; aItPBx.More(); aItPBx.Next()) {
+// BOPTools_PaveBlock& aPBx=aIt.Value();
+// nEOrx=aPBx.OriginalEdge();
+// const TopoDS_Shape& aEOrx=tDS.Shape(nEOrx);
+// BOPTools_PaveBlock& aPBSEx=aMEPB.ChangeFromKey(aEOrx);
+// aT1x=aPBSEx.Pave1().Param();
+// aT2x=aPBSEx.Pave2().Param();
+// const IntTools_Curve& aICx=aPBSEx.Curve();
+// //
+// nF1x=aPBSEx.Face1();
+// nF2x=aPBSEx.Face2();
+// //
+// if (nF1x==nF) {
+// Handle(Geom2d_Curve) aC2D1x=aICx.FirstCurve2d();
+// Handle(Geom2d_TrimmedCurve)aC2D1xT =new Geom2d_TrimmedCurve(aC2D1x, aT1x, aT2x);
+// aBB.UpdateEdge(aEx, aC2D1xT, aF, aTolEx);
+// bFound=!bFound;
+// break;
+// }
+// //
+// if (nF2x==nF) {
+// Handle(Geom2d_Curve) aC2D2x=aICx.SecondCurve2d();
+// Handle(Geom2d_TrimmedCurve)aC2D2xT =new Geom2d_TrimmedCurve(aC2D2x, aT1x, aT2x);
+// aBB.UpdateEdge(aEx, aC2D2xT, aF, aTolEx);
+// bFound=!bFound;
+// break;
+// }
+// }
+// if (bFound){
+// BRepLib::SameParameter(aEx, aTolEx, Standard_True);
+// }
+// }
+ //
+ // The code till the if block end is restored from V2_2_2 revision
+
#include <vtkMatrix4x4.h>
#include <vtkMath.h>
+#include <vtkProperty.h>
#include <vtkRenderer.h>
#include <vtkCamera.h>
#include "GEOM_AssemblyBuilder.h"
#include "GEOM_Actor.h"
-#include "utilities.h"
+
+#include <vtkProperty.h>
// Open CASCADE Includes
#include <TopExp_Explorer.hxx>
#include <TopTools_ListOfShape.hxx>
#include <TopoDS_Iterator.hxx>
+#include "utilities.h"
+
using namespace std;
// SALOME
{
myMapper = vtkPolyDataMapper::New();
myAxis[ 0 ] = myAxis[ 1 ] = myAxis[ 2 ] = 0;
- myPresent = vtkActorCollection::New();
mySize = 100;
SetInfinitive( true );
myColor[ 0 ] = myColor[ 1 ] = myColor[ 1 ] = -1;
GEOM_VTKTrihedron::~GEOM_VTKTrihedron()
{
- myPresent->RemoveAllItems();
- myPresent->Delete();
for ( int i = 0; i < 3; i++ )
myAxis[i]->Delete();
void GEOM_VTKTrihedron::RemoveFromRender( vtkRenderer* theRenderer )
{
- myPresent->InitTraversal();
- while(vtkActor* anActor = myPresent->GetNextActor())
- theRenderer->RemoveActor(anActor);
+ for(int i = 0; i < 3; i++)
+ {
+ myAxis[i]->RemoveFromRender(theRenderer);
+ }
+
+ theRenderer->RemoveActor( this );
}
int GEOM_VTKTrihedron::GetVisibleActorCount(vtkRenderer* theRenderer)
virtual bool hasHighlight() { return false; }
protected:
- vtkActorCollection* myPresent;
VTKViewer_Axis* myAxis[3];
vtkPolyDataMapper* myMapper;
float mySize;