Merge from OCC_development_generic_2006

Preparation of 3.2.0a1
This commit is contained in:
smh 2006-02-07 15:58:35 +00:00
parent 43be995171
commit f505d638da
138 changed files with 4643 additions and 3849 deletions

View File

@ -86,12 +86,12 @@ else
<p class="whs2">&nbsp;</p> <p class="whs2">&nbsp;</p>
<p class="whs2"><b style="font-weight: bold;">You can define <p class="whs2"><b><span style="font-weight: normal;">You can
an Arc by <span style="font-weight: normal;">by three</span><span style="font-weight: bold;"><B> define an</span> Arc <span style="font-weight: normal;">by</span> <span
Points </B></span><span style="font-weight: normal;">that lie on it.</span><span style="font-weight: normal;">three</span><span style="font-weight: bold;"><B>
style="font-weight: bold;"> <B></B></span></b>Point1 is the starting point of Points </B></span><span style="font-weight: normal;">that lie on it, where
the arc, Point2 is a middle point of the arc and Point3 is the ending </span></b>Point1 is the starting point and Point3 is the ending point
point of the arc.</p> of the arc.</p>
<p class="whs2"><b style="font-weight: bold;"><span style="font-weight: normal;">The</span> <p class="whs2"><b style="font-weight: bold;"><span style="font-weight: normal;">The</span>
Result <span style="font-weight: normal;">of the operation will be a</span></b><b> Result <span style="font-weight: normal;">of the operation will be a</span></b><b>

View File

@ -19,9 +19,9 @@ p.whs2 { font-size:12pt; }
p.whs3 { font-family:'Times New Roman' , serif; font-size:12pt; } p.whs3 { font-family:'Times New Roman' , serif; font-size:12pt; }
p.whs4 { font-size:12pt; margin-left:40px; } p.whs4 { font-size:12pt; margin-left:40px; }
img_whs5 { border:none; width:312px; height:367px; float:none; border-style:none; } img_whs5 { border:none; width:312px; height:367px; float:none; border-style:none; }
img_whs6 { border:none; float:none; width:199px; height:184px; border-style:none; } img_whs6 { border:none; float:none; width:200px; height:180px; border-style:none; }
img_whs7 { border:none; float:none; width:186px; height:183px; border-style:none; } img_whs7 { border:none; float:none; width:185px; height:180px; border-style:none; }
img_whs8 { border:none; float:none; width:181px; height:181px; border-style:none; } img_whs8 { border:none; float:none; width:180px; height:180px; border-style:none; }
--> -->
</style><script type="text/javascript" language="JavaScript" title="WebHelpInlineScript"> </style><script type="text/javascript" language="JavaScript" title="WebHelpInlineScript">
<!-- <!--
@ -115,7 +115,7 @@ else
<p class="whs2">&nbsp;</p> <p class="whs2">&nbsp;</p>
<p class="whs4"><img src="pics/archimedesn1.png" x-maintain-ratio="TRUE" width="199px" height="184px" border="0" class="img_whs6"> &nbsp;<img src="pics/archimedesn2.png" x-maintain-ratio="TRUE" width="186px" height="183px" border="0" class="img_whs7"> &nbsp;<img src="pics/archimedesn3.png" x-maintain-ratio="TRUE" width="181px" height="181px" border="0" class="img_whs8"></p> <p class="whs4"><img src="pics/archimedesn1.png" x-maintain-ratio="TRUE" width="200px" height="180px" border="0" class="img_whs6"> &nbsp;<img src="pics/archimedesn2.png" x-maintain-ratio="TRUE" width="185px" height="180px" border="0" class="img_whs7"> &nbsp;<img src="pics/archimedesn3.png" x-maintain-ratio="TRUE" 1height=180 1border=0 width="180px" height="180px" border="0" class="img_whs8"></p>
<p class="whs4">&nbsp;</p> <p class="whs4">&nbsp;</p>

View File

@ -185,21 +185,21 @@ else
<p>&nbsp;</p> <p>&nbsp;</p>
<p># create a vector on two points</p> <p># create a vector from two points</p>
<p class="whs1">vxy &nbsp;= <p class="whs1">vxy &nbsp;=
geompy.MakeVector(px, py)</p> geompy.MakeVector(px, py)</p>
<p>&nbsp;</p> <p>&nbsp;</p>
<p># create a line with a point and a vector</p> <p># create a line from a point and a vector</p>
<p class="whs1">line1 = geompy.MakeLine(pz, <p class="whs1">line1 = geompy.MakeLine(pz,
vxy)</p> vxy)</p>
<p>&nbsp;</p> <p>&nbsp;</p>
<p>#create a line on two points</p> <p>#create a line from two points</p>
<p class="whs1">line2 = geompy.MakeLineTwoPnt(p0, <p class="whs1">line2 = geompy.MakeLineTwoPnt(p0,
p100)</p> p100)</p>
@ -260,28 +260,28 @@ else
<p>&nbsp;</p> <p>&nbsp;</p>
<p># create vector on two points</p> <p># create a vector on two points</p>
<p class="whs1">vxy &nbsp;= <p class="whs1">vxy &nbsp;=
geompy.MakeVector(px, py)</p> geompy.MakeVector(px, py)</p>
<p>&nbsp;</p> <p>&nbsp;</p>
<p># create circle with point, vector and radius</p> <p># create a circle from a point, a vector and a radius</p>
<p class="whs1">circle1 = geompy.MakeCircle(pz, <p class="whs1">circle1 = geompy.MakeCircle(pz,
vxy, 30)</p> vxy, 30)</p>
<p>&nbsp;</p> <p>&nbsp;</p>
<p>#create circle on three points</p> <p>#create a circle from three points</p>
<p class="whs1">circle2 = geompy.MakeCircleThreePnt(p0, <p class="whs1">circle2 = geompy.MakeCircleThreePnt(p0,
px, py)</p> px, py)</p>
<p>&nbsp;</p> <p>&nbsp;</p>
<p># add objects in study</p> <p># add objects in the study</p>
<p class="whs1">id_vxy &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;= <p class="whs1">id_vxy &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=
geompy.addToStudy(vxy, &nbsp;&nbsp;&nbsp;&quot;Vector&quot;)</p> geompy.addToStudy(vxy, &nbsp;&nbsp;&nbsp;&quot;Vector&quot;)</p>
@ -325,21 +325,21 @@ else
<p>&nbsp;</p> <p>&nbsp;</p>
<p># create vector on two points</p> <p># create a vector from two points</p>
<p class="whs1">vector &nbsp;= <p class="whs1">vector &nbsp;=
geompy.MakeVector(p0, p50)</p> geompy.MakeVector(p0, p50)</p>
<p>&nbsp;</p> <p>&nbsp;</p>
<p># create ellipse with point, vector and radiuses</p> <p># create an ellipse from a point, a vector and radiuses</p>
<p class="whs1">ellipse = geompy.MakeEllipse(p50, <p class="whs1">ellipse = geompy.MakeEllipse(p50,
vector, 50, 25)</p> vector, 50, 25)</p>
<p>&nbsp;</p> <p>&nbsp;</p>
<p># add objects in study</p> <p># add objects in the study</p>
<p class="whs1">id_vector &nbsp;= <p class="whs1">id_vector &nbsp;=
geompy.addToStudy(vector, &quot;Vector&quot;)</p> geompy.addToStudy(vector, &quot;Vector&quot;)</p>
@ -348,7 +348,7 @@ else
<p>&nbsp;</p> <p>&nbsp;</p>
<p># display normal vector and ellipse</p> <p># display the ellipse and its normal vector</p>
<p class="whs1">gg.createAndDisplayGO(id_vector)</p> <p class="whs1">gg.createAndDisplayGO(id_vector)</p>
@ -387,28 +387,28 @@ else
<p>&nbsp;</p> <p>&nbsp;</p>
<p># create polyline on list of points</p> <p># create a polyline from a list of points</p>
<p class="whs1">polyline = geompy.MakePolyline([p0, <p class="whs1">polyline = geompy.MakePolyline([p0,
p1, p2, p3, p4])</p> p1, p2, p3, p4])</p>
<p>&nbsp;</p> <p>&nbsp;</p>
<p># create bezier on list of points</p> <p># create a bezier curve from a list of points</p>
<p class="whs1">bezier = geompy.MakeBezier([p0, <p class="whs1">bezier = geompy.MakeBezier([p0,
p1, p2, p3, p4])</p> p1, p2, p3, p4])</p>
<p>&nbsp;</p> <p>&nbsp;</p>
<p>#create interpolation curve on list of points</p> <p>#create a b-spline curve from a list of points</p>
<p class="whs1">interpol = geompy.MakeInterpol([p0, <p class="whs1">interpol = geompy.MakeInterpol([p0,
p1, p2, p3, p4])</p> p1, p2, p3, p4])</p>
<p>&nbsp;</p> <p>&nbsp;</p>
<p># add objects in study</p> <p># add objects in the study</p>
<p class="whs1">id_p0 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;= <p class="whs1">id_p0 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=
geompy.addToStudy(p0, &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&quot;Point1&quot;)</p> geompy.addToStudy(p0, &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&quot;Point1&quot;)</p>
@ -436,7 +436,7 @@ else
<p class="whs1">&nbsp;</p> <p class="whs1">&nbsp;</p>
<p># display points and curves</p> <p># display the points and the curves</p>
<p class="whs1">gg.createAndDisplayGO(id_p0)</p> <p class="whs1">gg.createAndDisplayGO(id_p0)</p>
@ -477,21 +477,21 @@ else
<p>&nbsp;</p> <p>&nbsp;</p>
<p># create vector on two points</p> <p># create a vector from two points</p>
<p class="whs1">vector1 = geompy.MakeVector(p1, <p class="whs1">vector1 = geompy.MakeVector(p1,
p2)</p> p2)</p>
<p>&nbsp;</p> <p>&nbsp;</p>
<p># create vector with the given components</p> <p># create a vector from the given components</p>
<p class="whs1">vector2 = geompy.MakeVectorDXDYDZ(30, <p class="whs1">vector2 = geompy.MakeVectorDXDYDZ(30,
30, 100)</p> 30, 100)</p>
<p>&nbsp;</p> <p>&nbsp;</p>
<p># add objects in study</p> <p># add objects in the study</p>
<p class="whs1">id_p1 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;= <p class="whs1">id_p1 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=
geompy.addToStudy(p1, &nbsp;&nbsp;&nbsp;&nbsp;&quot;Point1&quot;)</p> geompy.addToStudy(p1, &nbsp;&nbsp;&nbsp;&nbsp;&quot;Point1&quot;)</p>
@ -505,7 +505,7 @@ else
<p>&nbsp;</p> <p>&nbsp;</p>
<p># display points and vectors</p> <p># display the points and the vectors</p>
<p class="whs1">gg.createAndDisplayGO(id_p1)</p> <p class="whs1">gg.createAndDisplayGO(id_p1)</p>
@ -550,35 +550,35 @@ else
<p>&nbsp;</p> <p>&nbsp;</p>
<p># create vector with the given components</p> <p># create a vector from the given components</p>
<p class="whs1">vector = geompy.MakeVectorDXDYDZ(100., <p class="whs1">vector = geompy.MakeVectorDXDYDZ(100.,
100., 100.)</p> 100., 100.)</p>
<p>&nbsp;</p> <p>&nbsp;</p>
<p># create vector with two points</p> <p># create a vector from two points</p>
<p class="whs1">vector_arc = geompy.MakeVector(p2, <p class="whs1">vector_arc = geompy.MakeVector(p2,
p5)</p> p5)</p>
<p>&nbsp;</p> <p>&nbsp;</p>
<p># create arc with three points</p> <p># create an arc from three points</p>
<p class="whs1">arc = geompy.MakeArc(p2, <p class="whs1">arc = geompy.MakeArc(p2,
p4, p5)</p> p4, p5)</p>
<p>&nbsp;</p> <p>&nbsp;</p>
<p># create wire</p> <p># create a wire</p>
<p class="whs1">wire = geompy.MakeWire([vector_arc, <p class="whs1">wire = geompy.MakeWire([vector_arc,
arc])</p> arc])</p>
<p>&nbsp;</p> <p>&nbsp;</p>
<p># create face</p> <p># create a face</p>
<p class="whs1">isPlanarWanted = 1</p> <p class="whs1">isPlanarWanted = 1</p>
@ -589,28 +589,28 @@ else
<p>&nbsp;</p> <p>&nbsp;</p>
<p># create plane with point, vector and trimsize</p> <p># create a plane from a point, a vector and a trimsize</p>
<p class="whs1">plane1 = geompy.MakePlane(p1, <p class="whs1">plane1 = geompy.MakePlane(p1,
vector, trimsize)</p> vector, trimsize)</p>
<p>&nbsp;</p> <p>&nbsp;</p>
<p># create plane with three points and trimsize</p> <p># create a plane from three points and a trimsize</p>
<p class="whs1">plane2 = geompy.MakePlaneThreePnt(p1, <p class="whs1">plane2 = geompy.MakePlaneThreePnt(p1,
p2, p3, trimsize)</p> p2, p3, trimsize)</p>
<p>&nbsp;</p> <p>&nbsp;</p>
<p># create plane with given face</p> <p># create a plane from the given face</p>
<p class="whs1">plane3 = geompy.MakePlaneFace(face, <p class="whs1">plane3 = geompy.MakePlaneFace(face,
trimsize)</p> trimsize)</p>
<p>&nbsp;</p> <p>&nbsp;</p>
<p># add objects in study</p> <p># add objects in the study</p>
<p class="whs1">id_face &nbsp;&nbsp;= <p class="whs1">id_face &nbsp;&nbsp;=
geompy.addToStudy(face, &nbsp;&quot;Face&quot;)</p> geompy.addToStudy(face, &nbsp;&quot;Face&quot;)</p>
@ -623,7 +623,7 @@ else
<p>&nbsp;</p> <p>&nbsp;</p>
<p># display points and vectors</p> <p># display the points and the vectors</p>
<p class="whs1">gg.createAndDisplayGO(id_face)</p> <p class="whs1">gg.createAndDisplayGO(id_face)</p>

View File

@ -82,7 +82,7 @@ else
<p>&nbsp;</p> <p>&nbsp;</p>
<p># create vertex and vector</p> <p># create a vertex and a vector</p>
<p class="whs1">p0 &nbsp;&nbsp;= <p class="whs1">p0 &nbsp;&nbsp;=
geompy.MakeVertex( &nbsp;0., geompy.MakeVertex( &nbsp;0.,
@ -99,21 +99,21 @@ else
<p>&nbsp;</p> <p>&nbsp;</p>
<p># create vector</p> <p># create a vector</p>
<p class="whs1">vxyz = geompy.MakeVectorDXDYDZ(100., <p class="whs1">vxyz = geompy.MakeVectorDXDYDZ(100.,
100., 100.)</p> 100., 100.)</p>
<p>&nbsp;</p> <p>&nbsp;</p>
<p># create box with two points</p> <p># create a box from two points</p>
<p class="whs1">box = geompy.MakeBoxTwoPnt(p0, <p class="whs1">box = geompy.MakeBoxTwoPnt(p0,
p200)</p> p200)</p>
<p>&nbsp;</p> <p>&nbsp;</p>
<p># create plane</p> <p># create a plane</p>
<p class="whs1">trimsize &nbsp;= <p class="whs1">trimsize &nbsp;=
500.</p> 500.</p>
@ -136,7 +136,7 @@ else
<p class="whs1">&nbsp;</p> <p class="whs1">&nbsp;</p>
<p># add objects in study</p> <p># add objects in the study</p>
<p class="whs1">id_box = geompy.addToStudy(box,&quot;Box&quot;)</p> <p class="whs1">id_box = geompy.addToStudy(box,&quot;Box&quot;)</p>
@ -150,7 +150,7 @@ else
<p>&nbsp;</p> <p>&nbsp;</p>
<p># display partition objects and plane</p> <p># display the partition objects and the plane</p>
<p class="whs1">gg.createAndDisplayGO(id_box)</p> <p class="whs1">gg.createAndDisplayGO(id_box)</p>
@ -177,7 +177,7 @@ else
<p>&nbsp;</p> <p>&nbsp;</p>
<p># create vertex and vector</p> <p># create a vertex and a vector</p>
<p class="whs1">p0 &nbsp;&nbsp;= <p class="whs1">p0 &nbsp;&nbsp;=
geompy.MakeVertex( &nbsp;0., geompy.MakeVertex( &nbsp;0.,
@ -189,14 +189,15 @@ else
<p>&nbsp;</p> <p>&nbsp;</p>
<p># create box with two points</p> <p># create a box from two points</p>
<p class="whs1">box = geompy.MakeBoxTwoPnt(p0, <p class="whs1">box = geompy.MakeBoxTwoPnt(p0,
p200)</p> p200)</p>
<p>&nbsp;</p> <p>&nbsp;</p>
<p># perform an Archimede operation on the given shape with given parameters</p> <p># perform an Archimede operation on the selected shape with selected
parameters</p>
<p class="whs1">weight &nbsp;= <p class="whs1">weight &nbsp;=
1000000.</p> 1000000.</p>
@ -211,7 +212,7 @@ else
<p class="whs1">&nbsp;</p> <p class="whs1">&nbsp;</p>
<p># add objects in study</p> <p># add objects in the study</p>
<p class="whs1">id_box = geompy.addToStudy(box,&quot;Box&quot;)</p> <p class="whs1">id_box = geompy.addToStudy(box,&quot;Box&quot;)</p>
@ -219,7 +220,7 @@ else
<p>&nbsp;</p> <p>&nbsp;</p>
<p># display box and result of Archimede operation</p> <p># display the box and the result of Archimede operation</p>
<p class="whs1">gg.createAndDisplayGO(id_box)</p> <p class="whs1">gg.createAndDisplayGO(id_box)</p>

View File

@ -126,7 +126,7 @@ else
<p>&nbsp;</p> <p>&nbsp;</p>
<p># add objects in study</p> <p># add objects in the study</p>
<p class="whs1">id_box = geompy.addToStudy(box, <p class="whs1">id_box = geompy.addToStudy(box,
&quot;Box&quot;)</p> &quot;Box&quot;)</p>
@ -139,7 +139,7 @@ else
<p>&nbsp;</p> <p>&nbsp;</p>
<p># display results</p> <p># display the results</p>
<p class="whs1">gg.createAndDisplayGO(id_box)</p> <p class="whs1">gg.createAndDisplayGO(id_box)</p>
@ -162,7 +162,7 @@ else
<p>&nbsp;</p> <p>&nbsp;</p>
<p># create box and sphere</p> <p># create a box and a sphere</p>
<p class="whs1">box = geompy.MakeBoxDXDYDZ(200, <p class="whs1">box = geompy.MakeBoxDXDYDZ(200,
200, 200)</p> 200, 200)</p>
@ -171,7 +171,7 @@ else
<p class="whs1">&nbsp;</p> <p class="whs1">&nbsp;</p>
<p># make compound</p> <p># make a compound</p>
<p class="whs1">compound = geompy.MakeCompound([box, <p class="whs1">compound = geompy.MakeCompound([box,
sphere])</p> sphere])</p>
@ -185,7 +185,7 @@ else
<p>&nbsp;</p> <p>&nbsp;</p>
<p># add objects in study</p> <p># add objects in the study</p>
<p class="whs1">id_compound = geompy.addToStudy(compound, <p class="whs1">id_compound = geompy.addToStudy(compound,
&quot;Compound&quot;)</p> &quot;Compound&quot;)</p>
@ -195,7 +195,7 @@ else
<p>&nbsp;</p> <p>&nbsp;</p>
<p># display results</p> <p># display the results</p>
<p class="whs1">gg.createAndDisplayGO(id_compound)</p> <p class="whs1">gg.createAndDisplayGO(id_compound)</p>
@ -214,7 +214,7 @@ else
<p>&nbsp;</p> <p>&nbsp;</p>
<p># create box and sphere</p> <p># create a box and a sphere</p>
<p class="whs1">box = geompy.MakeBoxDXDYDZ(200, <p class="whs1">box = geompy.MakeBoxDXDYDZ(200,
200, 200)</p> 200, 200)</p>
@ -233,7 +233,7 @@ else
<p>&nbsp;</p> <p>&nbsp;</p>
<p># add objects in study</p> <p># add objects in the study</p>
<p class="whs1">geompy.addToStudy(check_box, <p class="whs1">geompy.addToStudy(check_box,
&quot;Box&quot;)</p> &quot;Box&quot;)</p>

View File

@ -82,7 +82,7 @@ else
<p>&nbsp;</p> <p>&nbsp;</p>
<p># create vertex and vector</p> <p># create a vertex and a vector</p>
<p class="whs1">p1 = geompy.MakeVertex(25, <p class="whs1">p1 = geompy.MakeVertex(25,
55, 0)</p> 55, 0)</p>
@ -95,7 +95,7 @@ else
<p>&nbsp;</p> <p>&nbsp;</p>
<p># create cylinder</p> <p># create a cylinder</p>
<p class="whs1">height = 35</p> <p class="whs1">height = 35</p>
@ -106,20 +106,20 @@ else
<p>&nbsp;</p> <p>&nbsp;</p>
<p># create sphere</p> <p># create a sphere</p>
<p class="whs1">sphere = geompy.MakeSphereR(40)</p> <p class="whs1">sphere = geompy.MakeSphereR(40)</p>
<p>&nbsp;</p> <p>&nbsp;</p>
<p># make fuse</p> <p># fuse</p>
<p class="whs1">fuse = geompy.MakeFuse(cylinder, <p class="whs1">fuse = geompy.MakeFuse(cylinder,
sphere)</p> sphere)</p>
<p>&nbsp;</p> <p>&nbsp;</p>
<p># add objects in study</p> <p># add objects in the study</p>
<p class="whs1">id_cylinder = geompy.addToStudy(cylinder, <p class="whs1">id_cylinder = geompy.addToStudy(cylinder,
&quot;Cylinder&quot;)</p> &quot;Cylinder&quot;)</p>
@ -159,7 +159,7 @@ else
<p>&nbsp;</p> <p>&nbsp;</p>
<p># create vertex and vector</p> <p># create a vertex and a vector</p>
<p class="whs1">p1 = geompy.MakeVertex(25, <p class="whs1">p1 = geompy.MakeVertex(25,
55, 0)</p> 55, 0)</p>
@ -172,7 +172,7 @@ else
<p>&nbsp;</p> <p>&nbsp;</p>
<p># create cylinder</p> <p># create a cylinder</p>
<p class="whs1">height = 35</p> <p class="whs1">height = 35</p>
@ -183,7 +183,7 @@ else
<p>&nbsp;</p> <p>&nbsp;</p>
<p># create sphere</p> <p># create a sphere</p>
<p class="whs1">sphere = geompy.MakeSphereR(40)</p> <p class="whs1">sphere = geompy.MakeSphereR(40)</p>
@ -196,14 +196,14 @@ else
<p>&nbsp;</p> <p>&nbsp;</p>
<p># add objects in study</p> <p># add objects in the study</p>
<p class="whs1">id_common = geompy.addToStudy(common, <p class="whs1">id_common = geompy.addToStudy(common,
&quot;Common&quot;)</p> &quot;Common&quot;)</p>
<p>&nbsp;</p> <p>&nbsp;</p>
<p># display results</p> <p># display the results</p>
<p class="whs1">gg.createAndDisplayGO(id_common)</p> <p class="whs1">gg.createAndDisplayGO(id_common)</p>
@ -222,7 +222,7 @@ else
<p>&nbsp;</p> <p>&nbsp;</p>
<p># create vertex and vector</p> <p># create a vertex and a vector</p>
<p class="whs1">p1 = geompy.MakeVertex(25, <p class="whs1">p1 = geompy.MakeVertex(25,
55, 0)</p> 55, 0)</p>
@ -235,7 +235,7 @@ else
<p>&nbsp;</p> <p>&nbsp;</p>
<p># create cylinder</p> <p># create a cylinder</p>
<p class="whs1">height = 35</p> <p class="whs1">height = 35</p>
@ -246,27 +246,27 @@ else
<p>&nbsp;</p> <p>&nbsp;</p>
<p># create sphere</p> <p># create a sphere</p>
<p class="whs1">sphere = geompy.MakeSphereR(40)</p> <p class="whs1">sphere = geompy.MakeSphereR(40)</p>
<p>&nbsp;</p> <p>&nbsp;</p>
<p># make cut</p> <p>#cut</p>
<p class="whs1">cut = geompy.MakeCut(cylinder, <p class="whs1">cut = geompy.MakeCut(cylinder,
sphere)</p> sphere)</p>
<p>&nbsp;</p> <p>&nbsp;</p>
<p># add objects in study</p> <p># add objects in the study</p>
<p class="whs1">id_cut = geompy.addToStudy(cut, <p class="whs1">id_cut = geompy.addToStudy(cut,
&quot;Cut&quot;)</p> &quot;Cut&quot;)</p>
<p>&nbsp;</p> <p>&nbsp;</p>
<p># display results</p> <p># display the results</p>
<p class="whs1">gg.createAndDisplayGO(id_cut)</p> <p class="whs1">gg.createAndDisplayGO(id_cut)</p>
@ -285,7 +285,7 @@ else
<p>&nbsp;</p> <p>&nbsp;</p>
<p># create vertex and vector</p> <p># create a vertex and a vector</p>
<p class="whs1">p1 = geompy.MakeVertex(25, <p class="whs1">p1 = geompy.MakeVertex(25,
55, 0)</p> 55, 0)</p>
@ -298,7 +298,7 @@ else
<p>&nbsp;</p> <p>&nbsp;</p>
<p># create cylinder</p> <p># create a cylinder</p>
<p class="whs1">height = 35</p> <p class="whs1">height = 35</p>
@ -309,27 +309,27 @@ else
<p>&nbsp;</p> <p>&nbsp;</p>
<p># create sphere</p> <p># create a sphere</p>
<p class="whs1">sphere = geompy.MakeSphereR(40)</p> <p class="whs1">sphere = geompy.MakeSphereR(40)</p>
<p>&nbsp;</p> <p>&nbsp;</p>
<p># make section</p> <p># make a section</p>
<p class="whs1">section = geompy.MakeSection(cylinder, <p class="whs1">section = geompy.MakeSection(cylinder,
sphere)</p> sphere)</p>
<p>&nbsp;</p> <p>&nbsp;</p>
<p># add objects in study</p> <p># add objects in the study</p>
<p class="whs1">id_section = geompy.addToStudy(section, <p class="whs1">id_section = geompy.addToStudy(section,
&quot;Section&quot;)</p> &quot;Section&quot;)</p>
<p>&nbsp;</p> <p>&nbsp;</p>
<p># display results</p> <p># display the results</p>
<p class="whs1">gg.createAndDisplayGO(id_section)</p> <p class="whs1">gg.createAndDisplayGO(id_section)</p>

View File

@ -144,9 +144,9 @@ else
<span style="font-weight: normal; font-style: italic;"><I>geompy.MakeBox(x1,y1,z1,x2,y2,z2)</I></span> <span style="font-weight: normal; font-style: italic;"><I>geompy.MakeBox(x1,y1,z1,x2,y2,z2)</I></span>
</p> </p>
<p class="whs8"><b style="font-weight: bold;">Arguments:<span <p class="whs8"><b>Arguments:<span style="font-weight: normal;">
style="font-weight: normal;"> </b>Name</span> + <span style="font-weight: normal;">X, </b>Name</span> + <span style="font-weight: normal;">X, Y and Z coordinates
Y and Z coordinates of both points.</span></p> of both points.</span></p>
<p class="whs8">&nbsp;</p> <p class="whs8">&nbsp;</p>

View File

@ -117,28 +117,28 @@ else
<p>&nbsp;</p> <p>&nbsp;</p>
<p># create quadrangle face from four edges</p> <p># create a quadrangle face from four edges</p>
<p class="whs1">qface1 = geompy.MakeQuad(edge1, <p class="whs1">qface1 = geompy.MakeQuad(edge1,
edge2, edge3, edge4)</p> edge2, edge3, edge4)</p>
<p>&nbsp;</p> <p>&nbsp;</p>
<p># create quadrangle face on two edges</p> <p># create a quadrangle face from two edges</p>
<p class="whs1">qface2 = geompy.MakeQuad2Edges(edge1, <p class="whs1">qface2 = geompy.MakeQuad2Edges(edge1,
edge3)</p> edge3)</p>
<p>&nbsp;</p> <p>&nbsp;</p>
<p># create quadrangle with specified corners</p> <p># create a quadrangle from four points in its corners</p>
<p class="whs1">qface3 = geompy.MakeQuad4Vertices(p1, <p class="whs1">qface3 = geompy.MakeQuad4Vertices(p1,
p2, p3, p4)</p> p2, p3, p4)</p>
<p>&nbsp;</p> <p>&nbsp;</p>
<p># add objects in study</p> <p># add objects in the study</p>
<p class="whs1">id_p1 = geompy.addToStudy(p1,&quot;Point1&quot;)</p> <p class="whs1">id_p1 = geompy.addToStudy(p1,&quot;Point1&quot;)</p>
@ -164,7 +164,7 @@ else
<p>&nbsp;</p> <p>&nbsp;</p>
<p># display vertices, edges and quadrangle faces</p> <p># display the vertices, the edges and the quadrangle faces</p>
<p class="whs1">gg.createAndDisplayGO(id_p1)</p> <p class="whs1">gg.createAndDisplayGO(id_p1)</p>
@ -195,7 +195,7 @@ else
<p><span style="font-family: 'Lucida Console', monospace;">gg.setDisplayMode(id_qface3,1)</span> <p><span style="font-family: 'Lucida Console', monospace;">gg.setDisplayMode(id_qface3,1)</span>
</p> </p>
<h3>&nbsp;</h3> <p>&nbsp;</p>
<h3>Hexagonal Solid</h3> <h3>Hexagonal Solid</h3>
@ -285,21 +285,21 @@ else
<p>&nbsp;</p> <p>&nbsp;</p>
<p># create hexahedral solid between two given faces</p> <p># create a hexahedral solid between two given faces</p>
<p class="whs1">solid1 = geompy.MakeHexa2Faces(qface1, <p class="whs1">solid1 = geompy.MakeHexa2Faces(qface1,
qface2)</p> qface2)</p>
<p>&nbsp;</p> <p>&nbsp;</p>
<p># create hexahedral solids, bounded by the six given faces</p> <p># create a hexahedral solids, bounded by six given faces</p>
<p class="whs1">solid2 = geompy.MakeHexa(qface3, <p class="whs1">solid2 = geompy.MakeHexa(qface3,
qface4, qface5, qface6, qface7, qface8)</p> qface4, qface5, qface6, qface7, qface8)</p>
<p>&nbsp;</p> <p>&nbsp;</p>
<p># add objects in study</p> <p># add objects in the study</p>
<p class="whs1">id_solid1 = geompy.addToStudy(solid1,&quot;Solid1&quot;)</p> <p class="whs1">id_solid1 = geompy.addToStudy(solid1,&quot;Solid1&quot;)</p>

View File

@ -92,9 +92,9 @@ else
<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> <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>
<p class="whs2"><b style="font-weight: normal;">T</b>o produce <p class="whs2"><b style="font-weight: normal;">T</b>o produce
a <span style="font-weight: bold;"><B>Fillet</B></span> in the Main Menu select a <span style="font-weight: bold;"><B>Chamfer</B></span> in the Main Menu select
<span style="font-weight: bold;"><B>Operations - &gt; Transformation - &gt; <span style="font-weight: bold;"><B>Operations - &gt; Transformation - &gt;
Fillet</B></span> </p> Chamfer</B></span> </p>
<p>&nbsp;</p> <p>&nbsp;</p>
@ -129,9 +129,8 @@ else
<p class="whs2">To create chamfer on the specified edges of <p class="whs2">To create chamfer on the specified edges of
the given shape, &nbsp;you the given shape, &nbsp;you
need to define the <span style="font-weight: bold;"><B>Main Object</B></span> need to define the <span style="font-weight: bold;"><B>Main Object</B></span>
to create a fillet on, select the necessary edges in the object browser to create a fillet on, select the necessary edges in the viewer and define
or in the viewer and define the <span style="font-weight: bold;"><B>Dimension</B></span> the <span style="font-weight: bold;"><B>Dimension</B></span> of the Chamfer.</p>
of the Chamfer.</p>
<p class="whs2"><b style="font-weight: bold;">TUI Command:</b><i> <p class="whs2"><b style="font-weight: bold;">TUI Command:</b><i>
</i><span style="font-style: italic;"><I>geompy.MakeChamferEdge(Shape, D1, </i><span style="font-style: italic;"><I>geompy.MakeChamferEdge(Shape, D1,
@ -148,12 +147,12 @@ else
<p class="whs2">To create chamfer on the specified faces of <p class="whs2">To create chamfer on the specified faces of
the given shape, &nbsp;you the given shape, &nbsp;you
need to define the <span style="font-weight: bold;"><B>Main Object</B></span> need to define the <span style="font-weight: bold;"><B>Main Object</B></span>
to create a fillet on, select the necessary faces in the object browser to create a fillet on, select the two faces to which belongs the necessary
or in the viewer and define the <span style="font-weight: bold;"><B>Dimension</B></span> common edge in the OCC Viewer and define the <span style="font-weight: bold;"><B>Dimension</B></span>
of the Chamfer.</p> of the Chamfer.</p>
<p class="whs2"><b style="font-weight: bold;">TUI Command:</b><i> <p class="whs2"><b style="font-weight: bold;">TUI Command:</b><i>
</i><span style="font-style: italic;"><I>geompy.MakeChamferFace(Shape, D1, </i><span style="font-style: italic;"><I>geompy.MakeChamferFaces(Shape, D1,
D2, ListOfFaceID)</I></span>, where Shape is a shape to create chamfer on, D2, ListOfFaceID)</I></span>, where Shape is a shape to create chamfer on,
D1 is a chamfer size along a face from &nbsp;ListOfFaceID, D1 is a chamfer size along a face from &nbsp;ListOfFaceID,
&nbsp;D2 is a &nbsp;D2 is a

View File

@ -46,7 +46,7 @@ if (window.gbWhTopic)
{ {
if (window.addTocInfo) if (window.addTocInfo)
{ {
addTocInfo("GEOM module\nTUI Scripts\nChanging Displaying Parameters"); addTocInfo("GEOM module\nTUI Scripts\nChanging Display Parameters");
addButton("show",BTN_TEXT,"Show","","","","",0,0,"","",""); addButton("show",BTN_TEXT,"Show","","","","",0,0,"","","");
} }
@ -70,9 +70,39 @@ else
document.location.reload(); document.location.reload();
//--> //-->
</script> </script>
<h1>Changing Displaying Parameters</h1> <h1>Changing Display Parameters</h1>
<h3>Changing Color</h3> <h3><a name=bookmark>Changing Display Mode</a></h3>
<p class="whs1"><span style="font-family: 'Lucida Console', monospace;">import
salome</span></p>
<p class="whs1">import geompy</p>
<p class="whs1">box = geompy.MakeBox(0,0,0,
50,50,50)</p>
<p class="whs1">&nbsp;</p>
<p class="whs1">sphere = geompy.MakeSphere(50,50,50,
30)</p>
<p class="whs1">fuse = geompy.MakeBoolean(box,sphere,3)</p>
<p class="whs1">fuse_id = geompy.addToStudy(fuse,&quot;Fuse&quot;)</p>
<p class="whs1">&nbsp;</p>
<p class="whs1">gg = salome.ImportComponentGUI(&quot;GEOM&quot;)</p>
<p class="whs1">gg.createAndDisplayGO(fuse_id)</p>
<p class="whs1">gg.setDisplayMode(fuse_id,1)
</p>
<p class="whs1">&nbsp;</p>
<h3><a name=bookmark1>Changing Color</a></h3>
<p class="whs1">import salome</p> <p class="whs1">import salome</p>
@ -103,37 +133,9 @@ else
<p class="whs1">&nbsp;</p> <p class="whs1">&nbsp;</p>
<h3>Changing Display Mode</h3>
<p class="whs1"><span style="font-family: 'Lucida Console', monospace;">import
salome</span></p>
<p class="whs1">import geompy</p>
<p class="whs1">box = geompy.MakeBox(0,0,0,
50,50,50)</p>
<p class="whs1">&nbsp;</p> <p class="whs1">&nbsp;</p>
<p class="whs1">sphere = geompy.MakeSphere(50,50,50, <h3><a name=bookmark2>Changing Transparency</a></h3>
30)</p>
<p class="whs1">fuse = geompy.MakeBoolean(box,sphere,3)</p>
<p class="whs1">fuse_id = geompy.addToStudy(fuse,&quot;Fuse&quot;)</p>
<p class="whs1">&nbsp;</p>
<p class="whs1">gg = salome.ImportComponentGUI(&quot;GEOM&quot;)</p>
<p class="whs1">gg.createAndDisplayGO(fuse_id)</p>
<p class="whs1">gg.setDisplayMode(fuse_id,1)
</p>
<p class="whs1">&nbsp;</p>
<h3>Changing Transparency</h3>
<p class="whs1">import salome</p> <p class="whs1">import salome</p>

View File

@ -31,8 +31,6 @@ img_whs14 { border:none; width:354px; height:177px; float:none; border-style:non
p.whs15 { margin-left:40px; font-size:12pt; } p.whs15 { margin-left:40px; font-size:12pt; }
img_whs16 { border:none; width:397px; height:428px; float:none; border-style:none; } img_whs16 { border:none; width:397px; height:428px; float:none; border-style:none; }
img_whs17 { border:none; width:401px; height:429px; float:none; border-style:none; } img_whs17 { border:none; width:401px; height:429px; float:none; border-style:none; }
img_whs18 { border:none; width:255px; height:150px; float:none; border-style:none; }
img_whs19 { border:none; width:377px; height:426px; float:none; border-style:none; }
--> -->
</style><script type="text/javascript" language="JavaScript" title="WebHelpInlineScript"> </style><script type="text/javascript" language="JavaScript" title="WebHelpInlineScript">
<!-- <!--
@ -64,8 +62,7 @@ if (window.gbWhTopic)
{ {
if (window.addTocInfo) if (window.addTocInfo)
{ {
addTocInfo("GEOM module\nManaging geometrical objects\nChanging displaying parameters"); addButton("show",BTN_TEXT,"Show","","","","",0,0,"","","");
addButton("show",BTN_TEXT,"Show","","","","",0,0,"","","");
} }
if (window.writeBtnStyle) if (window.writeBtnStyle)
@ -129,6 +126,11 @@ else
<p class="whs3">&nbsp;</p> <p class="whs3">&nbsp;</p>
<p class="whs3">This
option is relevant for viewing 3D objects. Wireframe mode means that &nbsp;</p>
<p class="whs3">&nbsp;</p>
<p class="whs3"><b style="font-weight: bold;">Description:</b> <p class="whs3"><b style="font-weight: bold;">Description:</b>
Set the display mode of the selected shape.</p> Set the display mode of the selected shape.</p>
@ -209,41 +211,6 @@ else
<p class="whs11">&nbsp;</p> <p class="whs11">&nbsp;</p>
<p class="whs5"><b style="font-weight: bold;"><a
NAME=Isos><span style="font-size: 14pt;"><font size=4 style="font-size:14pt;">Isos</font></span></a></b></p>
<p class="whs5">&nbsp;</p>
<p class="whs11"><b style="font-weight: bold;">Description:</b>
Changes the number of isolines displayed within a shape.</p>
<p class="whs11">&nbsp;</p>
<p class="whs11"><b style="font-weight: bold;">Arguments:</b>
2 values (number of isolines).</p>
<p class="whs11">&nbsp;</p>
<p class="whs11"><b style="font-weight: bold;">Dialog Box:</b></p>
<p class="whs11">&nbsp;</p>
<p class="whs7"><img src="pics/neo-isos.png" x-maintain-ratio="TRUE" width="255px" height="150px" border="0" class="img_whs18"></p>
<p class="whs7">&nbsp;</p>
<p class="whs11"><b style="font-weight: bold;">Example:</b></p>
<p class="whs11">&nbsp;</p>
<p class="whs7"><img src="pics/colorsn.png" x-maintain-ratio="TRUE" width="397px" height="428px" border="0" class="img_whs16"> &nbsp;<img src="pics/isos_u12_v12sn.png" x-maintain-ratio="TRUE" width="377px" height="426px" border="0" class="img_whs19"></p>
<p class="whs3">&nbsp;</p>
<p class="whs11">Our TUI Scripts provide you with useful examples
of <a href="changing_display_parameters.htm">Changing Displaying Parameters</a>.
</p>
<p>&nbsp;</p> <p>&nbsp;</p>
<script type="text/javascript" language="javascript1.2"> <script type="text/javascript" language="javascript1.2">

105
doc/salome/gui/GEOM/color.htm Executable file
View File

@ -0,0 +1,105 @@
<!doctype HTML public "-//W3C//DTD HTML 4.0 Frameset//EN">
<html>
<head>
<title>Color</title>
<meta http-equiv="content-type" content="text/html; charset=windows-1252">
<meta name="generator" content="RoboHelp by eHelp Corporation www.ehelp.com">
<link rel="stylesheet" href="default_ns.css"><script type="text/javascript" language="JavaScript" title="WebHelpSplitCss">
<!--
if (navigator.appName !="Netscape")
{ document.write("<link rel='stylesheet' href='default.css'>");}
//-->
</script>
<style type="text/css">
<!--
p.whs1 { font-size:12pt; }
img_whs2 { border:none; width:492px; height:392px; float:none; border-style:none; }
-->
</style><script type="text/javascript" language="JavaScript" title="WebHelpInlineScript">
<!--
function reDo() {
if (innerWidth != origWidth || innerHeight != origHeight)
location.reload();
}
if ((parseInt(navigator.appVersion) == 4) && (navigator.appName == "Netscape")) {
origWidth = innerWidth;
origHeight = innerHeight;
onresize = reDo;
}
onerror = null;
//-->
</script>
<style type="text/css">
<!--
div.WebHelpPopupMenu { position:absolute; left:0px; top:0px; z-index:4; visibility:hidden; }
-->
</style><script type="text/javascript" language="javascript1.2" src="whmsg.js"></script>
<script type="text/javascript" language="javascript" src="whver.js"></script>
<script type="text/javascript" language="javascript1.2" src="whproxy.js"></script>
<script type="text/javascript" language="javascript1.2" src="whutils.js"></script>
<script type="text/javascript" language="javascript1.2" src="whtopic.js"></script>
</head>
<body><script type="text/javascript" language="javascript1.2">
<!--
if (window.gbWhTopic)
{
if (window.addTocInfo)
{
addTocInfo("GEOM module\nManaging geometrical objects\nChanging Display Parameters\nColor");
addButton("show",BTN_TEXT,"Show","","","","",0,0,"","","");
}
if (window.writeBtnStyle)
writeBtnStyle();
if (window.writeIntopicBar)
writeIntopicBar(1);
if (window.setRelStartPage)
{
setRelStartPage("geom.htm");
autoSync(1);
sendSyncInfo();
sendAveInfoOut();
}
}
else
if (window.gbIE4)
document.location.reload();
//-->
</script>
<h1>Color</h1>
<p>You can change the filling color of your object in the standard <span
style="font-weight: bold;"><B>Select Color</B></span> menu accessible by right-clicking
on an object and selecting <span style="font-weight: bold;"><B>Color</B></span>
in the pop-up menu box. </p>
<p>&nbsp;</p>
<p class="whs1"><span style="font-size: 12pt;"><font size=3 style="font-size:12pt;"><b style="font-weight: bold;">TUI
Command:</b><i> gg.setColor(ID, Short, Short, Short)</i></font></span></p>
<p>&nbsp;</p>
<p><img src="selectcolor.png" x-maintain-ratio="TRUE" width="492px" height="392px" border="0" class="img_whs2"></p>
<p>&nbsp;</p>
<p class="whs1">Our TUI Scripts provide you with useful examples
of <a href="changing_display_parameters.htm#bookmark1">Changing Display
Parameters</a>. </p>
<p>&nbsp;</p>
<script type="text/javascript" language="javascript1.2">
<!--
if (window.writeIntopicBar)
writeIntopicBar(0);
//-->
</script>
</body>
</html>

View File

@ -82,7 +82,7 @@ else
<p>&nbsp;</p> <p>&nbsp;</p>
<p># create vertex and vector</p> <p># create a vertex and a vector</p>
<p class="whs1">p1 = geompy.MakeVertex( <p class="whs1">p1 = geompy.MakeVertex(
&nbsp;&nbsp;0., &nbsp;&nbsp;0.,
@ -118,14 +118,14 @@ else
<p>&nbsp;</p> <p>&nbsp;</p>
<p># create vector with the given components</p> <p># create a vector from the given components</p>
<p class="whs1">vector = geompy.MakeVectorDXDYDZ(50., <p class="whs1">vector = geompy.MakeVectorDXDYDZ(50.,
50., 50.)</p> 50., 50.)</p>
<p>&nbsp;</p> <p>&nbsp;</p>
<p>#create vectors with two points</p> <p>#create vectors from two points</p>
<p class="whs1">vector1_arc1 = geompy.MakeVector(p1, <p class="whs1">vector1_arc1 = geompy.MakeVector(p1,
p2)</p> p2)</p>
@ -141,7 +141,7 @@ else
<p>&nbsp;</p> <p>&nbsp;</p>
<p># create arcs with three points</p> <p># create arcs from three points</p>
<p class="whs1">arc1 = geompy.MakeArc(p2, <p class="whs1">arc1 = geompy.MakeArc(p2,
p3, p4)</p> p3, p4)</p>
@ -183,7 +183,7 @@ else
<p>&nbsp;</p> <p>&nbsp;</p>
<p># add objects in study</p> <p># add objects in the study</p>
<p class="whs1">id_face1 &nbsp;&nbsp;= <p class="whs1">id_face1 &nbsp;&nbsp;=
geompy.addToStudy(face1,&quot;Face1&quot;)</p> geompy.addToStudy(face1,&quot;Face1&quot;)</p>
@ -226,7 +226,7 @@ else
<p>&nbsp;</p> <p>&nbsp;</p>
<p># create vertex and vector</p> <p># create a vertex and a vector</p>
<p class="whs1">p1 = geompy.MakeVertex( <p class="whs1">p1 = geompy.MakeVertex(
&nbsp;10., &nbsp;10., &nbsp;10., &nbsp;10.,
@ -242,7 +242,7 @@ else
<p>&nbsp;</p> <p>&nbsp;</p>
<p>#create vectors with two points</p> <p>#create vectors from two points</p>
<p class="whs1">vector1 = geompy.MakeVector(p1, <p class="whs1">vector1 = geompy.MakeVector(p1,
p2)</p> p2)</p>
@ -252,28 +252,28 @@ else
<p>&nbsp;</p> <p>&nbsp;</p>
<p># create vector with the given components</p> <p># create a vector from the given components</p>
<p class="whs1">vector3 = geompy.MakeVectorDXDYDZ(-20., <p class="whs1">vector3 = geompy.MakeVectorDXDYDZ(-20.,
-20., 100.)</p> -20., 100.)</p>
<p>&nbsp;</p> <p>&nbsp;</p>
<p># create wire</p> <p># create a wire</p>
<p class="whs1">wire = geompy.MakeWire([vector1, <p class="whs1">wire = geompy.MakeWire([vector1,
vector2])</p> vector2])</p>
<p>&nbsp;</p> <p>&nbsp;</p>
<p># create revolution</p> <p># create a revolution</p>
<p class="whs1">revolution = geompy.MakeRevolution(wire, <p class="whs1">revolution = geompy.MakeRevolution(wire,
vector3, 2.3)</p> vector3, 2.3)</p>
<p>&nbsp;</p> <p>&nbsp;</p>
<p># add objects in study</p> <p># add objects in the study</p>
<p class="whs1">id_vector3 &nbsp;&nbsp;&nbsp;= <p class="whs1">id_vector3 &nbsp;&nbsp;&nbsp;=
geompy.addToStudy(vector3,&quot;Axis&quot;)</p> geompy.addToStudy(vector3,&quot;Axis&quot;)</p>
@ -285,7 +285,7 @@ else
<p>&nbsp;</p> <p>&nbsp;</p>
<p># display vector, wire and revolution</p> <p># display the vector, the wire and the revolution</p>
<p class="whs1">gg.createAndDisplayGO(id_vector3)</p> <p class="whs1">gg.createAndDisplayGO(id_vector3)</p>
@ -318,7 +318,7 @@ else
<p>&nbsp;</p> <p>&nbsp;</p>
<p># create vertex and vector</p> <p># create a vertex and a vector</p>
<p class="whs1">p1 = geompy.MakeVertex( <p class="whs1">p1 = geompy.MakeVertex(
&nbsp;-30., &nbsp;-30., &nbsp;-30., &nbsp;-30.,
@ -334,7 +334,7 @@ else
<p>&nbsp;</p> <p>&nbsp;</p>
<p># create arc with three points</p> <p># create an arc from three points</p>
<p class="whs1">arc = geompy.MakeArc(p1, <p class="whs1">arc = geompy.MakeArc(p1,
p2, p3)</p> p2, p3)</p>
@ -358,14 +358,14 @@ else
<p>&nbsp;</p> <p>&nbsp;</p>
<p># create filling</p> <p># create a filling</p>
<p class="whs1">filling = geompy.MakeFilling(compound, <p class="whs1">filling = geompy.MakeFilling(compound,
mindeg, maxdeg, tol3d, tol2d, nbiter)</p> mindeg, maxdeg, tol3d, tol2d, nbiter)</p>
<p>&nbsp;</p> <p>&nbsp;</p>
<p># add objects in study</p> <p># add objects in the study</p>
<p class="whs1">id_compound = geompy.addToStudy(compound,&quot;Compound&quot;)</p> <p class="whs1">id_compound = geompy.addToStudy(compound,&quot;Compound&quot;)</p>
@ -373,7 +373,7 @@ else
<p>&nbsp;</p> <p>&nbsp;</p>
<p># display compound and filling</p> <p># display the compound and the filling</p>
<p class="whs1">gg.createAndDisplayGO(id_compound)</p> <p class="whs1">gg.createAndDisplayGO(id_compound)</p>
@ -418,42 +418,42 @@ else
<p>&nbsp;</p> <p>&nbsp;</p>
<p># create vector on two points</p> <p># create a vector from two points</p>
<p class="whs1">vxy = geompy.MakeVector(px, <p class="whs1">vxy = geompy.MakeVector(px,
py)</p> py)</p>
<p>&nbsp;</p> <p>&nbsp;</p>
<p># create arc with three points</p> <p># create an arc from three points</p>
<p class="whs1">arc = geompy.MakeArc(py, <p class="whs1">arc = geompy.MakeArc(py,
pz, px)</p> pz, px)</p>
<p>&nbsp;</p> <p>&nbsp;</p>
<p># create wire</p> <p># create a wire</p>
<p class="whs1">wire = geompy.MakeWire([vxy, <p class="whs1">wire = geompy.MakeWire([vxy,
arc])</p> arc])</p>
<p>&nbsp;</p> <p>&nbsp;</p>
<p># create edge</p> <p># create an edge</p>
<p class="whs1">edge = geompy.MakeEdge(p0, <p class="whs1">edge = geompy.MakeEdge(p0,
pxyz)</p> pxyz)</p>
<p>&nbsp;</p> <p>&nbsp;</p>
<p># create pipe</p> <p># create a pipe</p>
<p class="whs1">pipe = geompy.MakePipe(wire, <p class="whs1">pipe = geompy.MakePipe(wire,
edge)</p> edge)</p>
<p>&nbsp;</p> <p>&nbsp;</p>
<p># add objects in study</p> <p># add objects in the study</p>
<p class="whs1">id_wire = geompy.addToStudy(wire,&quot;Wire&quot;)</p> <p class="whs1">id_wire = geompy.addToStudy(wire,&quot;Wire&quot;)</p>
@ -463,7 +463,7 @@ else
<p>&nbsp;</p> <p>&nbsp;</p>
<p># display wire, edge (path) and pipe</p> <p># display the wire, the edge (path) and the pipe</p>
<p class="whs1">gg.createAndDisplayGO(id_wire)</p> <p class="whs1">gg.createAndDisplayGO(id_wire)</p>

View File

@ -95,7 +95,7 @@ else
<p>&nbsp;</p> <p>&nbsp;</p>
<p>There are two algorithms for creation of a <span style="font-weight: bold;"><B>Torus</B></span>. <p>There are two algorithms for creation of a <span style="font-weight: bold;"><B>Cone</B></span>.
</p> </p>
<p class="whs2"><b style="font-weight: bold;"><span style="font-weight: normal;">The</span> <p class="whs2"><b style="font-weight: bold;"><span style="font-weight: normal;">The</span>
@ -123,7 +123,7 @@ else
<p>&nbsp;</p> <p>&nbsp;</p>
<p>Secondly, you can define a <span style="font-weight: bold;"><B>Cone</B></span> <p>Secondly, you can define a <span style="font-weight: bold;"><B>Cone</B></span>
with the centre at the origin of coordinates by its <span style="font-weight: bold;"><B>Height</B></span> with the center at the origin of coordinates by its <span style="font-weight: bold;"><B>Height</B></span>
and <span style="font-weight: bold;"><B>Radiuses</B></span>. The <span style="font-weight: bold;"><B>Axis</B></span> and <span style="font-weight: bold;"><B>Radiuses</B></span>. The <span style="font-weight: bold;"><B>Axis</B></span>
of the <span style="font-weight: bold;"><B>Cone</B></span> will be collinear of the <span style="font-weight: bold;"><B>Cone</B></span> will be collinear
to the OZ axis of the coordinate system. </p> to the OZ axis of the coordinate system. </p>

View File

@ -94,8 +94,8 @@ else
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 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
style="font-size: 12pt;"><font size=3 style="font-size:12pt;"> through which the curve passes. The three </font></span><span style="font-size: 12pt;"><font size=3 style="font-size:12pt;"> through which the curve passes. The three </font></span><span
style="font-size: 12pt; font-weight: bold;"><font size=3 style="font-size:12pt;"><B>Curve Construction</B></font></span><span style="font-size: 12pt; font-weight: bold;"><font size=3 style="font-size:12pt;"><B>Curve Construction</B></font></span><span
style="font-size: 12pt;"><font size=3 style="font-size:12pt;"> menu choices correspond to the three possible style="font-size: 12pt;"><font size=3 style="font-size:12pt;"> menu choices correspond to three possible types
types of curves: Polyline, Besier or B-spline (Interpolated) curve. </font></span></p> of curves: Polyline, Besier or B-spline (Interpolated). </font></span></p>
<p class="whs2"><span style="font-size: 12pt;"><font size=3 style="font-size:12pt;"><b style="font-weight: bold;"><span <p class="whs2"><span style="font-size: 12pt;"><font size=3 style="font-size:12pt;"><b style="font-weight: bold;"><span
style="font-weight: normal;">The</span> Result <span style="font-weight: normal;">of style="font-weight: normal;">The</span> Result <span style="font-weight: normal;">of

View File

@ -104,9 +104,9 @@ else
<p class="whs2">&nbsp;</p> <p class="whs2">&nbsp;</p>
<p class="whs2"><b style="font-weight: normal;">This operation</b> <p class="whs2"><b style="font-weight: normal;">This operation</b>
returns blocks of the given compound. The user may define the type blocks returns blocks of the given compound. The user may define the type of
to be extracted by setting the minimum and maximum number of faces in blocks to be extracted by setting the minimum and maximum number of faces
the target block. By checking the corresponding box the user may also in the target block. By checking the corresponding box the user may also
interactively choose the blocks from a compound .</p> interactively choose the blocks from a compound .</p>
<p class="whs2">&nbsp;</p> <p class="whs2">&nbsp;</p>
@ -124,7 +124,7 @@ else
maximal number of faces of the resulting blocks.</p> maximal number of faces of the resulting blocks.</p>
<p class="whs2"><b style="font-weight: bold;">Arguments: <span <p class="whs2"><b style="font-weight: bold;">Arguments: <span
style="font-weight: normal;">1 compound + 1 integer (min. and max. number style="font-weight: normal;">1 compound + 2 integers (min. and max. number
of faces in the block to be extracted).</span></b></p> of faces in the block to be extracted).</span></b></p>
<p class="whs2">&nbsp;</p> <p class="whs2">&nbsp;</p>

View File

@ -21,8 +21,8 @@ p.whs4 { font-size:12pt; font-weight:bold; }
p.whs5 { font-size:12pt; margin-left:40px; } p.whs5 { font-size:12pt; margin-left:40px; }
p.whs6 { font-size:12pt; font-style:italic; } p.whs6 { font-size:12pt; font-style:italic; }
p.whs7 { font-size:12pt; margin-left:0px; } p.whs7 { font-size:12pt; margin-left:0px; }
img_whs8 { border:none; float:none; width:300px; height:178px; border-style:none; } img_whs8 { border:none; float:none; width:300px; height:175px; border-style:none; }
img_whs9 { border:none; width:350px; height:179px; float:none; border-style:none; } img_whs9 { border:none; width:350px; height:175px; float:none; border-style:none; }
--> -->
</style><script type="text/javascript" language="JavaScript"> </style><script type="text/javascript" language="JavaScript">
<!-- <!--
@ -113,10 +113,9 @@ else
Command :</b><i> </i></B></span><span style="font-style: italic;"><I>geompy.MakePrismVecH(Base, Command :</b><i> </i></B></span><span style="font-style: italic;"><I>geompy.MakePrismVecH(Base,
Vector, Height)</I></span></p> Vector, Height)</I></span></p>
<p class="whs2"><span style="font-size: 12pt;"><font size=3 style="font-size:12pt;"><span style="font-style: italic;"><I><b <p class="whs2"><span style="font-size: 12pt;"><font size=3 style="font-size:12pt;"><b style="font-weight: bold;">Arguments:</b>
style="font-weight: bold;">A</I></span>rguments:</b> Name + 1 shape (vertex, Name + 1 shape (vertex, edge, wire, face or shell) serving as base object
edge, wire, face or shell) serving as base object + 1 vector (for direction) + 1 vector (for direction of the extrusion) + 1 value (dimension).</font></span></p>
+ 1 value (dimension).</font></span></p>
<p>&nbsp;</p> <p>&nbsp;</p>
@ -149,7 +148,7 @@ else
<p class="whs6">Base Shape &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Prisms</p> <p class="whs6">Base Shape &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Prisms</p>
<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"> &nbsp;</p> <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"> &nbsp;</p>
<p class="whs2">&nbsp;</p> <p class="whs2">&nbsp;</p>

View File

@ -19,9 +19,8 @@ p.whs2 { font-size:12pt; }
p.whs3 { font-size:12pt; margin-left:40px; } p.whs3 { font-size:12pt; margin-left:40px; }
img_whs4 { border:none; width:312px; height:315px; float:none; border-style:none; } img_whs4 { border:none; width:312px; height:315px; float:none; border-style:none; }
p.whs5 { font-size:12pt; font-style:italic; } p.whs5 { font-size:12pt; font-style:italic; }
img_whs6 { border:none; width:180px; height:182px; float:none; border-style:none; } img_whs6 { border:none; width:180px; height:180px; float:none; border-style:none; }
img_whs7 { border:none; width:179px; height:182px; float:none; border-style:none; } img_whs7 { border:none; float:none; width:180px; height:180px; border-style:none; }
img_whs8 { border:none; float:none; width:181px; height:182px; border-style:none; }
--> -->
</style><script type="text/javascript" language="JavaScript" title="WebHelpInlineScript"> </style><script type="text/javascript" language="JavaScript" title="WebHelpInlineScript">
<!-- <!--
@ -110,8 +109,8 @@ else
<p class="whs2">&nbsp;</p> <p class="whs2">&nbsp;</p>
<p class="whs2"><span style="font-weight: bold;"><B>TUI commands</B></span> <p class="whs2">There are some advanced possibilities accessible
give you some advanced possibilities.</p> only via<span style="font-weight: bold;"><B> TUI commands</B></span>.</p>
<p class="whs2">&nbsp;</p> <p class="whs2">&nbsp;</p>
@ -131,7 +130,7 @@ else
<p class="whs2">&nbsp;</p> <p class="whs2">&nbsp;</p>
<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> <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>
<p class="whs3">&nbsp;</p> <p class="whs3">&nbsp;</p>

View File

@ -14,7 +14,7 @@ if (navigator.appName !="Netscape")
</script> </script>
<style type="text/css"> <style type="text/css">
<!-- <!--
img_whs1 { border-style:none; border:none; width:30px; height:30px; float:none; } img_whs1 { border:none; width:30px; height:30px; float:none; border-style:none; }
ul.whs2 { list-style:disc; } ul.whs2 { list-style:disc; }
table.whs3 { x-cell-content-align:top; width:100%; border-spacing:0px; } table.whs3 { x-cell-content-align:top; width:100%; border-spacing:0px; }
col.whs4 { width:50%; } col.whs4 { width:50%; }
@ -22,7 +22,7 @@ tr.whs5 { x-cell-content-align:top; }
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; } 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; }
ul.whs7 { list-style:circle; } ul.whs7 { list-style:circle; }
td.whs8 { width:50%; padding-right:10px; padding-left:10px; border-top-style:none; border-bottom-style:none; border-right-style:none; } td.whs8 { width:50%; padding-right:10px; padding-left:10px; border-top-style:none; border-bottom-style:none; border-right-style:none; }
img_whs9 { border-style:none; border:none; width:400px; height:292px; } img_whs9 { border:none; width:400px; height:292px; border-style:none; }
--> -->
</style><script type="text/javascript" language="JavaScript" title="WebHelpInlineScript"> </style><script type="text/javascript" language="JavaScript" title="WebHelpInlineScript">
<!-- <!--
@ -113,12 +113,16 @@ else
<li class=kadov-p><p>Generation of complex shapes</p></li> <li class=kadov-p><p>Generation of complex shapes</p></li>
<li class=kadov-p><p>Working with groups</p></li>
<li class=kadov-p><p>Geometrical repairing of objects</p></li> <li class=kadov-p><p>Geometrical repairing of objects</p></li>
<li class=kadov-p><p>Geometrical boolean operations</p></li> <li class=kadov-p><p>Geometrical boolean operations</p></li>
<li class=kadov-p><p>Geometrical transformations</p></li> <li class=kadov-p><p>Geometrical transformations</p></li>
<li class=kadov-p><p>Building by blocks</p></li>
<li class=kadov-p><p>Generation of complex objects</p></li> <li class=kadov-p><p>Generation of complex objects</p></li>
</ul> </ul>
<p>&nbsp;</td> <p>&nbsp;</td>

View File

@ -15,11 +15,11 @@ if (navigator.appName !="Netscape")
<style type="text/css"> <style type="text/css">
<!-- <!--
p.whs1 { font-family:'Times New Roman' , serif; font-size:12pt; font-weight:normal; } p.whs1 { font-family:'Times New Roman' , serif; font-size:12pt; font-weight:normal; }
img_whs2 { border-style:none; border:none; float:none; width:30px; height:30px; } img_whs2 { border:none; float:none; width:30px; height:30px; border-style:none; }
p.whs3 { font-family:'Times New Roman' , serif; font-size:12pt; } p.whs3 { font-family:'Times New Roman' , serif; font-size:12pt; }
p.whs4 { margin-left:40px; } p.whs4 { margin-left:40px; }
p.whs5 { font-family:'Times New Roman' , serif; font-size:14pt; } p.whs5 { font-family:'Times New Roman' , serif; font-size:14pt; }
img_whs6 { border-style:none; width:20px; height:20px; } img_whs6 { width:20px; height:20px; border-style:none; }
--> -->
</style><script type="text/javascript" language="JavaScript" title="WebHelpInlineScript"> </style><script type="text/javascript" language="JavaScript" title="WebHelpInlineScript">
<!-- <!--
@ -51,7 +51,7 @@ if (window.gbWhTopic)
{ {
if (window.addTocInfo) if (window.addTocInfo)
{ {
addTocInfo("GEOM module\nManaging geometrical objects\nDisplaying\\hiding objects"); addTocInfo("GEOM module\nManaging geometrical objects\nDisplaying/hiding objects");
addButton("show",BTN_TEXT,"Show","","","","",0,0,"","",""); addButton("show",BTN_TEXT,"Show","","","","",0,0,"","","");
} }
@ -75,13 +75,12 @@ else
document.location.reload(); document.location.reload();
//--> //-->
</script> </script>
<h1>Displaying\hiding objects</h1> <h1>Displaying/hiding objects</h1>
<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. <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
These viewers work independently, i.e. visibility of objects and their . These viewers work independently, i.e. visibility of objects and their
graphic attributes may differ in OCC and VTK viewer. It<b style="font-weight: normal;"><span graphic attributes may differ in OCC and VTK viewer. It<b><span style="font-weight: normal;">
style="font-weight: normal;"> is reasonable to use the OCC viewer for is reasonable to use the OCC viewer for GEOM module.</span></b></p>
GEOM module.</span></b></p>
<p class="whs1">&nbsp;</p> <p class="whs1">&nbsp;</p>
@ -154,7 +153,7 @@ else
<p class="whs3">&nbsp;</p> <p class="whs3">&nbsp;</p>
<p class="whs3"><b>TUI <p class="whs3"><b style="font-weight: bold;">TUI
Command:</b><i> sg.EraseAll()</i></p> Command:</b><i> sg.EraseAll()</i></p>
<p class="whs3">&nbsp;</p> <p class="whs3">&nbsp;</p>
@ -173,7 +172,7 @@ else
<p class="whs3">&nbsp;</p> <p class="whs3">&nbsp;</p>
<p class="whs3"><b>TUI <p class="whs3"><b style="font-weight: bold;">TUI
Command:</b><i> </i></p> Command:</b><i> </i></p>
<p class="whs3">&nbsp;</p> <p class="whs3">&nbsp;</p>

View File

@ -17,9 +17,8 @@ if (navigator.appName !="Netscape")
p.whs1 { font-size:12pt; } p.whs1 { font-size:12pt; }
img_whs2 { border:none; float:none; width:30px; height:30px; border-style:none; } img_whs2 { border:none; float:none; width:30px; height:30px; border-style:none; }
p.whs3 { margin-left:40px; } p.whs3 { margin-left:40px; }
img_whs4 { border:none; border-style:none; width:557px; height:274px; float:none; } img_whs4 { border:none; width:557px; height:274px; float:none; border-style:none; }
img_whs5 { border:none; border-style:none; width:529px; height:272px; float:none; } img_whs5 { border:none; width:529px; height:272px; float:none; border-style:none; }
p.whs6 { font-size:12pt; font-family:'Times New Roman' , serif; }
--> -->
</style><script type="text/javascript" language="JavaScript" title="WebHelpInlineScript"> </style><script type="text/javascript" language="JavaScript" title="WebHelpInlineScript">
<!-- <!--
@ -51,7 +50,7 @@ if (window.gbWhTopic)
{ {
if (window.addTocInfo) if (window.addTocInfo)
{ {
addTocInfo("GEOM module\nImporting\\exporting geometrical objects"); addTocInfo("GEOM module\nImporting/exporting geometrical objects");
addButton("show",BTN_TEXT,"Show","","","","",0,0,"","",""); addButton("show",BTN_TEXT,"Show","","","","",0,0,"","","");
} }
@ -75,11 +74,14 @@ else
document.location.reload(); document.location.reload();
//--> //-->
</script> </script>
<h1>Importing\exporting geometrical objects</h1> <h1>Importing/exporting geometrical objects</h1>
<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 <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
and export geometrical objects from\into BREP, IGES, STEP </span></b><b><span and export geometrical objects from/into BREP, IGES, STEP </span></b><b><span
style="font-weight: normal;">files. </span></b></p> style="font-weight: normal;">files. The mechanisms of import and export
are implemented via plug-ins, which gives you the opportunity to expand
the range of available formats by adding more plug-ins (for example, CATIA
5). &nbsp;</span></b></p>
&nbsp; &nbsp;
@ -88,10 +90,11 @@ else
<p class=TODO>&nbsp;</p> <p class=TODO>&nbsp;</p>
<p class="whs3">From the <span style="font-weight: bold;"><B>File <p class="whs3">From the <span style="font-weight: bold;"><B>File
</B></span>menu choose <span style="font-weight: bold;"><B>Import </B></span>and </B></span>menu choose <span style="font-weight: bold;"><B>Import. </B></span>In
select the required format of the file for importation. Then you will the opening<span style="font-weight: bold;"> <B></B></span>dialog box <span style="font-weight: bold;"><B>Import</B></span>
see a standard dialog box allowing to search for and choose *.brep, *.iges select the required format of the file for importation and search for
or *.step &nbsp;file:</p> a *.brep, *.iges or *.step &nbsp;file.
</p>
<p class="whs3">&nbsp;</p> <p class="whs3">&nbsp;</p>
@ -100,8 +103,8 @@ else
<p class="whs3">&nbsp;</p> <p class="whs3">&nbsp;</p>
<p class="whs3">Select the required file and click <span <p class="whs3">Select the required file and click <span
style="font-weight: bold;"><B>OK</B></span>. You file will be imported into GEOM style="font-weight: bold;"><B>Open</B></span>. Your file will be imported into
and its contents (geometrical objects) will be displayed in the <span GEOM and its contents (geometrical object) will be displayed in the <span
style="font-weight: bold;"><B>Object Browser</B></span>. </p> style="font-weight: bold;"><B>Object Browser</B></span>. </p>
<p class="whs3">&nbsp;</p> <p class="whs3">&nbsp;</p>
@ -114,9 +117,10 @@ else
<p class="whs3">Select the object you wish to export, then <p class="whs3">Select the object you wish to export, then
from the <span style="font-weight: bold;"><B>File </B></span>menu choose <span from the <span style="font-weight: bold;"><B>File </B></span>menu choose <span
style="font-weight: bold;"><B>Export </B></span>and select the required format style="font-weight: bold;"><B>Export. </B></span>In the opening dialog box<span
of the file for exportation. You will see a standard dialog box allowing style="font-weight: bold;"><B> Export </B></span>define the required format the
to enter the name and select the location for the file which will be exported:</p> name and the location of the file for exportation.<span style="font-weight: bold;">
<B></B></span></p>
<p class="whs3">&nbsp;</p> <p class="whs3">&nbsp;</p>
@ -124,17 +128,9 @@ else
<p class="whs3">&nbsp;</p> <p class="whs3">&nbsp;</p>
<p class="whs3">Click <span style="font-weight: bold;"><B>OK</B></span> <p class="whs3">Click <span style="font-weight: bold;"><B>Save</B></span>
to confirm your exportation. &nbsp;</p> to confirm your exportation. &nbsp;</p>
<p class="whs3">&nbsp;</p>
<p class="whs6">&nbsp;</p>
<li class=kadov-p><p class="whs6">&nbsp;</p></li>
<p class="whs6">&nbsp;</p>
<script type="text/javascript" language="javascript1.2"> <script type="text/javascript" language="javascript1.2">
<!-- <!--
if (window.writeIntopicBar) if (window.writeIntopicBar)

View File

@ -28,7 +28,7 @@ img_whs6 { border:none; width:272px; height:303px; float:none; border-style:none
p.whs7 { font-family:'Times New Roman' , serif; font-size:14pt; } p.whs7 { font-family:'Times New Roman' , serif; font-size:14pt; }
img_whs8 { width:20px; height:20px; border-style:none; } img_whs8 { width:20px; height:20px; border-style:none; }
p.whs9 { font-family:'Times New Roman' , serif; font-size:12pt; } p.whs9 { font-family:'Times New Roman' , serif; font-size:12pt; }
img_whs10 { border:none; border-style:none; width:360px; height:307px; float:none; } img_whs10 { border:none; width:360px; height:307px; float:none; border-style:none; }
p.whs11 { font-size:12pt; margin-left:40px; } p.whs11 { font-size:12pt; margin-left:40px; }
img_whs12 { border:none; width:312px; height:367px; float:none; border-style:none; } img_whs12 { border:none; width:312px; height:367px; float:none; border-style:none; }
p.whs13 { font-size:12pt; margin-left:400px; } p.whs13 { font-size:12pt; margin-left:400px; }
@ -36,21 +36,20 @@ img_whs14 { border:none; width:360px; height:333px; float:none; border-style:non
p.whs15 { font-size:12pt; font-weight:bold; } p.whs15 { font-size:12pt; font-weight:bold; }
img_whs16 { border:none; width:360px; height:328px; float:none; border-style:none; } img_whs16 { border:none; width:360px; height:328px; float:none; border-style:none; }
p.whs17 { font-size:12pt; font-weight:normal; } p.whs17 { font-size:12pt; font-weight:normal; }
img_whs18 { border:none; border-style:none; width:360px; height:290px; float:none; } img_whs18 { border:none; width:360px; height:290px; float:none; border-style:none; }
img_whs19 { border:none; border-style:none; width:360px; height:328px; float:none; } img_whs19 { border:none; width:360px; height:405px; float:none; border-style:none; }
img_whs20 { border:none; width:360px; height:405px; float:none; border-style:none; } img_whs20 { border:none; width:360px; height:309px; float:none; border-style:none; }
img_whs21 { border:none; width:360px; height:309px; float:none; border-style:none; } p.whs21 { font-size:12pt; margin-left:40px; text-indent:-40px; }
p.whs22 { font-size:12pt; margin-left:40px; text-indent:-40px; } img_whs22 { border:none; width:25px; height:23px; border-style:none; }
img_whs23 { border:none; width:25px; height:23px; border-style:none; } ul.whs23 { list-style:disc; }
ul.whs24 { list-style:disc; } img_whs24 { border:none; width:329px; height:436px; float:none; border-style:none; }
img_whs25 { border:none; width:329px; height:436px; float:none; border-style:none; }
--> -->
</style><script type="text/javascript" language="JavaScript"> </style><script type="text/javascript" language="JavaScript">
<!-- <!--
if ((navigator.appName == "Netscape") && (parseInt(navigator.appVersion) == 4)) if ((navigator.appName == "Netscape") && (parseInt(navigator.appVersion) == 4))
{ {
var strNSS = "<style type='text/css'>"; var strNSS = "<style type='text/css'>";
strNSS += "p.whs22 {text-indent:1pt; }"; strNSS += "p.whs21 {text-indent:1pt; }";
strNSS +="</style>"; strNSS +="</style>";
document.write(strNSS); document.write(strNSS);
} }
@ -292,7 +291,7 @@ else
<p class="whs1">&nbsp;</p> <p class="whs1">&nbsp;</p>
<p class="whs1"><b style="font-weight: bold;">Result:</b> Display <p class="whs1"><b style="font-weight: bold;">Result:</b> Display
the matrix and moments of inretia in the form of Python Tuple (I11, I12, the matrix and moments of inertia in the form of Python Tuple (I11, I12,
I13, </p> I13, </p>
<p class="whs13">&nbsp;I21, <p class="whs13">&nbsp;I21,
@ -436,7 +435,7 @@ else
<p class="whs1">&nbsp;</p> <p class="whs1">&nbsp;</p>
<p class="whs11"><img src="../pics/new-tolerance.png" x-maintain-ratio="TRUE" width="360px" height="328px" border="0" class="img_whs19"></p> <p class="whs11"><img src="../pics/new-tolerance.png" x-maintain-ratio="TRUE" width="360px" height="328px" border="0" class="img_whs16"></p>
<p class="whs1">&nbsp;</p> <p class="whs1">&nbsp;</p>
@ -473,7 +472,7 @@ else
<p class="whs1">&nbsp;</p> <p class="whs1">&nbsp;</p>
<p class="whs11"><img src="../pics/measures8.png" x-maintain-ratio="TRUE" width="360px" height="405px" border="0" class="img_whs20"></p> <p class="whs11"><img src="../pics/measures8.png" x-maintain-ratio="TRUE" width="360px" height="405px" border="0" class="img_whs19"></p>
<p class="whs11">&nbsp;</p> <p class="whs11">&nbsp;</p>
@ -510,24 +509,24 @@ else
<p class="whs1">&nbsp;</p> <p class="whs1">&nbsp;</p>
<p class="whs11"><img src="../pics/measures9.png" x-maintain-ratio="TRUE" width="360px" height="309px" border="0" class="img_whs21"></p> <p class="whs11"><img src="../pics/measures9.png" x-maintain-ratio="TRUE" width="360px" height="309px" border="0" class="img_whs20"></p>
<p class="whs11">&nbsp;</p> <p class="whs11">&nbsp;</p>
<p class="whs22">&nbsp;</p> <p class="whs21">&nbsp;</p>
<p class="whs22">&nbsp;</p> <p class="whs21">&nbsp;</p>
<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 <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
of blocks</B></font></span></a></p> of blocks</B></font></span></a></p>
<p class="whs22">&nbsp;</p> <p class="whs21">&nbsp;</p>
<p class="whs1"><b style="font-weight: bold;">Description:</b> <p class="whs1"><b style="font-weight: bold;">Description:</b>
Checks whether a shape is a compound of glued blocks. To be considered Checks whether a shape is a compound of glued blocks. To be considered
as a compound of blocks, the given shape must satisfy the following conditions:</p> as a compound of blocks, the given shape must satisfy the following conditions:</p>
<ul type="disc" class="whs24"> <ul type="disc" class="whs23">
<li class=kadov-p><p class="whs1">&nbsp;Each <li class=kadov-p><p class="whs1">&nbsp;Each
element of the compound should be a Block (6 faces and 12 edges);</p></li> element of the compound should be a Block (6 faces and 12 edges);</p></li>
@ -547,7 +546,7 @@ else
<p class="whs1">Informs of the following possible errors:</p> <p class="whs1">Informs of the following possible errors:</p>
<ul type="disc" class="whs24"> <ul type="disc" class="whs23">
<li class=kadov-p><p class="whs1">not a block,</p></li> <li class=kadov-p><p class="whs1">not a block,</p></li>
@ -566,11 +565,10 @@ else
<p class="whs1">&nbsp;</p> <p class="whs1">&nbsp;</p>
<p class="whs1"><b style="font-weight: bold;">TUI Command:</b><i> <p class="whs1"><b>TUI Command:</b><i> </i><span style="font-style: italic;"><I>geompy.CheckCompoundOfBlocks(Compound).
</i><span style="font-style: italic;"><I>geompy.CheckCompoundOfBlocks(Compound)</I></span>, </I></span>Checks if the<span style="font-style: italic;"> <I></I></span>shape is
where the Compound is a shape, investigated in order to see, if it is a valid compound of blocks. If it is true, then the validity flag is returned,
a valid compound of blocks. Validity flag is returned, encountered errors and encountered errors are printed in the python console.</p>
are printed in the python console.</p>
<p class="whs1">&nbsp;</p> <p class="whs1">&nbsp;</p>
@ -583,7 +581,7 @@ else
<p class="whs11">&nbsp;</p> <p class="whs11">&nbsp;</p>
<p class="whs11"><img src="../pics/measures10.png" x-maintain-ratio="TRUE" width="329px" height="436px" border="0" class="img_whs25"></p> <p class="whs11"><img src="../pics/measures10.png" x-maintain-ratio="TRUE" width="329px" height="436px" border="0" class="img_whs24"></p>
<p class="whs11">&nbsp;</p> <p class="whs11">&nbsp;</p>

View File

@ -22,7 +22,7 @@ img_whs5 { border:none; width:312px; height:346px; float:none; border-style:none
p.whs6 { font-size:12pt; font-style:italic; } p.whs6 { font-size:12pt; font-style:italic; }
img_whs7 { border:none; width:226px; height:250px; float:none; border-style:none; } img_whs7 { border:none; width:226px; height:250px; float:none; border-style:none; }
img_whs8 { border:none; float:none; width:208px; height:250px; border-style:none; } img_whs8 { border:none; float:none; width:208px; height:250px; border-style:none; }
img_whs9 { border:none; width:220px; height:251px; float:none; border-style:none; } img_whs9 { border:none; width:220px; height:250px; float:none; border-style:none; }
p.whs10 { list-style:disc; margin-left:0in; margin-right:0in; margin-top:0px; margin-bottom:0px; } p.whs10 { list-style:disc; margin-left:0in; margin-right:0in; margin-top:0px; margin-bottom:0px; }
--> -->
</style><script type="text/javascript" language="JavaScript"> </style><script type="text/javascript" language="JavaScript">
@ -130,7 +130,7 @@ else
the specified edges or faces of the given shape, &nbsp;you the specified edges or faces of the given shape, &nbsp;you
need to define the <span style="font-weight: bold;"><B>Main Object</B></span> need to define the <span style="font-weight: bold;"><B>Main Object</B></span>
to create a fillet on, select the necessary edges or faces in the object to create a fillet on, select the necessary edges or faces in the object
browser or in the viewer and define the &nbsp;<span browser or in the OCC Viewer and define the &nbsp;<span
style="font-weight: bold;"><B>Radius</B></span> style="font-weight: bold;"><B>Radius</B></span>
of the Fillet. </p> of the Fillet. </p>
@ -158,7 +158,7 @@ else
<p class="whs2">&nbsp;</p> <p class="whs2">&nbsp;</p>
<p class="whs2"><img src="pics/fillet_all.png" x-maintain-ratio="TRUE" width="226px" height="250px" border="0" class="img_whs7"> &nbsp;&nbsp;<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;">&nbsp;<img src="pics/fillet_prism.png" x-maintain-ratio="TRUE" width="220px" height="251px" border="0" class="img_whs9"></font></span></p> <p class="whs2"><img src="pics/fillet_all.png" x-maintain-ratio="TRUE" width="226px" height="250px" border="0" class="img_whs7"> &nbsp;&nbsp;<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;">&nbsp;<img src="pics/fillet_prism.png" x-maintain-ratio="TRUE" width="220px" height="250px" border="0" class="img_whs9"></font></span></p>
<p class="whs10">&nbsp;&nbsp;</p> <p class="whs10">&nbsp;&nbsp;</p>

View File

@ -19,8 +19,7 @@ p.whs2 { font-size:12pt; }
p.whs3 { font-size:12pt; margin-left:0px; } p.whs3 { font-size:12pt; margin-left:0px; }
img_whs4 { border:none; width:312px; height:367px; float:none; border-style:none; } img_whs4 { border:none; width:312px; height:367px; float:none; border-style:none; }
p.whs5 { font-size:12pt; margin-left:40px; } p.whs5 { font-size:12pt; margin-left:40px; }
img_whs6 { border:none; float:none; width:263px; height:235px; border-style:none; } img_whs6 { border:none; float:none; width:260px; height:230px; border-style:none; }
img_whs7 { border:none; float:none; width:267px; height:233px; border-style:none; }
--> -->
</style><script type="text/javascript" language="JavaScript"> </style><script type="text/javascript" language="JavaScript">
<!-- <!--
@ -133,7 +132,7 @@ else
<p class="whs2">&nbsp;</p> <p class="whs2">&nbsp;</p>
<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"> &nbsp;</p> <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"> &nbsp;</p>
<p class="whs5">&nbsp;</p> <p class="whs5">&nbsp;</p>

View File

@ -20,8 +20,7 @@ p.whs3 { font-size:12pt; margin-left:0in; margin-right:0in; margin-top:0px; marg
p.whs4 { font-size:12pt; margin-right:0in; margin-top:0px; margin-bottom:0px; margin-left:40px; } p.whs4 { font-size:12pt; margin-right:0in; margin-top:0px; margin-bottom:0px; margin-left:40px; }
img_whs5 { border:none; width:312px; height:324px; float:none; border-style:none; } img_whs5 { border:none; width:312px; height:324px; float:none; border-style:none; }
p.whs6 { list-style:disc; margin-right:0in; margin-top:0px; margin-bottom:0px; margin-left:40px; } p.whs6 { list-style:disc; margin-right:0in; margin-top:0px; margin-bottom:0px; margin-left:40px; }
img_whs7 { border:none; float:none; width:250px; height:262px; border-style:none; } img_whs7 { border:none; float:none; width:252px; height:265px; border-style:none; }
img_whs8 { border:none; float:none; width:250px; height:263px; border-style:none; }
--> -->
</style><script type="text/javascript" language="JavaScript"> </style><script type="text/javascript" language="JavaScript">
<!-- <!--
@ -127,7 +126,7 @@ else
<p class="whs6">&nbsp;</p> <p class="whs6">&nbsp;</p>
<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"> &nbsp;<img src="pics/fusesn2.png" x-maintain-ratio="TRUE" width="250px" height="263px" border="0" class="img_whs8"></font></span></p> <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"> &nbsp;<img src="pics/fusesn2.png" x-maintain-ratio="TRUE" width="252px" height="265px" border="0" class="img_whs7"></font></span></p>
<p class="whs2">&nbsp;</p> <p class="whs2">&nbsp;</p>

View File

@ -148,6 +148,7 @@ check_free_boundaries.htm
check_free_faces.htm check_free_faces.htm
circle.htm circle.htm
close_contour.htm close_contour.htm
color.htm
common.htm common.htm
complex_objects.htm complex_objects.htm
compound.htm compound.htm
@ -179,6 +180,7 @@ fuse.htm
geometrical_objects.htm geometrical_objects.htm
glue_faces.htm glue_faces.htm
groups.htm groups.htm
isos.htm
line.htm line.htm
local_coordinate_system.htm local_coordinate_system.htm
measurement_tools.htm measurement_tools.htm
@ -212,9 +214,11 @@ suppress_holes.htm
suppress_internal_wires.htm suppress_internal_wires.htm
transformation_operations.htm transformation_operations.htm
translation.htm translation.htm
transparency.htm
turus.htm turus.htm
vector.htm vector.htm
wire.htm wire.htm
wireframe_and_shading.htm
working_plane.htm working_plane.htm
working_with_groups.htm working_with_groups.htm
ehelp.xml ehelp.xml
@ -310,6 +314,8 @@ files\salome2_sp3_repairgui_functions_salome2_sp3_repairgui_functions_image119.g
files\salome2_sp3_operationgui_functions_salome2_sp3_operationgui_functions_image88.gif files\salome2_sp3_operationgui_functions_salome2_sp3_operationgui_functions_image88.gif
files\salome2_sp3_measuregui_functions_salome2_sp3_measuregui_functions_image77.gif files\salome2_sp3_measuregui_functions_salome2_sp3_measuregui_functions_image77.gif
files\salome2_sp3_basicgui_functions_salome2_sp3_basicgui_functions_image32.gif files\salome2_sp3_basicgui_functions_salome2_sp3_basicgui_functions_image32.gif
image28.gif
selectcolor.png
pics\glue_faces1.png pics\glue_faces1.png
pics\supp_int_wires1.png pics\supp_int_wires1.png
pics\fusesn1.png pics\fusesn1.png
@ -331,6 +337,7 @@ files\salome2_sp3_operationgui_functions_salome2_sp3_operationgui_functions_imag
files\salome2_sp3_measuregui_functions_salome2_sp3_measuregui_functions_image78.gif files\salome2_sp3_measuregui_functions_salome2_sp3_measuregui_functions_image78.gif
image3.jpg image3.jpg
files\salome2_sp3_basicgui_functions_salome2_sp3_basicgui_functions_image33.gif files\salome2_sp3_basicgui_functions_salome2_sp3_basicgui_functions_image33.gif
pics\neo-isos.png
pics\glue_faces2.png pics\glue_faces2.png
pics\supp_int_wires2.png pics\supp_int_wires2.png
pics\sectionsn.png pics\sectionsn.png
@ -340,7 +347,6 @@ pics\circles.png
pics\neo-materials.png pics\neo-materials.png
pics\neo-obj3.png pics\neo-obj3.png
pics\neo-localcs2.png pics\neo-localcs2.png
pics\neo-isos.png
pics\measures1.png pics\measures1.png
pics\repair3.png pics\repair3.png
pics\transformation9.png pics\transformation9.png
@ -377,7 +383,6 @@ image172.jpg
image150.jpg image150.jpg
image82.jpg image82.jpg
image19.gif image19.gif
image5.jpg
pics\rotationsn2.png pics\rotationsn2.png
pics\disp_mode2sn.png pics\disp_mode2sn.png
pics\neo-detect2.png pics\neo-detect2.png
@ -397,11 +402,11 @@ image151.jpg
image94.jpg image94.jpg
image83.jpg image83.jpg
files\salome2_sp3_generationgui_functions_salome2_sp3_generationgui_functions_image56.gif files\salome2_sp3_generationgui_functions_salome2_sp3_generationgui_functions_image56.gif
pics\isos_u12_v12sn.png
pics\free_boudaries1.png pics\free_boudaries1.png
pics\multi_rotation1d1.png pics\multi_rotation1d1.png
pics\multi_translation2dsn.png pics\multi_translation2dsn.png
pics\offsetsn.png pics\offsetsn.png
pics\isos_u12_v12sn.png
pics\compoundsn.png pics\compoundsn.png
pics\prisms_basessn.png pics\prisms_basessn.png
pics\cylinders.png pics\cylinders.png
@ -418,7 +423,6 @@ image163.jpg
image130.jpg image130.jpg
image95.jpg image95.jpg
image84.jpg image84.jpg
image4.gif
files\salome2_sp3_generationgui_functions_salome2_sp3_generationgui_functions_image57.gif files\salome2_sp3_generationgui_functions_salome2_sp3_generationgui_functions_image57.gif
pics\free_boudaries2.png pics\free_boudaries2.png
pics\multi_rotation2d1.png pics\multi_rotation2d1.png
@ -483,6 +487,7 @@ files\salome2_sp3_repairgui_functions_salome2_sp3_repairgui_functions_image121.g
files\salome2_sp3_operationgui_functions_salome2_sp3_operationgui_functions_image90.gif files\salome2_sp3_operationgui_functions_salome2_sp3_operationgui_functions_image90.gif
files\salome2_sp3_basicgui_functions_salome2_sp3_basicgui_functions_image29.gif files\salome2_sp3_basicgui_functions_salome2_sp3_basicgui_functions_image29.gif
i_blue.jpg i_blue.jpg
image30.gif
pics\free_faces1.png pics\free_faces1.png
pics\fillet_all.png pics\fillet_all.png
pics\translationsn2.png pics\translationsn2.png
@ -509,6 +514,8 @@ files\salome2_sp3_repairgui_functions_salome2_sp3_repairgui_functions_image122.g
files\salome2_sp3_primitivegui_functions_salome2_sp3_primitivegui_functions_image100.gif files\salome2_sp3_primitivegui_functions_salome2_sp3_primitivegui_functions_image100.gif
files\salome2_sp3_primitivegui_functions_salome2_sp3_primitivegui_functions_image99.gif files\salome2_sp3_primitivegui_functions_salome2_sp3_primitivegui_functions_image99.gif
salome2_sp3_buildgui_functions_salome2_sp3_buildgui_functions_image13.gif salome2_sp3_buildgui_functions_salome2_sp3_buildgui_functions_image13.gif
image31.gif
pics\commonsn.png
pics\free_faces2.png pics\free_faces2.png
pics\mirror_planesn1.png pics\mirror_planesn1.png
pics\block_explodesn.png pics\block_explodesn.png
@ -600,6 +607,7 @@ whgdata\whlstt13.htm
whgdata\whlstt14.htm whgdata\whlstt14.htm
whgdata\whlstt15.htm whgdata\whlstt15.htm
whgdata\whlstt16.htm whgdata\whlstt16.htm
whgdata\whlstt17.htm
whgdata\whlsti0.htm whgdata\whlsti0.htm
whgdata\whlstfl0.htm whgdata\whlstfl0.htm
whgdata\whlstfl1.htm whgdata\whlstfl1.htm
@ -642,6 +650,7 @@ whgdata\whlstf11.htm
whgdata\whlstf12.htm whgdata\whlstf12.htm
whgdata\whlstf13.htm whgdata\whlstf13.htm
whgdata\whlstf14.htm whgdata\whlstf14.htm
whgdata\whlstf15.htm
whgdata\whlstg0.htm whgdata\whlstg0.htm
geom.htm geom.htm
geom_csh.htm geom_csh.htm

View File

@ -95,20 +95,20 @@ else
<p>&nbsp;</p> <p>&nbsp;</p>
<p># create edge</p> <p># create an edge</p>
<p class="whs1">edge = geompy.MakeEdge(p0, <p class="whs1">edge = geompy.MakeEdge(p0,
pxyz)</p> pxyz)</p>
<p>&nbsp;</p> <p>&nbsp;</p>
<p># add object in study</p> <p># add object in the study</p>
<p class="whs1">id_edge = geompy.addToStudy(edge,&quot;Edge&quot;)</p> <p class="whs1">id_edge = geompy.addToStudy(edge,&quot;Edge&quot;)</p>
<p>&nbsp;</p> <p>&nbsp;</p>
<p># display edge</p> <p># display an edge</p>
<p class="whs1">gg.createAndDisplayGO(id_edge) <p class="whs1">gg.createAndDisplayGO(id_edge)
</p> </p>
@ -142,36 +142,37 @@ else
<p class="whs2">&nbsp;</p> <p class="whs2">&nbsp;</p>
<p class="whs2"># create vector on two <p class="whs2"># create a vector from
points</p> two points</p>
<p class="whs1">vxy = geompy.MakeVector(px, <p class="whs1">vxy = geompy.MakeVector(px,
py)</p> py)</p>
<p class="whs1">&nbsp;</p> <p class="whs1">&nbsp;</p>
<p class="whs2"># create arc with three <p class="whs2"># create an arc from
points</p> three points</p>
<p class="whs1">arc = geompy.MakeArc(py, <p class="whs1">arc = geompy.MakeArc(py,
pz, px)</p> pz, px)</p>
<p class="whs2">&nbsp;</p> <p class="whs2">&nbsp;</p>
<p class="whs2"># create wire</p> <p class="whs2"># create a wire</p>
<p class="whs1">wire = geompy.MakeWire([vxy, <p class="whs1">wire = geompy.MakeWire([vxy,
arc])</p> arc])</p>
<p class="whs2">&nbsp;</p> <p class="whs2">&nbsp;</p>
<p class="whs2"># add object in study</p> <p class="whs2"># add an object in the
study</p>
<p class="whs1">id_wire = geompy.addToStudy(wire,&quot;Wire&quot;)</p> <p class="whs1">id_wire = geompy.addToStudy(wire,&quot;Wire&quot;)</p>
<p class="whs2">&nbsp;</p> <p class="whs2">&nbsp;</p>
<p class="whs2"># display wire</p> <p class="whs2"># display the wire</p>
<p class="whs1">gg.createAndDisplayGO(id_wire) <p class="whs1">gg.createAndDisplayGO(id_wire)
</p> </p>
@ -215,23 +216,23 @@ else
<p class="whs1">&nbsp;</p> <p class="whs1">&nbsp;</p>
<p class="whs2"># create vector on two <p class="whs2"># create a vector from
points</p> two points</p>
<p class="whs1">vxy = geompy.MakeVector(px, <p class="whs1">vxy = geompy.MakeVector(px,
py)</p> py)</p>
<p class="whs1">&nbsp;</p> <p class="whs1">&nbsp;</p>
<p class="whs2"># create arc with three <p class="whs2"># create an arc from
points</p> three points</p>
<p class="whs1">arc = geompy.MakeArc(py, <p class="whs1">arc = geompy.MakeArc(py,
pz, px)</p> pz, px)</p>
<p class="whs1">&nbsp;</p> <p class="whs1">&nbsp;</p>
<p class="whs2"># create wire</p> <p class="whs2"># create a wire</p>
<p class="whs1">wire = geompy.MakeWire([vxy, <p class="whs1">wire = geompy.MakeWire([vxy,
arc])</p> arc])</p>
@ -256,7 +257,8 @@ else
<p class="whs1">&nbsp;</p> <p class="whs1">&nbsp;</p>
<p class="whs2"># create face from wire</p> <p class="whs2"># create a face from
the wire</p>
<p class="whs1">face1 = geompy.MakeFace(wire, <p class="whs1">face1 = geompy.MakeFace(wire,
isPlanarFace)</p> isPlanarFace)</p>
@ -274,7 +276,8 @@ else
<p class="whs1">&nbsp;</p> <p class="whs1">&nbsp;</p>
<p class="whs2"># add objects in study</p> <p class="whs2"># add objects in the
study</p>
<p class="whs1">id_face1 = geompy.addToStudy(face1,&quot;Face1&quot;)</p> <p class="whs1">id_face1 = geompy.addToStudy(face1,&quot;Face1&quot;)</p>
@ -284,7 +287,7 @@ else
<p class="whs1">&nbsp;</p> <p class="whs1">&nbsp;</p>
<p class="whs2"># display faces</p> <p class="whs2"># display the faces</p>
<p class="whs1">gg.createAndDisplayGO(id_face1)</p> <p class="whs1">gg.createAndDisplayGO(id_face1)</p>
@ -342,30 +345,31 @@ else
<p class="whs1">&nbsp;</p> <p class="whs1">&nbsp;</p>
<p class="whs2"># create face from two <p class="whs2"># create a face from
wires</p> two wires</p>
<p class="whs1">face = geompy.MakeFaces([sketcher1, <p class="whs1">face = geompy.MakeFaces([sketcher1,
sketcher2],isPlanarFace)</p> sketcher2],isPlanarFace)</p>
<p class="whs1">&nbsp;</p> <p class="whs1">&nbsp;</p>
<p class="whs2"># create prism</p> <p class="whs2"># create a prism</p>
<p class="whs1">prism = geompy.MakePrism(face, <p class="whs1">prism = geompy.MakePrism(face,
p0, pxyz)</p> p0, pxyz)</p>
<p class="whs1">&nbsp;</p> <p class="whs1">&nbsp;</p>
<p class="whs2"># explode prism on faces</p> <p class="whs2"># explode the prism into
faces</p>
<p class="whs1">prism_faces = geompy.SubShapeAllSorted(prism, <p class="whs1">prism_faces = geompy.SubShapeAllSorted(prism,
geompy.ShapeType[&quot;FACE&quot;])</p> geompy.ShapeType[&quot;FACE&quot;])</p>
<p class="whs1">&nbsp;</p> <p class="whs1">&nbsp;</p>
<p class="whs2"># create shell from the <p class="whs2"># create a shell from
set of faces</p> a set of faces</p>
<p class="whs1">shell = geompy.MakeShell([prism_faces[0], <p class="whs1">shell = geompy.MakeShell([prism_faces[0],
prism_faces[2], prism_faces[3],</p> prism_faces[2], prism_faces[3],</p>
@ -375,13 +379,14 @@ else
<p class="whs1">&nbsp;</p> <p class="whs1">&nbsp;</p>
<p class="whs2"># add objects in study</p> <p class="whs2"># add objects in the
study</p>
<p class="whs1">id_shell = geompy.addToStudy(shell,&quot;Shell&quot;)</p> <p class="whs1">id_shell = geompy.addToStudy(shell,&quot;Shell&quot;)</p>
<p class="whs1">&nbsp;</p> <p class="whs1">&nbsp;</p>
<p class="whs2"># display shell</p> <p class="whs2"># display the shell</p>
<p class="whs1">gg.createAndDisplayGO(id_shell)</p> <p class="whs1">gg.createAndDisplayGO(id_shell)</p>
@ -427,22 +432,23 @@ else
<p class="whs1">&nbsp;</p> <p class="whs1">&nbsp;</p>
<p class="whs2"># create prism</p> <p class="whs2"># create a prism</p>
<p class="whs1">prism = geompy.MakePrism(face, <p class="whs1">prism = geompy.MakePrism(face,
p0, pz)</p> p0, pz)</p>
<p class="whs1">&nbsp;</p> <p class="whs1">&nbsp;</p>
<p class="whs2"># explode prism on faces</p> <p class="whs2"># explode the prism into
faces</p>
<p class="whs1">prism_faces = geompy.SubShapeAllSorted(prism, <p class="whs1">prism_faces = geompy.SubShapeAllSorted(prism,
geompy.ShapeType[&quot;FACE&quot;])</p> geompy.ShapeType[&quot;FACE&quot;])</p>
<p class="whs1">&nbsp;</p> <p class="whs1">&nbsp;</p>
<p class="whs2"># create shell from the <p class="whs2"># create a shell from
set of faces</p> a set of faces</p>
<p class="whs1">shell = geompy.MakeShell([prism_faces[0], <p class="whs1">shell = geompy.MakeShell([prism_faces[0],
prism_faces[1],</p> prism_faces[1],</p>
@ -455,20 +461,21 @@ else
<p class="whs1">&nbsp;</p> <p class="whs1">&nbsp;</p>
<p class="whs2"># create solid, bounded <p class="whs2"># create a solid, bounded
by the given shells</p> by the given shells</p>
<p class="whs1">solid = geompy.MakeSolid([shell])</p> <p class="whs1">solid = geompy.MakeSolid([shell])</p>
<p class="whs1">&nbsp;</p> <p class="whs1">&nbsp;</p>
<p class="whs2"># add objects in study</p> <p class="whs2"># add objects in the
study</p>
<p class="whs1">id_solid = geompy.addToStudy(solid,&quot;Solid&quot;)</p> <p class="whs1">id_solid = geompy.addToStudy(solid,&quot;Solid&quot;)</p>
<p class="whs1">&nbsp;</p> <p class="whs1">&nbsp;</p>
<p class="whs2"># display solid</p> <p class="whs2"># display the solid</p>
<p class="whs1">gg.createAndDisplayGO(id_solid)</p> <p class="whs1">gg.createAndDisplayGO(id_solid)</p>
@ -513,22 +520,23 @@ else
<p class="whs1">&nbsp;</p> <p class="whs1">&nbsp;</p>
<p class="whs2"># create prism</p> <p class="whs2"># create a prism</p>
<p class="whs1">prism = geompy.MakePrism(face, <p class="whs1">prism = geompy.MakePrism(face,
p0, pz)</p> p0, pz)</p>
<p class="whs1">&nbsp;</p> <p class="whs1">&nbsp;</p>
<p class="whs2"># explode prism on faces</p> <p class="whs2"># explode the prism into
faces</p>
<p class="whs1">prism_faces = geompy.SubShapeAllSorted(prism, <p class="whs1">prism_faces = geompy.SubShapeAllSorted(prism,
geompy.ShapeType[&quot;FACE&quot;])</p> geompy.ShapeType[&quot;FACE&quot;])</p>
<p class="whs1">&nbsp;</p> <p class="whs1">&nbsp;</p>
<p class="whs2"># create shell from the <p class="whs2"># create a shell from
set of faces</p> a set of faces</p>
<p class="whs1">shell = geompy.MakeShell([prism_faces[0], <p class="whs1">shell = geompy.MakeShell([prism_faces[0],
prism_faces[1],</p> prism_faces[1],</p>
@ -541,20 +549,21 @@ else
<p class="whs1">&nbsp;</p> <p class="whs1">&nbsp;</p>
<p class="whs2"># create solid, bounded <p class="whs2"># create a solid, bounded
by the given shells</p> by the given shells</p>
<p class="whs1">solid = geompy.MakeSolid([shell])</p> <p class="whs1">solid = geompy.MakeSolid([shell])</p>
<p class="whs1">&nbsp;</p> <p class="whs1">&nbsp;</p>
<p class="whs2"># add objects in study</p> <p class="whs2"># add objects in the
study</p>
<p class="whs1">id_solid = geompy.addToStudy(solid,&quot;Solid&quot;)</p> <p class="whs1">id_solid = geompy.addToStudy(solid,&quot;Solid&quot;)</p>
<p class="whs1">&nbsp;</p> <p class="whs1">&nbsp;</p>
<p class="whs2"># display solid</p> <p class="whs2"># display the solid</p>
<p class="whs1">gg.createAndDisplayGO(id_solid)</p> <p class="whs1">gg.createAndDisplayGO(id_solid)</p>

View File

@ -115,7 +115,7 @@ else
<p class="whs4"><b style="font-weight: bold;">TUI Command <p class="whs4"><b style="font-weight: bold;">TUI Command
: </b><span style="font-style: italic;"><I>geompy.MakeGlueFaces(theShape, : </b><span style="font-style: italic;"><I>geompy.MakeGlueFaces(theShape,
theTolerance)</I></span>, where theShape is a compound of shapesto be glued, theTolerance)</I></span>, where theShape is a compound of shapes to be glued,
theTolerance is a maximum distance between two faces, which can be considered theTolerance is a maximum distance between two faces, which can be considered
as coincident.</p> as coincident.</p>

View File

@ -93,14 +93,14 @@ else
<p>&nbsp;</p> <p>&nbsp;</p>
<p># create a box on two points</p> <p># create a box from two points</p>
<p class="whs1">Box = geompy.MakeBoxTwoPnt(p0, <p class="whs1">Box = geompy.MakeBoxTwoPnt(p0,
p200)</p> p200)</p>
<p>&nbsp;</p> <p>&nbsp;</p>
<p># create group on box's faces</p> <p># create a group from the faces of the box</p>
<p class="whs1">group = geompy.CreateGroup(Box, <p class="whs1">group = geompy.CreateGroup(Box,
geompy.ShapeType[&quot;FACE&quot;])</p> geompy.ShapeType[&quot;FACE&quot;])</p>
@ -123,25 +123,25 @@ else
<p>&nbsp;</p> <p>&nbsp;</p>
<p># add to the group all the given shapes from the list</p> <p># add all selected shapes from the list to the group </p>
<p># (no errors, if some shapes are already included)</p> <p># (the program doesn't raise error, if some shapes are already included)</p>
<p class="whs1">geompy.UnionList(group, <p class="whs1">geompy.UnionList(group,
[SubFaceList[0], SubFaceList[2], SubFaceList[5]])</p> [SubFaceList[0], SubFaceList[2], SubFaceList[5]])</p>
<p>&nbsp;</p> <p>&nbsp;</p>
<p># remove object from the group</p> <p># remove an object from the group</p>
<p class="whs1">geompy.RemoveObject(group, <p class="whs1">geompy.RemoveObject(group,
FaceID)</p> FaceID)</p>
<p>&nbsp;</p> <p>&nbsp;</p>
<p># remove from the group all the given shapes</p> <p># remove all selected shapes from the group </p>
<p># (no errors, if some shapes are not included)</p> <p># (the program doesn't raise error, if some shapes are not included)</p>
<p class="whs1">geompy.DifferenceList(group, <p class="whs1">geompy.DifferenceList(group,
[SubFaceList[2], SubFaceList[3], SubFaceList[4]])</p> [SubFaceList[2], SubFaceList[3], SubFaceList[4]])</p>
@ -151,18 +151,14 @@ else
<p>&nbsp;</p> <p>&nbsp;</p>
<p># display group's contents</p> <p># display the contents of the group</p>
<p class="whs1">gg.createAndDisplayGO(id_group1)</p> <p class="whs1">gg.createAndDisplayGO(id_group1)</p>
<p><span style="font-family: 'Lucida Console', monospace;">salome.sg.updateObjBrowser(1)</span> <p><span style="font-family: 'Lucida Console', monospace;">salome.sg.updateObjBrowser(1)</span>
</p> </p>
<h3>&nbsp;</h3> <h3>Adding an object to the group.</h3>
<h3>&nbsp;</h3>
<h3>Adding an object in a group.</h3>
<p class="whs1">import geompy</p> <p class="whs1">import geompy</p>
@ -183,14 +179,14 @@ else
<p>&nbsp;</p> <p>&nbsp;</p>
<p># create a box on two points</p> <p># create a box from two points</p>
<p class="whs1">Box = geompy.MakeBoxTwoPnt(p0, <p class="whs1">Box = geompy.MakeBoxTwoPnt(p0,
p200)</p> p200)</p>
<p>&nbsp;</p> <p>&nbsp;</p>
<p># create group on box's faces</p> <p># create a group from the faces of the box</p>
<p class="whs1">group = geompy.CreateGroup(Box, <p class="whs1">group = geompy.CreateGroup(Box,
geompy.ShapeType[&quot;FACE&quot;])</p> geompy.ShapeType[&quot;FACE&quot;])</p>
@ -216,7 +212,7 @@ else
<p>&nbsp;</p> <p>&nbsp;</p>
<p># display group's contents</p> <p># display the contents of the group</p>
<p class="whs1">gg.createAndDisplayGO(id_group1)</p> <p class="whs1">gg.createAndDisplayGO(id_group1)</p>
@ -225,7 +221,7 @@ else
<p>&nbsp;</p> <p>&nbsp;</p>
<h3>Removing an object from a group</h3> <h3>Removing an object from the group</h3>
<p class="whs1">import geompy</p> <p class="whs1">import geompy</p>
@ -246,14 +242,14 @@ else
<p>&nbsp;</p> <p>&nbsp;</p>
<p># create a box on two points</p> <p># create a box from two points</p>
<p class="whs1">Box = geompy.MakeBoxTwoPnt(p0, <p class="whs1">Box = geompy.MakeBoxTwoPnt(p0,
p200)</p> p200)</p>
<p>&nbsp;</p> <p>&nbsp;</p>
<p># create group on box's faces</p> <p># create a group from the faces of the box</p>
<p class="whs1">group = geompy.CreateGroup(Box, <p class="whs1">group = geompy.CreateGroup(Box,
geompy.ShapeType[&quot;FACE&quot;])</p> geompy.ShapeType[&quot;FACE&quot;])</p>
@ -276,16 +272,16 @@ else
<p>&nbsp;</p> <p>&nbsp;</p>
<p># add to the group all the given shapes from the list</p> <p># add all selected shapes from the list to the group </p>
<p># (no errors, if some shapes are already included)</p> <p># (the program doesn't raise errors, if some shapes are already included)</p>
<p class="whs1">geompy.UnionList(group, <p class="whs1">geompy.UnionList(group,
[SubFaceList[0], SubFaceList[2], SubFaceList[5]])</p> [SubFaceList[0], SubFaceList[2], SubFaceList[5]])</p>
<p>&nbsp;</p> <p>&nbsp;</p>
<p># remove object from the group</p> <p># remove an object from the group</p>
<p class="whs1">geompy.RemoveObject(group, <p class="whs1">geompy.RemoveObject(group,
FaceID)</p> FaceID)</p>
@ -295,7 +291,7 @@ else
<p>&nbsp;</p> <p>&nbsp;</p>
<p># display group's contents</p> <p># display the contents of the group</p>
<p class="whs1">gg.createAndDisplayGO(id_group1)</p> <p class="whs1">gg.createAndDisplayGO(id_group1)</p>

BIN
doc/salome/gui/GEOM/image28.gif Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 980 B

BIN
doc/salome/gui/GEOM/image30.gif Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.0 KiB

BIN
doc/salome/gui/GEOM/image31.gif Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.4 KiB

108
doc/salome/gui/GEOM/isos.htm Executable file
View File

@ -0,0 +1,108 @@
<!doctype HTML public "-//W3C//DTD HTML 4.0 Frameset//EN">
<html>
<head>
<title>Isos</title>
<meta http-equiv="content-type" content="text/html; charset=windows-1252">
<meta name="generator" content="RoboHelp by eHelp Corporation www.ehelp.com">
<link rel="stylesheet" href="default_ns.css"><script type="text/javascript" language="JavaScript" title="WebHelpSplitCss">
<!--
if (navigator.appName !="Netscape")
{ document.write("<link rel='stylesheet' href='default.css'>");}
//-->
</script>
<style type="text/css">
<!--
p.whs1 { font-size:12pt; }
p.whs2 { font-size:12pt; margin-left:40px; }
img_whs3 { border:none; width:255px; height:150px; float:none; border-style:none; }
img_whs4 { border:none; width:400px; height:420px; float:none; border-style:none; }
p.whs5 { font-family:'Times New Roman' , serif; font-size:12pt; }
-->
</style><script type="text/javascript" language="JavaScript" title="WebHelpInlineScript">
<!--
function reDo() {
if (innerWidth != origWidth || innerHeight != origHeight)
location.reload();
}
if ((parseInt(navigator.appVersion) == 4) && (navigator.appName == "Netscape")) {
origWidth = innerWidth;
origHeight = innerHeight;
onresize = reDo;
}
onerror = null;
//-->
</script>
<style type="text/css">
<!--
div.WebHelpPopupMenu { position:absolute; left:0px; top:0px; z-index:4; visibility:hidden; }
-->
</style><script type="text/javascript" language="javascript1.2" src="whmsg.js"></script>
<script type="text/javascript" language="javascript" src="whver.js"></script>
<script type="text/javascript" language="javascript1.2" src="whproxy.js"></script>
<script type="text/javascript" language="javascript1.2" src="whutils.js"></script>
<script type="text/javascript" language="javascript1.2" src="whtopic.js"></script>
</head>
<body><script type="text/javascript" language="javascript1.2">
<!--
if (window.gbWhTopic)
{
if (window.addTocInfo)
{
addTocInfo("GEOM module\nManaging geometrical objects\nChanging Display Parameters\nIsolines");
addButton("show",BTN_TEXT,"Show","","","","",0,0,"","","");
}
if (window.writeBtnStyle)
writeBtnStyle();
if (window.writeIntopicBar)
writeIntopicBar(1);
if (window.setRelStartPage)
{
setRelStartPage("geom.htm");
autoSync(1);
sendSyncInfo();
sendAveInfoOut();
}
}
else
if (window.gbIE4)
document.location.reload();
//-->
</script>
<h1>Isolines</h1>
<p class="whs1">In this menu you can change the number of isolines
displayed within a shape.</p>
<p class="whs1"><b style="font-weight: bold;">Arguments:</b>
2 values (number of isolines).</p>
<p class="whs1">&nbsp;</p>
<p class="whs2"><img src="pics/neo-isos.png" x-maintain-ratio="TRUE" width="255px" height="150px" border="0" class="img_whs3"></p>
<p class="whs2">&nbsp;</p>
<p class="whs1"><b style="font-weight: bold;">Example:</b></p>
<p class="whs1">&nbsp;</p>
<p class="whs2"><img src="pics/colorsn.png" x-maintain-ratio="TRUE" width="400px" height="420px" border="0" class="img_whs4"> &nbsp;<img src="pics/isos_u12_v12sn.png" x-maintain-ratio="TRUE" width="400px" height="420px" border="0" class="img_whs4"></p>
<p class="whs5">&nbsp;</p>
<p>&nbsp;</p>
<script type="text/javascript" language="javascript1.2">
<!--
if (window.writeIntopicBar)
writeIntopicBar(0);
//-->
</script>
</body>
</html>

View File

@ -99,7 +99,7 @@ else
<p class="whs2">&nbsp;</p> <p class="whs2">&nbsp;</p>
<p class="whs2"><b style="font-weight: bold;">TUI Command:</b> <p class="whs2"><b style="font-weight: bold;">TUI Command:</b>
<span style="font-style: italic;"><I>geompy.MakeLine(Point1, Point2)</I></span> <span style="font-style: italic;"><I>geompy.MakeLineTwoPnt(Point1, Point2)</I></span>
</p> </p>
<p class="whs2"><b style="font-weight: bold;">Arguments:</b> <p class="whs2"><b style="font-weight: bold;">Arguments:</b>
@ -121,7 +121,7 @@ else
<p class="whs2">&nbsp;</p> <p class="whs2">&nbsp;</p>
<p class="whs9">NB! <span style="font-weight: normal;">The <p class="whs9">NB! <span style="font-weight: normal;">There
is another way to create a line, which is currently accessible only via</span> is another way to create a line, which is currently accessible only via</span>
TUI <span style="font-weight: normal;">commands.</span></p> TUI <span style="font-weight: normal;">commands.</span></p>

View File

@ -16,33 +16,25 @@ if (navigator.appName !="Netscape")
<!-- <!--
img_whs1 { border:none; width:16px; height:16px; border-style:none; } img_whs1 { border:none; width:16px; height:16px; border-style:none; }
p.whs2 { font-size:12pt; } p.whs2 { font-size:12pt; }
table.whs3 { x-cell-content-align:top; width:63.512%; border-spacing:0px; } p.whs3 { font-weight:bold; font-size:14pt; }
col.whs4 { width:49.962%; } img_whs4 { border:none; width:312px; height:391px; float:none; border-style:none; }
col.whs5 { width:45.348%; } p.whs5 { font-size:12pt; font-weight:normal; }
col.whs6 { width:4.69%; } img_whs6 { border:none; width:312px; height:289px; float:none; border-style:none; }
tr.whs7 { x-cell-content-align:top; } p.whs7 { font-size:12pt; font-weight:bold; }
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; } img_whs8 { border:none; width:312px; height:359px; float:none; border-style:none; }
p.whs9 { font-weight:bold; font-size:14pt; } p.whs9 { font-weight:bold; text-indent:-40px; font-size:14pt; margin-left:40px; }
img_whs10 { border:none; width:312px; height:391px; float:none; border-style:none; } p.whs10 { font-weight:bold; margin-left:80px; text-indent:-80px; font-size:12pt; }
td.whs11 { width:45.348%; padding-right:10px; padding-left:10px; border-right-style:none; border-top-style:none; border-bottom-style:none; } p.whs11 { font-weight:bold; text-indent:-80px; font-size:12pt; margin-left:120px; }
img_whs12 { border:none; width:312px; height:289px; float:none; border-style:none; } img_whs12 { border:none; width:200px; height:219px; border-style:none; }
td.whs13 { width:4.69%; padding-right:10px; padding-left:10px; border-top-style:none; border-bottom-style:none; border-right-style:none; }
img_whs14 { border:none; width:312px; height:359px; float:none; border-style:none; }
p.whs15 { margin-left:40px; font-weight:bold; text-indent:-40px; font-size:14pt; }
p.whs16 { font-weight:bold; text-indent:-40px; font-size:14pt; margin-left:40px; }
p.whs17 { font-weight:bold; margin-left:80px; text-indent:-80px; font-size:12pt; }
p.whs18 { font-weight:bold; text-indent:-80px; font-size:12pt; margin-left:120px; }
img_whs19 { border:none; width:200px; height:219px; border-style:none; }
--> -->
</style><script type="text/javascript" language="JavaScript"> </style><script type="text/javascript" language="JavaScript">
<!-- <!--
if ((navigator.appName == "Netscape") && (parseInt(navigator.appVersion) == 4)) if ((navigator.appName == "Netscape") && (parseInt(navigator.appVersion) == 4))
{ {
var strNSS = "<style type='text/css'>"; var strNSS = "<style type='text/css'>";
strNSS += "p.whs15 {text-indent:1pt; }"; strNSS += "p.whs9 {text-indent:1pt; }";
strNSS += "p.whs16 {text-indent:1pt; }"; strNSS += "p.whs10 {text-indent:1pt; }";
strNSS += "p.whs17 {text-indent:1pt; }"; strNSS += "p.whs11 {text-indent:1pt; }";
strNSS += "p.whs18 {text-indent:1pt; }";
strNSS +="</style>"; strNSS +="</style>";
document.write(strNSS); document.write(strNSS);
} }
@ -110,90 +102,68 @@ else
style="font-weight: bold;"><B>New Entity - &gt; Basic - &gt; Local Coordinate style="font-weight: bold;"><B>New Entity - &gt; Basic - &gt; Local Coordinate
System</B></span></p> System</B></span></p>
<p class="whs2">&nbsp;</p> <p class="whs2">There are three algorithms to choose from.</p>
<p class="whs2">You can enter the values of X, Y, and Z coordinates
of origin in the corresponding fields of the dialog box, or select a point
in the object browser or 3D viewer, in this case the coordinates of origin
are automatically filled in with the coordinates of the selected point.
</p>
<p class="whs2">The user then specifies components of X and
Y axes direction.</p>
<p class="whs2">Preview of the new LCS (small trihedron located
and oriented according to parameters of LCS) is displayed in the 3D viewer
and updated as soon as the user modifies some parameter. </p>
<p class="whs2">Then the user presses «OK» or «Apply» button
to create an LCS at the location with the specified coordinates. The new
object is shown in the Object Browser and in 3D viewer.</p>
<p class="whs2">&nbsp;</p> <p class="whs2">&nbsp;</p>
<p class="whs2">Firstly, you can by yourselves the values of
X, Y, and Z coordinates of origin and the directions of X and Y axes<span>.</span></p>
<p class="whs2"><span style="font-weight: bold;"><B>TUI command:</B></span> <p class="whs2"><span style="font-weight: bold;"><B>TUI command:</B></span>
<span style="font-style: italic;"><I>geompy.MakeMarker(OX, OY, OZ, XDX, XDY, <span style="font-style: italic;"><I>geompy.MakeMarker(OX, OY, OZ, XDX, XDY,
XDZ, YDX, YDY, YDZ)</I></span>, where OX, OY, OZ are coordinates of the origin XDZ, YDX, YDY, YDZ)</I></span>, where OX, OY, OZ are coordinates of the origin
of LCS, XDX, XDY, XDZ is a vector of OX &nbsp;direction of LCS, XDX, XDY, XDZ is a vector of OX &nbsp;direction
of the LCS and YDX, YDY, YDZ is a a vector of OY direction of the LCS.</p> of the LCS and YDX, YDY, YDZ is a a vector of OY direction of the LCS.</p>
<p class="whs2">&nbsp;</p>
<p class="whs2">&nbsp;</p>
<p class="whs2"><b style="font-weight: bold;">Arguments:</b> <p class="whs2"><b style="font-weight: bold;">Arguments:</b>
</p> Name + Coordinates of origin, X axis direction, Y axis direction.</p>
<ul>
<li class=kadov-p><p class="whs2"><b style="font-weight: bold;">1st
Constructor :</b> Name + Coordinates of origin, X axis direction, Y axis
direction</p></li>
<li class=kadov-p><p class="whs2"><b style="font-weight: bold;">2nd
Constructor :</b> Name + reference object.</p></li>
<li class=kadov-p><p class="whs2"><b style="font-weight: bold;">3rd
Constructor :</b> Name + 1 point of origin + X axis direction, Y axis
direction.</p></li>
</ul>
<p class="whs2">&nbsp;</p> <p class="whs2">&nbsp;</p>
<p class="whs2">.</p> <p class="whs3"><img src="pics/neo-localcs1.png" x-maintain-ratio="TRUE" width="312px" height="391px" border="0" class="img_whs4"></p>
<p class="whs3">&nbsp;</p>
<p class="whs5">Secondly, you can simply
select a point in the object browser or 3D viewer, in this case the coordinates
of origin are automatically filled in with the coordinates of the selected
point and X and Y axes direction will be parallel to the X and Y direction
of the Global CS. &nbsp;</p>
<p class="whs5"><b style="font-weight: bold;">Arguments:
</b>Name + reference object.</p>
<p class="whs5">&nbsp;</p>
<p class="whs3"><img src="pics/neo-localcs2.png" x-maintain-ratio="TRUE" width="312px" height="289px" border="0" class="img_whs6"></p>
<p class="whs2">&nbsp;</p> <p class="whs2">&nbsp;</p>
<p class="whs2"><b style="font-weight: bold;">Dialog Box:</b></p> <p class="whs2">The last algorithm also presumes that you select
a point in the object browser or 3D viewer, but in this case you define
X and Y axes direction yourselves. </p>
<p class="whs7"><b>Arguments:</b> <span
style="font-weight: normal;">Name + 1 point of origin + X axis direction,
Y axis direction.</span></p>
<p class="whs2">&nbsp;</p> <p class="whs2">&nbsp;</p>
<table x-use-null-cells cellspacing="0" width="63.512%" class="whs3"> <p class="whs3"><img src="pics/neo-localcs3.png" x-maintain-ratio="TRUE" width="312px" height="359px" border="0" class="img_whs8"></p>
<col class="whs4">
<col class="whs5">
<col class="whs6">
<tr valign="top" class="whs7"> <p class="whs2">&nbsp;</p>
<td width="49.962%" class="whs8">
<p class="whs9"><img src="pics/neo-localcs1.png" x-maintain-ratio="TRUE" width="312px" height="391px" border="0" class="img_whs10"></td>
<td width="45.348%" class="whs11">
<p class="whs9"><img src="pics/neo-localcs2.png" x-maintain-ratio="TRUE" width="312px" height="289px" border="0" class="img_whs12"></td>
<td width="4.69%" class="whs13">
<p class="whs9"><img src="pics/neo-localcs3.png" x-maintain-ratio="TRUE" width="312px" height="359px" border="0" class="img_whs14"></td></tr>
</table>
<p class="whs15">&nbsp;</p> <p class="whs2">Press «OK» or «Apply» button to create an LCS
at the location with the specified coordinates. The new object is shown
in the Object Browser and in 3D viewer.</p>
<p class="whs16"><span style="font-weight: bold; <p class="whs9">&nbsp;</p>
margin-left: 80px;
text-indent: -80px;
font-size: 12pt;"><font size=3 style="font-size:12pt;"><B>Example:</B></font></span></p>
<p class="whs17">&nbsp;</p> <p class="whs10">Example:</p>
<p class="whs18"><img src="image145.jpg" width="200px" height="219px" border="0" class="img_whs19"></p> <p class="whs11"><img src="image145.jpg" width="200px" height="219px" border="0" class="img_whs12"></p>
<p class="whs18">&nbsp;</p> <p class="whs11">&nbsp;</p>
<p>&nbsp;</p> <p>&nbsp;</p>

View File

@ -86,7 +86,7 @@ else
<p>&nbsp;</p> <p>&nbsp;</p>
<p># get point's coordinates and check its values</p> <p># get the coordinates of the point and check its values</p>
<p class="whs1">coords = geompy.PointCoordinates(point)</p> <p class="whs1">coords = geompy.PointCoordinates(point)</p>
@ -283,39 +283,6 @@ else
<p class="whs1">&nbsp;</p> <p class="whs1">&nbsp;</p>
<p class="whs1">Point Coordinates</p>
<p class="whs1">&nbsp;</p>
<p class="whs1">&nbsp;</p>
<p class="whs1"><span style="font-family: 'Lucida Console', monospace;">import
geompy</span></p>
<p class="whs1"># create a point</p>
<p class="whs1">point = geompy.MakeVertex(15,
23, 80)</p>
<p class="whs1"># get point's coordinates
and check its values</p>
<p class="whs1">coords = geompy.PointCoordinates(point)</p>
<p class="whs1">if coords[0] != 15
or coords[1] != 23 or coords[2] != 80 :</p>
<p class="whs1">&nbsp;&nbsp;&nbsp;&nbsp;print
&quot;Coordinates of point must be (15, 23, 80), but returned (&quot;,
coords[0], &quot;, &quot;, coords[1], &quot;, &quot;, coords[2], &quot;)&quot;</p>
<p class="whs1">else :</p>
<p class="whs1">&nbsp;&nbsp;&nbsp;&nbsp;print
&quot;All values are OK.&quot; </p>
<p class="whs1">&nbsp;</p>
<h3>Tolerance</h3> <h3>Tolerance</h3>
<p class="whs1"><span style="font-family: 'Lucida Console', monospace;">import <p class="whs1"><span style="font-family: 'Lucida Console', monospace;">import
@ -417,14 +384,15 @@ else
<p class="whs1">&nbsp;</p> <p class="whs1">&nbsp;</p>
<p class="whs2"># make compound</p> <p class="whs2"># make a compound</p>
<p class="whs1">compound = geompy.MakeCompound([box1, <p class="whs1">compound = geompy.MakeCompound([box1,
box2])</p> box2])</p>
<p class="whs1">&nbsp;</p> <p class="whs1">&nbsp;</p>
<p class="whs2"># glue compound's faces</p> <p class="whs2"># glue the faces of the
compound</p>
<p class="whs1">tolerance = 1e-5</p> <p class="whs1">tolerance = 1e-5</p>

View File

@ -16,21 +16,22 @@ if (navigator.appName !="Netscape")
<!-- <!--
p.whs1 { font-size:12pt; } p.whs1 { font-size:12pt; }
img_whs2 { border:none; width:312px; height:350px; float:none; border-style:none; } img_whs2 { border:none; width:312px; height:350px; float:none; border-style:none; }
img_whs3 { border:none; float:none; width:250px; height:350px; border-style:none; } img_whs3 { border:none; width:174px; height:233px; float:none; border-style:none; }
img_whs4 { border:none; float:none; width:248px; height:349px; border-style:none; } img_whs4 { border:none; float:none; width:174px; height:233px; border-style:none; }
img_whs5 { border:none; width:227px; height:176px; float:none; border-style:none; } p.whs5 { font-size:12pt; margin-left:40px; }
img_whs6 { border:none; float:none; width:199px; height:177px; border-style:none; } img_whs6 { border:none; width:227px; height:176px; float:none; border-style:none; }
img_whs7 { border:none; width:174px; height:233px; float:none; border-style:none; } img_whs7 { border:none; float:none; width:199px; height:177px; border-style:none; }
img_whs8 { border:none; float:none; width:174px; height:233px; border-style:none; } img_whs8 { border:none; width:312px; height:350px; float:none; border-style:none; }
p.whs9 { font-size:12pt; margin-left:40px; } img_whs9 { border:none; float:none; width:250px; height:350px; border-style:none; }
p.whs10 { list-style:disc; margin-left:0in; margin-right:0in; margin-top:0px; margin-bottom:0px; } img_whs10 { border:none; float:none; width:248px; height:349px; border-style:none; }
p.whs11 { list-style:disc; margin-left:0in; margin-right:0in; margin-top:0px; margin-bottom:0px; }
--> -->
</style><script type="text/javascript" language="JavaScript"> </style><script type="text/javascript" language="JavaScript">
<!-- <!--
if ((navigator.appName == "Netscape") && (parseInt(navigator.appVersion) == 4)) if ((navigator.appName == "Netscape") && (parseInt(navigator.appVersion) == 4))
{ {
var strNSS = "<style type='text/css'>"; var strNSS = "<style type='text/css'>";
strNSS += "p.whs10 {margin-left:1pt;margin-right:1pt;margin-top:1pt;margin-bottom:1pt; }"; strNSS += "p.whs11 {margin-left:1pt;margin-right:1pt;margin-top:1pt;margin-bottom:1pt; }";
strNSS +="</style>"; strNSS +="</style>";
document.write(strNSS); document.write(strNSS);
} }
@ -110,20 +111,25 @@ else
<p class="whs1">&nbsp;</p> <p class="whs1">&nbsp;</p>
<p class="whs1">Firstly an <span style="font-weight: bold;"><B>Object</B></span> <p class="whs1"><span style="font-size: 12pt;"><font size=3 style="font-size:12pt;">Firstly an Object
can be mirrored through a <span style="font-weight: bold;"><B>Plane</B></span> can be mirrored through a Point of symmetry</font></span></p>
of symmetry </p>
<p class="whs1"><b style="font-weight: bold;">TUI Command:</b><i> <p class="whs1"><b style="font-weight: bold;">TUI Command:
</i><span style="font-style: italic;"><I>geompy.MakeMirrorByPlane(Shape, </b><span style="font-style: italic;"><I>geompy.MakeMirrorByPoint(Object,
Plane)</I></span>, </p> Point)</I></span> </p>
<p class="whs1"><b style="font-weight: bold;">Arguments:</b> <p class="whs1"><b style="font-weight: bold;">Arguments: <span
<b><span style="font-weight: normal;">Name + </span></b>1 shape + 1 plane</p> style="font-weight: normal;">Name + </span></b>1 shape + 1 vertex.</p>
<p class="whs1">&nbsp;</p> <p class="whs1">&nbsp;</p>
<p class="whs1"><img src="pics/transformation9.png" x-maintain-ratio="TRUE" width="312px" height="350px" border="0" class="img_whs2"> &nbsp;<img src="pics/mirror_planesn1.png" x-maintain-ratio="TRUE" width="250px" height="350px" border="0" class="img_whs3"> &nbsp;<img src="pics/mirror_planesn2.png" x-maintain-ratio="TRUE" width="248px" height="349px" border="0" class="img_whs4"></p> <p class="whs1"><img src="pics/transformation7.png" x-maintain-ratio="TRUE" width="312px" height="350px" border="0" class="img_whs2"> &nbsp;</p>
<p class="whs1">&nbsp;</p>
<p class="whs1"><img src="pics/mirror_pointsn1.png" x-maintain-ratio="TRUE" width="174px" height="233px" border="0" class="img_whs3"> &nbsp;<img src="pics/mirror_pointsn2.png" x-maintain-ratio="TRUE" width="174px" height="233px" border="0" class="img_whs4"></p>
<p class="whs5">&nbsp;</p>
<p class="whs1">&nbsp;</p> <p class="whs1">&nbsp;</p>
@ -139,28 +145,36 @@ else
<p class="whs1">&nbsp;</p> <p class="whs1">&nbsp;</p>
<p class="whs1"><img src="pics/transformation8.png" x-maintain-ratio="TRUE" width="312px" height="350px" border="0" class="img_whs2"> &nbsp;<img src="pics/mirror_axissn1.png" x-maintain-ratio="TRUE" width="227px" height="176px" border="0" class="img_whs5"> &nbsp;<img src="pics/mirror_axissn2.png" x-maintain-ratio="TRUE" width="199px" height="177px" border="0" class="img_whs6"></p> <p class="whs1"><img src="pics/transformation8.png" x-maintain-ratio="TRUE" width="312px" height="350px" border="0" class="img_whs2"> &nbsp;</p>
<p class="whs1">&nbsp;</p>
<p class="whs1"><img src="pics/mirror_axissn1.png" x-maintain-ratio="TRUE" width="227px" height="176px" border="0" class="img_whs6"> &nbsp;<img src="pics/mirror_axissn2.png" x-maintain-ratio="TRUE" width="199px" height="177px" border="0" class="img_whs7"></p>
<p class="whs1">&nbsp;</p> <p class="whs1">&nbsp;</p>
<p class="whs1">Finally an <span style="font-weight: bold;"><B>Object</B></span> <p class="whs1">Finally an <span style="font-weight: bold;"><B>Object</B></span>
can be mirrored through a <span style="font-weight: bold;"><B>Point</B></span> can be mirrored through a <span style="font-weight: bold;"><B>Plane</B></span>
of symmetry</p> of symmetry </p>
<p class="whs1"><b style="font-weight: bold;">TUI Command: <p class="whs1"><b style="font-weight: bold;">TUI Command:</b><i>
</b><span style="font-style: italic;"><I>geompy.MakeMirrorByPoint(Object, </i><span style="font-style: italic;"><I>geompy.MakeMirrorByPlane(Shape,
Point)</I></span> </p> Plane)</I></span>, </p>
<p class="whs1"><b style="font-weight: bold;">Arguments: <span <p class="whs1"><b style="font-weight: bold;">Arguments:</b>
style="font-weight: normal;">Name + </span></b>1 shape + 1 vertex.</p> <b><span style="font-weight: normal;">Name + </span></b>1 shape + 1 plane</p>
<p class="whs1">&nbsp;</p> <p class="whs1">&nbsp;</p>
<p class="whs1"><img src="pics/transformation7.png" x-maintain-ratio="TRUE" width="312px" height="350px" border="0" class="img_whs2"> &nbsp;<img src="pics/mirror_pointsn1.png" x-maintain-ratio="TRUE" width="174px" height="233px" border="0" class="img_whs7"> &nbsp;<img src="pics/mirror_pointsn2.png" x-maintain-ratio="TRUE" width="174px" height="233px" border="0" class="img_whs8"></p> <p class="whs1"><img src="pics/transformation9.png" x-maintain-ratio="TRUE" width="312px" height="350px" border="0" class="img_whs8"> &nbsp;</p>
<p class="whs9">&nbsp;</p> <p class="whs1">&nbsp;</p>
<p class="whs10">&nbsp;&nbsp;<span <p class="whs1"><img src="pics/mirror_planesn1.png" x-maintain-ratio="TRUE" width="250px" height="350px" border="0" class="img_whs9"> &nbsp;<img src="pics/mirror_planesn2.png" x-maintain-ratio="TRUE" width="248px" height="349px" border="0" class="img_whs10"></p>
<p class="whs5">&nbsp;</p>
<p class="whs11">&nbsp;&nbsp;<span
style="font-size: 12pt;"><font size=3 style="font-size:12pt;">Our </font></span><span style="font-size: 12pt;"><font size=3 style="font-size:12pt;">Our </font></span><span
style="font-weight: bold;"><B>TUI Scripts</B></span><span style="font-size: 12pt;"><font size=3 style="font-size:12pt;"> style="font-weight: bold;"><B>TUI Scripts</B></span><span style="font-size: 12pt;"><font size=3 style="font-size:12pt;">
provide you with useful examples of the use of <a href="transformation_operations.htm#bookmark5">Transformation provide you with useful examples of the use of <a href="transformation_operations.htm#bookmark5">Transformation

View File

@ -16,22 +16,18 @@ if (navigator.appName !="Netscape")
<!-- <!--
img_whs1 { border:none; width:25px; height:22px; border-style:none; } img_whs1 { border:none; width:25px; height:22px; border-style:none; }
p.whs2 { font-size:12pt; } p.whs2 { font-size:12pt; }
p.whs3 { font-size:12pt; margin-left:40px; } img_whs3 { border:none; width:312px; height:350px; float:none; border-style:none; }
img_whs4 { border:none; width:312px; height:350px; float:none; border-style:none; } img_whs4 { border:none; width:431px; height:233px; border-style:none; }
img_whs5 { border:none; width:312px; height:385px; float:none; border-style:none; } img_whs5 { border:none; width:312px; height:385px; float:none; border-style:none; }
p.whs6 { font-size:12pt; margin-left:40px; text-indent:-40px; } img_whs6 { border:none; width:326px; height:377px; border-style:none; }
p.whs7 { font-size:12pt; text-indent:-40px; margin-left:80px; } p.whs7 { list-style:disc; margin-left:0in; margin-right:0in; margin-top:0px; margin-bottom:0px; }
img_whs8 { border:none; width:200px; height:209px; border-style:none; }
p.whs9 { list-style:disc; margin-left:0in; margin-right:0in; margin-top:0px; margin-bottom:0px; }
--> -->
</style><script type="text/javascript" language="JavaScript"> </style><script type="text/javascript" language="JavaScript">
<!-- <!--
if ((navigator.appName == "Netscape") && (parseInt(navigator.appVersion) == 4)) if ((navigator.appName == "Netscape") && (parseInt(navigator.appVersion) == 4))
{ {
var strNSS = "<style type='text/css'>"; var strNSS = "<style type='text/css'>";
strNSS += "p.whs6 {text-indent:1pt; }"; strNSS += "p.whs7 {margin-left:1pt;margin-right:1pt;margin-top:1pt;margin-bottom:1pt; }";
strNSS += "p.whs7 {text-indent:1pt; }";
strNSS += "p.whs9 {margin-left:1pt;margin-right:1pt;margin-top:1pt;margin-bottom:1pt; }";
strNSS +="</style>"; strNSS +="</style>";
document.write(strNSS); document.write(strNSS);
} }
@ -96,15 +92,70 @@ else
<p class="whs2"><b style="font-weight: normal;">T</b>o<span <p class="whs2"><b style="font-weight: normal;">T</b>o<span
style="font-weight: bold;"><B> Modify the Location</B></span> in the Main Menu style="font-weight: bold;"><B> Modify the Location</B></span> in the Main Menu
select <span style="font-weight: bold;"><B>Operations - &gt; Transformation select <span style="font-weight: bold;"><B>Operations - &gt; Transformation
- &gt; Modify the Location</B></span></p> - &gt; Modify the Location.</B></span></p>
<p class="whs2">&nbsp;</p> <p class="whs2">&nbsp;</p>
<p class="whs2">This operation modifies the <span style="font-weight: bold;"><B>Location</B></span> <p class="whs2">This operation modifies the <span style="font-weight: bold;"><B>Location</B></span>
of an <span style="font-weight: bold;"><B>Object.</B></span> </p> of an <span style="font-weight: bold;"><B>Object </B></span></p>
<p class="whs2">The <b>Result <span style="font-weight: bold;"><B>will <p class="whs2">The first algorithm places the object so that
be a</B></span> </b>&nbsp;GEOM_Object.</p> its center coincides with the center of an End Local Coordinate System.</p>
<p class="whs2"><span style="font-weight: bold;"><B>Create a copy
</B></span>checkbox allows to keep the initial object, otherwise it will be
removed.</p>
<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>
Name + 1 GEOM_Object + End Coordinate System.</font></span></p>
<p>&nbsp;</p>
<p class="whs2"><img src="pics/transformation5.png" x-maintain-ratio="TRUE" width="312px" height="350px" border="0" class="img_whs3"> &nbsp;&nbsp;</p>
<p class="whs2">&nbsp;</p>
<p class="whs2">In the picture the initial cube with the global
coordinate system is &nbsp;to
the right and the modified cube with the Local Coordinate System in the
center of it is to the left . </p>
<p class="whs2">&nbsp;</p>
<p class="whs2"><img src="image30.gif" width="431px" height="233px" border="0" class="img_whs4"></p>
<p class="whs2">&nbsp;</p>
<p class="whs2">The second algorithm &nbsp;modifies
the location of an object using Start and End LSC, however, it does not
place the object in the center of any of the two systems. &nbsp;</p>
<p class="whs2"><span style="font-weight: bold;"><B>Create a copy
</B></span>checkbox allows to keep the initial object, otherwise it will be
removed.</p>
<p class="whs2"><span style="font-size: 12pt;"><font size=3 style="font-size:12pt;"><b style="font-weight: bold;">Arguments:</b>
Name + 1 GEOM_Object + Start Coordinate System + End Coordinate System.</font></span></p>
<p class="whs2">&nbsp;</p>
<p class="whs2"><img src="pics/transformation6.png" x-maintain-ratio="TRUE" width="312px" height="385px" border="0" class="img_whs5"></p>
<p class="whs2">&nbsp;</p>
<p class="whs2">In this picture the initial cube with the global
coordinate system is above, the modified cube is below and the End Local
Coordinate System is the big one. </p>
<p class="whs2">&nbsp;</p>
<p class="whs2"><img src="image31.gif" width="326px" height="377px" border="0" class="img_whs6"></p>
<p class="whs2">&nbsp;</p>
<p class="whs2">The <span style="font-weight: bold;"><B>R</B></span><b><span
style="font-weight: bold;"><B>esult</B></span><span style="font-weight: normal;">
of this operation will be a</span> </b>&nbsp;GEOM_Object.</p>
<p class="whs2">&nbsp;</p> <p class="whs2">&nbsp;</p>
@ -113,29 +164,9 @@ else
is a shape, location of which is modified, theStartLCS is a location to is a shape, location of which is modified, theStartLCS is a location to
move the shape from, theEndLCS is a location to move the shape to.</p> move the shape from, theEndLCS is a location to move the shape to.</p>
<p class="whs2"><b style="font-weight: bold;">Arguments:</b>
Name + 1 GEOM_Object + [Starting Coordinate System] + End Coordinate System.</p>
<p class="whs2"><span style="font-weight: bold;"><B>Create a copy
</B></span>checkbox allows to keep the initial object, otherwise it will be
removed.</p>
<p class="whs2">&nbsp;</p> <p class="whs2">&nbsp;</p>
<p class="whs3"><img src="pics/transformation5.png" x-maintain-ratio="TRUE" width="312px" height="350px" border="0" class="img_whs4"> &nbsp;&nbsp;<img src="pics/transformation6.png" x-maintain-ratio="TRUE" width="312px" height="385px" border="0" class="img_whs5"></p> <p class="whs7"><span style="font-size: 12pt;"><font size=3 style="font-size:12pt;">Our </font></span><span
<p class="whs6">&nbsp;</p>
<p class="whs6"><b style="font-weight: bold;">Example:</b></p>
<p class="whs6">&nbsp;</p>
<p class="whs7"><img src="image197.jpg" width="200px" height="209px" border="0" class="img_whs8"></p>
<p class="whs6">&nbsp;</p>
<p class="whs9">&nbsp;&nbsp;<span
style="font-size: 12pt;"><font size=3 style="font-size:12pt;">Our </font></span><span
style="font-weight: bold;"><B>TUI Scripts</B></span><span style="font-size: 12pt;"><font size=3 style="font-size:12pt;"> style="font-weight: bold;"><B>TUI Scripts</B></span><span style="font-size: 12pt;"><font size=3 style="font-size:12pt;">
provide you with useful examples of the use of <a href="transformation_operations.htm#bookmark2">Transformation provide you with useful examples of the use of <a href="transformation_operations.htm#bookmark2">Transformation
Operations</a>. </font></span></p> Operations</a>. </font></span></p>

View File

@ -19,11 +19,11 @@ p.whs2 { font-size:12pt; }
p.whs3 { font-size:12pt; font-weight:bold; } p.whs3 { font-size:12pt; font-weight:bold; }
p.whs4 { font-size:12pt; font-weight:normal; } p.whs4 { font-size:12pt; font-weight:normal; }
img_whs5 { border:none; width:312px; height:346px; float:none; border-style:none; } img_whs5 { border:none; width:312px; height:346px; float:none; border-style:none; }
img_whs6 { border:none; float:none; width:315px; height:259px; border-style:none; } img_whs6 { border:none; float:none; width:315px; height:260px; border-style:none; }
img_whs7 { border:none; float:none; width:301px; height:258px; border-style:none; } img_whs7 { border:none; float:none; width:301px; height:260px; border-style:none; }
img_whs8 { border:none; width:312px; height:450px; float:none; border-style:none; } img_whs8 { border:none; width:312px; height:450px; float:none; border-style:none; }
img_whs9 { border:none; float:none; width:341px; height:446px; border-style:none; } img_whs9 { border:none; float:none; width:310px; height:405px; border-style:none; }
img_whs10 { border:none; float:none; width:369px; height:447px; border-style:none; } img_whs10 { border:none; float:none; width:337px; height:405px; border-style:none; }
p.whs11 { font-size:12pt; margin-left:40px; } p.whs11 { font-size:12pt; margin-left:40px; }
--> -->
</style><script type="text/javascript" language="JavaScript" title="WebHelpInlineScript"> </style><script type="text/javascript" language="JavaScript" title="WebHelpInlineScript">
@ -109,7 +109,7 @@ else
will be 2*PI/NbTimes</p> will be 2*PI/NbTimes</p>
<p class="whs3"><b style="font-weight: bold;">TUI <p class="whs3"><b style="font-weight: bold;">TUI
Command: </b><span style="font-style: italic; font-weight: normal;"><I>geompy.MakeMultiRotation1D(Shape, Command: </b><span style="font-style: italic; font-weight: normal;"><I>geompy.MakeMultiRotate1D(Shape,
Axis, NbTimes)</I></span></p> Axis, NbTimes)</I></span></p>
<p class="whs3"><b style="font-weight: bold;">Arguments: <p class="whs3"><b style="font-weight: bold;">Arguments:
@ -118,15 +118,17 @@ else
<p class="whs3">&nbsp;</p> <p class="whs3">&nbsp;</p>
<p class="whs4">There is a <span style="font-weight: bold;"><B>TUI <p class="whs4">There is a <span style="font-weight: bold;"><B>TUI</B></span>-only<span
Command</B></span> <span style="font-style: italic;"><I>geompy.MakeMultiRotation1D(Shape, style="font-weight: bold;"> <B></B></span>command <span style="font-style: italic;"><I>geompy.MakeMultiRotation1D(Shape,
Dir, Point, NbTimes)</I></span><span style="font-size: 12pt; font-weight: normal;"><font size=3 style="font-size:12pt;"> Dir, Point, NbTimes)</I></span> which works in the same way, but the Axis
which works in the same way, but the Axis is defined &nbsp;by is defined &nbsp;by
direction and point. </font></span></p> direction and point. </p>
<p class="whs3">&nbsp;</p> <p class="whs3">&nbsp;</p>
<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"> &nbsp;<img src="pics/multi_rotation1d2.png" x-maintain-ratio="TRUE" width="301px" height="258px" border="0" class="img_whs7"></p> <p class="whs2"><img src="pics/neo-mrot1.png" x-maintain-ratio="TRUE" width="312px" height="346px" border="0" class="img_whs5"> </p>
<p class="whs2"><img src="pics/multi_rotation1d1.png" x-maintain-ratio="TRUE" width="315px" height="260px" border="0" class="img_whs6"> &nbsp;<img src="pics/multi_rotation1d2.png" x-maintain-ratio="TRUE" width="301px" height="260px" border="0" class="img_whs7"></p>
<p class="whs2">&nbsp;</p> <p class="whs2">&nbsp;</p>
@ -140,7 +142,7 @@ else
</B></span>checkbox allows to set the direction of rotation.</p> </B></span>checkbox allows to set the direction of rotation.</p>
<p class="whs2"><b style="font-weight: bold;">T<span style="font-weight: bold;"><B>UI <p class="whs2"><b style="font-weight: bold;">T<span style="font-weight: bold;"><B>UI
Command: </B></span><span style="font-weight: normal;">g</span></b><span style="font-style: italic;"><I>eompy.MakeMultiRotation2D(Shape, Command: </B></span><span style="font-weight: normal;">g</span></b><span style="font-style: italic;"><I>eompy.MakeMultiRotate2D(Shape,
Axis, Angle, NbTimes1, Step, NbTimes2)</I></span></p> Axis, Angle, NbTimes1, Step, NbTimes2)</I></span></p>
<p class="whs2"><span style="font-style: italic;"><I><b style="font-weight: bold;">A</I></span><span <p class="whs2"><span style="font-style: italic;"><I><b style="font-weight: bold;">A</I></span><span
@ -150,10 +152,10 @@ else
<p class="whs2">&nbsp;</p> <p class="whs2">&nbsp;</p>
<p class="whs2">There is a <span style="font-weight: bold;"><B>TUI <p class="whs2">There is a <span style="font-weight: bold;"><B>TUI</B></span>-only
Command</B></span> <span style="font-style: italic;"><I>geompy.MakeMultiRotation2D(Shape, command <span style="font-style: italic;"><I>geompy.MakeMultiRotation2D(Shape,
Dir, Point, Angle, nbtimes1, Step, nbtimes2</I></span><span style="font-style: italic;"><I>)</I></span> Dir, Point, Angle, nbtimes1, Step, nbtimes2)</I></span> which works in the
which works in the same way, but the Axis is defined &nbsp;by same way, but the Axis is defined &nbsp;by
direction and point. </p> direction and point. </p>
<p class="whs2">&nbsp;</p> <p class="whs2">&nbsp;</p>
@ -162,7 +164,7 @@ else
<p class="whs2">&nbsp;&nbsp;</p> <p class="whs2">&nbsp;&nbsp;</p>
<p class="whs2">&nbsp;<img src="pics/multi_rotation2d1.png" x-maintain-ratio="TRUE" width="341px" height="446px" border="0" class="img_whs9"> &nbsp;&nbsp;&nbsp;<img src="pics/multi_rotation2d2.png" x-maintain-ratio="TRUE" width="369px" height="447px" border="0" class="img_whs10"></p> <p class="whs2">&nbsp;<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>
<p class="whs11">&nbsp;&nbsp;&nbsp;&nbsp;</p> <p class="whs11">&nbsp;&nbsp;&nbsp;&nbsp;</p>

View File

@ -19,20 +19,17 @@ p.whs2 { font-size:12pt; }
p.whs3 { font-size:12pt; font-weight:bold; } p.whs3 { font-size:12pt; font-weight:bold; }
img_whs4 { border:none; width:312px; height:381px; float:none; border-style:none; } img_whs4 { border:none; width:312px; height:381px; float:none; border-style:none; }
img_whs5 { border:none; width:301px; height:306px; float:none; border-style:none; } img_whs5 { border:none; width:301px; height:306px; float:none; border-style:none; }
ol.whs6 { list-style:disc; } img_whs6 { border:none; width:312px; height:494px; float:none; border-style:none; }
ul.whs7 { list-style:circle; } img_whs7 { border:none; width:277px; height:304px; float:none; border-style:none; }
p.whs8 { font-size:12pt; font-weight:normal; } p.whs8 { font-weight:bold; }
img_whs9 { border:none; width:312px; height:494px; float:none; border-style:none; } p.whs9 { font-size:12pt; text-indent:-40px; font-weight:bold; margin-left:80px; }
img_whs10 { border:none; width:277px; height:304px; float:none; border-style:none; }
p.whs11 { font-weight:bold; }
p.whs12 { font-size:12pt; text-indent:-40px; font-weight:bold; margin-left:80px; }
--> -->
</style><script type="text/javascript" language="JavaScript"> </style><script type="text/javascript" language="JavaScript">
<!-- <!--
if ((navigator.appName == "Netscape") && (parseInt(navigator.appVersion) == 4)) if ((navigator.appName == "Netscape") && (parseInt(navigator.appVersion) == 4))
{ {
var strNSS = "<style type='text/css'>"; var strNSS = "<style type='text/css'>";
strNSS += "p.whs12 {text-indent:1pt; }"; strNSS += "p.whs9 {text-indent:1pt; }";
strNSS +="</style>"; strNSS +="</style>";
document.write(strNSS); document.write(strNSS);
} }
@ -97,7 +94,7 @@ else
<p class="whs2"><b style="font-weight: normal;">T</b>o produce <p class="whs2"><b style="font-weight: normal;">T</b>o produce
a <span style="font-weight: bold;"><B>Multi Translation</B></span> operation a <span style="font-weight: bold;"><B>Multi Translation</B></span> operation
in the Main Menu select <span style="font-weight: bold;"><B>Operations - in the Main Menu select <span style="font-weight: bold;"><B>Operations -
&gt; Blocks - &gt; Multi Translation</B></span></p> &gt; Blocks - &gt; Multi Transformation</B></span></p>
<p class="whs2">&nbsp;</p> <p class="whs2">&nbsp;</p>
@ -143,44 +140,32 @@ else
Command:</b><i> </i></B></span><span style="font-size: 12pt; font-style: italic;"><font size=3 style="font-size:12pt;"><I>geompy. Command:</b><i> </i></B></span><span style="font-size: 12pt; font-style: italic;"><font size=3 style="font-size:12pt;"><I>geompy.
MakeMultiTransformation2D(Block, DirFaceID1U, DirFaceID2U, NbTimesU, DirFaceID1V, MakeMultiTransformation2D(Block, DirFaceID1U, DirFaceID2U, NbTimesU, DirFaceID1V,
DirFaceID2V, NbTimesV)</I></font></span><span style="font-size: 12pt;"><font size=3 style="font-size:12pt;">, where Block DirFaceID2V, NbTimesV)</I></font></span><span style="font-size: 12pt;"><font size=3 style="font-size:12pt;">, where Block
is a block to be transformed, DirFaceID1U and DirFace1V are IDs of the is a block to be transformed, DirFaceID1U and DirFace1V are IDs of the
faces, which define directions of the first transformation, DirFaceID1V faces, which define directions of the first transformation, DirFaceID1V
and DirFaceID2V are IDs of the faces which define directions of the second and DirFaceID2V are IDs of the faces which define directions of the second
transformation, NbTimesU and NbTimesV are numbers of transformations.</font></span></p> transformation, NbTimesU and NbTimesV are numbers of transformations.</font></span></p>
<p class="whs2"><b style="font-weight: bold;">Arguments: &nbsp;</b><span <p class="whs2"><b style="font-weight: bold;">Arguments: &nbsp;</b><span
style="font-size: 12pt; font-weight: normal;"><font size=3 style="font-size:12pt;">Name style="font-size: 12pt; font-weight: normal;"><font size=3 style="font-size:12pt;">Name
+ 1 hexahedral solid + </font></span></p> + 1 hexahedral solid + 2, 3 or 4 faces + 2 integers (number of blocks).</font></span></p>
<ol type="disc" class="whs6">
<ul type="circle" class="whs7">
<li class=kadov-p><p class="whs8">2
faces and 1 integer, or</p></li>
<li class=kadov-p><p class="whs8">3
or 4 faces and 2 integers </p></li>
</ul>
</ol>
<p class="whs2">&nbsp;</p> <p class="whs2">&nbsp;</p>
<p class="whs2"><img src="pics/mtransf2.png" x-maintain-ratio="TRUE" width="312px" height="494px" border="0" class="img_whs9"> &nbsp;<img src="pics/multi_transformationsn2d.png" x-maintain-ratio="TRUE" width="277px" height="304px" border="0" class="img_whs10"></p> <p class="whs2"><img src="pics/mtransf2.png" x-maintain-ratio="TRUE" width="312px" height="494px" border="0" class="img_whs6"> &nbsp;<img src="pics/multi_transformationsn2d.png" x-maintain-ratio="TRUE" width="277px" height="304px" border="0" class="img_whs7"></p>
<p class="whs2">&nbsp;</p> <p class="whs2">&nbsp;</p>
<p class="whs11">&nbsp;&nbsp;&nbsp;<span <p class="whs8">&nbsp;&nbsp;&nbsp;<span
style="font-size: 12pt; font-weight: normal;"><font size=3 style="font-size:12pt;">Our</font></span><span style="font-size: 12pt; font-weight: normal;"><font size=3 style="font-size:12pt;">Our</font></span><span
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;"> 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;">
provide you with useful examples of the use of</font></span><span style="font-size: 12pt;"> provide you with useful examples of the use of</font></span><span style="font-size: 12pt;">
<font size=3 style="font-size:12pt;"><a href="blocks_operations.htm#bookmark4">Blocks Operations</a>. </font></span></p> <font size=3 style="font-size:12pt;"><a href="blocks_operations.htm#bookmark4">Blocks Operations</a>. </font></span></p>
<p class="whs11">&nbsp;&nbsp;</p> <p class="whs8">&nbsp;&nbsp;</p>
<p>&nbsp;</p> <p>&nbsp;</p>
<p class="whs12">&nbsp;</p> <p class="whs9">&nbsp;</p>
<script type="text/javascript" language="javascript1.2"> <script type="text/javascript" language="javascript1.2">
<!-- <!--

View File

@ -119,11 +119,15 @@ else
</b><span style="font-style: italic;"><I>geompy.MakeMultiTranslation1D(Shape, </b><span style="font-style: italic;"><I>geompy.MakeMultiTranslation1D(Shape,
Dir, Step, NbTimes)</I></span></p> Dir, Step, NbTimes)</I></span></p>
<p class="whs2"><b style="font-weight: bold;">A<span style="font-weight: bold;"><B>rguments: <p class="whs2"><b>A<span style="font-weight: bold;"><B>rguments:
</B></span></b>Name + 1 shape + 1 vector (for direction) + 1 step value + </B></span></b>Name + 1 shape + 1 vector (for direction) + 1 step value +
1 value (repetition).</p> 1 value (repetition).</p>
<p class="whs2">&nbsp;<img src="pics/mtrans1.png" x-maintain-ratio="TRUE" width="312px" height="398px" border="0" class="img_whs3"> &nbsp;<img src="pics/multi_translation_initialsn.png" x-maintain-ratio="TRUE" height="203px" width="282px" border="0" class="img_whs4"> &nbsp;<img src="pics/multi_translation1dsn.png" x-maintain-ratio="TRUE" width="291px" height="202px" border="0" class="img_whs5"></p> <p class="whs2">&nbsp;</p>
<p class="whs2">&nbsp;<img src="pics/mtrans1.png" x-maintain-ratio="TRUE" width="312px" height="398px" border="0" class="img_whs3"> &nbsp;</p>
<p class="whs2"><img src="pics/multi_translation_initialsn.png" x-maintain-ratio="TRUE" height="203px" width="282px" border="0" class="img_whs4"> &nbsp;<img src="pics/multi_translation1dsn.png" x-maintain-ratio="TRUE" width="291px" height="202px" border="0" class="img_whs5"></p>
<p class="whs2">&nbsp;</p> <p class="whs2">&nbsp;</p>
@ -134,20 +138,29 @@ else
and a <span style="font-weight: bold;"><B>Number of Times</B></span> the shape and a <span style="font-weight: bold;"><B>Number of Times</B></span> the shape
must be moved along each axis.</p> must be moved along each axis.</p>
<p class="whs2"><b style="font-weight: bold;">TUI Command: <p class="whs2">&nbsp;</p>
<span style="font-style: italic; font-weight: normal;"><I>g</I></span></b><span
style="font-style: italic;"><I>eompy.MakeMultiTranslation2D(Shape, Dir1,
Step1, NbTimes1, Dir2, Step2, NbTimes2)</I></span>, where Shape is a shape
to be translated, Dir1 is the first direction of translation, Step1 of
the first translation, NbTimes1 is a number of translations to be done
along, Dir2 is the second direction of translation, Step2 of the second
translation, NbTimes2 is a number of translations to be done along Dir2.</p>
<p class="whs2"><b style="font-weight: bold;">A<span style="font-weight: bold;"><B>rguments: <p class="whs2"><b>TUI Command: <span style="font-style: italic; font-weight: normal;"><I>g</I></span></b><span
style="font-style: italic;"><I>eompy.MakeMultiTranslation2D(Shape, Dir1,
Step1, NbTimes1, Dir2, Step2, NbTimes2)</I></span>, where <span style="font-style: italic;"><I>Shape</I></span>
is a shape to be translated, <span style="font-style: italic;"><I>Dir1</I></span>
is the first direction of translation, <span style="font-style: italic;"><I>Step1</I></span>
of the first translation, <span style="font-style: italic;"><I>NbTimes1</I></span>
is a number of translations to be done along <span style="font-style: italic;"><I>Dir1</I></span>,
<span style="font-style: italic;"><I>Dir2</I></span> is the second direction
of translation, <span style="font-style: italic;"><I>Step2</I></span> of the
second translation, <span style="font-style: italic;"><I>NbTimes2</I></span>
is a number of translations to be done along <span style="font-style: italic;"><I>Dir2</I></span>.</p>
<p class="whs2"><b>A<span style="font-weight: bold;"><B>rguments:
</B></span></b>Name + 1 shape + 2 vectors defining the direction + 2 step </B></span></b>Name + 1 shape + 2 vectors defining the direction + 2 step
values + 2 values (repetitions).</p> values + 2 values (repetitions).</p>
<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"> &nbsp;<img src="pics/multi_translation2dsn.png" x-maintain-ratio="TRUE" width="288px" height="209px" border="0" class="img_whs8"></p> <p class="whs2">&nbsp;</p>
<p class="whs2"><img src="pics/mtrans2.png" x-maintain-ratio="TRUE" width="312px" height="509px" border="0" class="img_whs6"> </p>
<p class="whs2"><img src="pics/multi_translation_initialsn.png" x-maintain-ratio="TRUE" width="292px" height="209px" border="0" class="img_whs7"> &nbsp;<img src="pics/multi_translation2dsn.png" x-maintain-ratio="TRUE" width="288px" height="209px" border="0" class="img_whs8"></p>
<p class="whs9">&nbsp;&nbsp;</p> <p class="whs9">&nbsp;&nbsp;</p>

View File

@ -168,8 +168,10 @@ else
<p class="whs5">&nbsp;</p> <p class="whs5">&nbsp;</p>
<p class="whs5"><b style="font-weight: bold;">Result :</b> <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
GEOM_Object (face).</p> 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
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
style="font-size: 12pt;"><font size=3 style="font-size:12pt;"> (face).</font></span></p>
<p class="whs5">&nbsp;</p> <p class="whs5">&nbsp;</p>
@ -177,16 +179,16 @@ else
<ul type="disc" class="whs3"> <ul type="disc" class="whs3">
<li class=kadov-p><p class="whs6"><b style="font-weight: normal;">geompy.MakeQuadFaceVertices(V1, <li class=kadov-p><p class="whs6"><b style="font-weight: normal;">geompy.MakeQuad4Vertices(V1,
V2, V3, V4), <span style="font-style: normal;">where V1, V2, V3, V4 are V2, V3, V4), <span style="font-style: normal;">where V1, V2, V3, V4 are
four vertices from which a face is constructed. Edges are created automatically.</span></b></p></li> four vertices from which a face is constructed. Edges are created automatically.</span></b></p></li>
<li class=kadov-p><p class="whs5"><span style="font-style: italic;"><I>geompy.MakeQuadFaceEdges(E1, <li class=kadov-p><p class="whs5"><span style="font-style: italic;"><I>geompy.MakeQuad2Edges(E1,
E2)</I></span>, where E1, E2 are edges from which the face is constructed, E2)</I></span>, where E1, E2 are edges from which the face is constructed,
two other edges are created automatically.</p></li> two other edges are created automatically.</p></li>
<li class=kadov-p><p class="whs5"><b style="font-weight: normal;"><span <li class=kadov-p><p class="whs5"><b style="font-weight: normal;"><span
style="font-style: italic;"><I>g</b>eompy.MakeQuadFace(E1, E2, E3, E4)</I></span>, style="font-style: italic;"><I>g</b>eompy.MakeQuad(E1, E2, E3, E4)</I></span>,
where E1, E2, E3, E4 are four edges from which the face is constructed.</p></li> where E1, E2, E3, E4 are four edges from which the face is constructed.</p></li>
</ul> </ul>
@ -249,22 +251,24 @@ else
<p class="whs5">&nbsp;</p> <p class="whs5">&nbsp;</p>
<p class="whs5"><b style="font-weight: bold;">Result :</b> <p class="whs5"><b><span style="font-weight: normal;">The</span>
GEOM_Object.</p> Result<span style="font-weight: normal;"> of the operation will be a</span></b><b>
GEOM_Object</b> (solid).</p>
<p class="whs5">&nbsp;</p> <p>&nbsp;</p>
<p class="whs5"><b style="font-weight: bold;">TUI Command:</b></p> <p class="whs5"><b style="font-weight: bold;">TUI Command:</b></p>
<ul type="disc" class="whs3"> <ul type="disc" class="whs3">
<li class=kadov-p><p class="whs5"><span style="font-style: italic;"><I>geompy.MakeHexaSolid(F1, <li class=kadov-p><p class="whs5"><span style="font-style: italic;"><I>geompy.MakeHexa2Faces(F1,
F2)</I></span><span style="font-style: italic;"><I>, where F1 and F2 are faces
from which the hexahedron is constructed, other four faces are created
automatically.</I></span></p></li>
<li class=kadov-p><p class="whs5"><span style="font-style: italic;"><I>geompy.MakeHexa(F1,
F2, F3, F4, F5, F6)</I></span>, where F1 F6 are six faces from which the F2, F3, F4, F5, F6)</I></span>, where F1 F6 are six faces from which the
hexahedron is constructed.</p></li> hexahedron is constructed.</p></li>
<li class=kadov-p><p class="whs5"><span style="font-style: italic;"><I>geompy.MakeHexaSolidTwoFaces(F1,
F2)</I></span>, where F1 and F2 are faces from which the hexahedron is constructed,
other four faces are created automatically.</p></li>
</ul> </ul>
<p class="whs5">&nbsp;</p> <p class="whs5">&nbsp;</p>

View File

@ -17,12 +17,13 @@ if (navigator.appName !="Netscape")
img_whs1 { width:20px; height:20px; border-style:none; } img_whs1 { width:20px; height:20px; border-style:none; }
p.whs2 { font-size:12pt; } p.whs2 { font-size:12pt; }
p.whs3 { font-size:12pt; font-weight:normal; } p.whs3 { font-size:12pt; font-weight:normal; }
p.whs4 { font-size:12pt; font-weight:bold; } p.whs4 { font-weight:bold; font-size:14pt; }
img_whs5 { border:none; width:312px; height:483px; float:none; border-style:none; } p.whs5 { font-size:12pt; font-weight:bold; }
img_whs6 { border:none; width:448px; height:302px; float:none; border-style:none; } img_whs6 { border:none; width:312px; height:483px; float:none; border-style:none; }
p.whs7 { font-size:12pt; margin-left:40px; } img_whs7 { border:none; width:448px; height:302px; float:none; border-style:none; }
img_whs8 { border:none; float:none; width:297px; height:245px; border-style:none; } p.whs8 { font-size:12pt; margin-left:40px; }
img_whs9 { border:none; float:none; width:273px; height:244px; border-style:none; } img_whs9 { border:none; float:none; width:297px; height:245px; border-style:none; }
img_whs10 { border:none; float:none; width:273px; height:245px; border-style:none; }
--> -->
</style><script type="text/javascript" language="JavaScript" title="WebHelpInlineScript"> </style><script type="text/javascript" language="JavaScript" title="WebHelpInlineScript">
<!-- <!--
@ -98,7 +99,7 @@ else
<p class="whs4"><b><span style="font-weight: bold;"><B>Intersection <p class="whs4"><b><span style="font-weight: bold;"><B>Intersection
of two shapes.</B></span></b></p> of two shapes.</B></span></b></p>
<p class="whs4">&nbsp;</p> <p class="whs5">&nbsp;</p>
<p class="whs2"><b style="font-weight: bold;">TUI Command:</b><i> <p class="whs2"><b style="font-weight: bold;">TUI Command:</b><i>
</i><span style="font-style: italic;"><I>geompy.MakePartition(ListOfShapes, </i><span style="font-style: italic;"><I>geompy.MakePartition(ListOfShapes,
@ -113,23 +114,25 @@ else
RemoveWebs is True.</p> RemoveWebs is True.</p>
<p class="whs2"><span style="font-size: 12pt;"><font size=3 style="font-size:12pt;"><b style="font-weight: bold;">Arguments:</b> <p class="whs2"><span style="font-size: 12pt;"><font size=3 style="font-size:12pt;"><b style="font-weight: bold;">Arguments:</b>
</font></span><span style="font-size: 12pt;"><font size=3 style="font-size:12pt;">Name + 2 shapes (first shape will </font></span><span style="font-size: 12pt;"><font size=3 style="font-size:12pt;">Name + 2 shapes (the first shape
be intersected by the second shape) + reconstruction limit.</font></span></p> will be intersected by the second shape) + reconstruction limit.</font></span></p>
<p class="whs2">&nbsp;</p> <p class="whs2">&nbsp;</p>
<p class="whs2"><img src="pics/partition1.png" x-maintain-ratio="TRUE" width="312px" height="483px" border="0" class="img_whs5"></p> <p class="whs2"><img src="pics/partition1.png" x-maintain-ratio="TRUE" width="312px" height="483px" border="0" class="img_whs6"></p>
<p class="whs2">&nbsp;</p> <p class="whs2">&nbsp;</p>
<p class="whs2"><img src="pics/neo-materials.png" x-maintain-ratio="TRUE" width="448px" height="302px" border="0" class="img_whs6"></p> <p class="whs2"><img src="pics/neo-materials.png" x-maintain-ratio="TRUE" width="448px" height="302px" border="0" class="img_whs7"></p>
<p class="whs2">&nbsp;</p> <p class="whs2">&nbsp;</p>
<p class="whs2">&nbsp;</p> <p class="whs2">&nbsp;</p>
<p class="whs2">Intersection of a <span style="font-weight: bold;"><B>Shape</B></span> <p class="whs4">Intersection of a Shape
and a <span style="font-weight: bold;"><B>Plane.</B></span></p> and a Plane.</p>
<p class="whs2">&nbsp;</p>
<p class="whs2"><span style="font-weight: bold;"><B>TUI Command</B></span> <p class="whs2"><span style="font-weight: bold;"><B>TUI Command</B></span>
&nbsp;<span style="font-style: italic;"><I>geompy.MakeHalfPartition(Shape, &nbsp;<span style="font-style: italic;"><I>geompy.MakeHalfPartition(Shape,
@ -142,19 +145,19 @@ else
<p class="whs2">&nbsp;</p> <p class="whs2">&nbsp;</p>
<p class="whs2"><img src="pics/partition2.png" x-maintain-ratio="TRUE" width="312px" height="483px" border="0" class="img_whs5"></p> <p class="whs2"><img src="pics/partition2.png" x-maintain-ratio="TRUE" width="312px" height="483px" border="0" class="img_whs6"></p>
<p class="whs7">&nbsp;</p> <p class="whs8">&nbsp;</p>
<p class="whs7">&nbsp;</p> <p class="whs8">&nbsp;</p>
<p class="whs2"><b style="font-weight: bold;">Example:</b></p> <p class="whs2"><b style="font-weight: bold;">Example:</b></p>
<p class="whs2">&nbsp;</p> <p class="whs2">&nbsp;</p>
<p class="whs7"><img src="pics/partitionsn1.png" x-maintain-ratio="TRUE" width="297px" height="245px" border="0" class="img_whs8"> &nbsp;<img src="pics/partitionsn2.png" x-maintain-ratio="TRUE" width="273px" height="244px" border="0" class="img_whs9"></p> <p class="whs8"><img src="pics/partitionsn1.png" x-maintain-ratio="TRUE" width="297px" height="245px" border="0" class="img_whs9"> &nbsp;<img src="pics/partitionsn2.png" x-maintain-ratio="TRUE" width="273px" height="245px" border="0" class="img_whs10"></p>
<p class="whs7">&nbsp;</p> <p class="whs8">&nbsp;</p>
<p class="whs2">Our TUI Scripts provide you with useful examples <p class="whs2">Our TUI Scripts provide you with useful examples
of the use of <a href="basic_operations.htm#bookmark">Basic Operations</a>. of the use of <a href="basic_operations.htm#bookmark">Basic Operations</a>.

View File

@ -18,8 +18,8 @@ img_whs1 { width:20px; height:20px; border-style:none; }
p.whs2 { font-size:12pt; } p.whs2 { font-size:12pt; }
img_whs3 { border:none; width:312px; height:324px; float:none; border-style:none; } img_whs3 { border:none; width:312px; height:324px; float:none; border-style:none; }
p.whs4 { font-size:12pt; margin-left:40px; } p.whs4 { font-size:12pt; margin-left:40px; }
img_whs5 { border:none; width:258px; height:201px; float:none; border-style:none; } img_whs5 { border:none; width:260px; height:200px; float:none; border-style:none; }
img_whs6 { border:none; float:none; width:266px; height:201px; border-style:none; } img_whs6 { border:none; float:none; width:260px; height:200px; border-style:none; }
--> -->
</style><script type="text/javascript" language="JavaScript" title="WebHelpInlineScript"> </style><script type="text/javascript" language="JavaScript" title="WebHelpInlineScript">
<!-- <!--
@ -116,7 +116,7 @@ else
<p class="whs2">&nbsp;</p> <p class="whs2">&nbsp;</p>
<p class="whs4"><img src="pics/pipe_wire_edgesn.png" x-maintain-ratio="TRUE" width="258px" height="201px" border="0" class="img_whs5"> &nbsp;<img src="pics/pipesn.png" x-maintain-ratio="TRUE" width="266px" height="201px" border="0" class="img_whs6"></p> <p class="whs4"><img src="pics/pipe_wire_edgesn.png" x-maintain-ratio="TRUE" width="260px" height="200px" border="0" class="img_whs5"> &nbsp;<img src="pics/pipesn.png" x-maintain-ratio="TRUE" width="260px" height="200px" border="0" class="img_whs6"></p>
<p class="whs4">&nbsp;</p> <p class="whs4">&nbsp;</p>

View File

@ -130,8 +130,8 @@ else
Point2, Point3, TrimSize)</I></span> </p> Point2, Point3, TrimSize)</I></span> </p>
<p class="whs4"><b style="font-weight: bold;">Arguments: <p class="whs4"><b style="font-weight: bold;">Arguments:
</b><span style="font-weight: normal;">Name + 1 vertex + 3 points (for </b><span style="font-weight: normal;">Name + 3 points + 1 value (to define
the direction) + 1 value (to define the size of the plane).</span></p> the size of the plane).</span></p>
<p class="whs4">&nbsp;</p> <p class="whs4">&nbsp;</p>
@ -146,8 +146,10 @@ else
<p class="whs2"><span style="font-weight: bold;"><B><b style="font-weight: bold;">TUI <p class="whs2"><span style="font-weight: bold;"><B><b style="font-weight: bold;">TUI
Command:</b> </B></span>geompy.MakePlaneFace(Face, TrimSize) </p> Command:</b> </B></span>geompy.MakePlaneFace(Face, TrimSize) </p>
<p class="whs2"><span><font size=3 style="font-size:12pt;"><b style="font-weight: bold;">Arguments: <p class="whs2"><b style="font-weight: bold;">Arguments: </b>Name
</b></font></span>Name + 1 selection + 1 value (to define the size of the plane).</p> + 1 face + 1 value (to define the size of the plane).</p>
<p class="whs2">&nbsp;</p>
<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> <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>

View File

@ -17,8 +17,8 @@ if (navigator.appName !="Netscape")
img_whs1 { width:20px; height:20px; border-style:none; } img_whs1 { width:20px; height:20px; border-style:none; }
p.whs2 { font-size:12pt; } p.whs2 { font-size:12pt; }
img_whs3 { border:none; width:312px; height:332px; float:none; border-style:none; } img_whs3 { border:none; width:312px; height:332px; float:none; border-style:none; }
p.whs4 { font-size:12pt; margin-left:120px; } img_whs4 { border:none; width:312px; height:473px; float:none; border-style:none; }
img_whs5 { border:none; width:312px; height:473px; float:none; border-style:none; } p.whs5 { font-size:12pt; margin-left:120px; }
p.whs6 { font-size:12pt; margin-left:0px; } p.whs6 { font-size:12pt; margin-left:0px; }
p.whs7 { font-size:12pt; font-style:italic; margin-left:0px; } p.whs7 { font-size:12pt; font-style:italic; margin-left:0px; }
img_whs8 { border:none; width:312px; height:421px; float:none; border-style:none; } img_whs8 { border:none; width:312px; height:421px; float:none; border-style:none; }
@ -112,8 +112,7 @@ else
<p class="whs2">&nbsp;</p> <p class="whs2">&nbsp;</p>
<p class="whs2"><b style="font-weight: bold;"><span style="font-weight: normal;">Firstly, <p class="whs2"><b style="font-weight: bold;"><span style="font-weight: normal;">Firstly,
we can define a point by </span><span style="font-weight: normal;">and 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
setting its X, Y and Z </span><span style="font-weight: bold;"><B>C</B></span></b><b><span
style="font-weight: bold;"><B>oordinates</B></span><span style="font-weight: normal;">.</span> style="font-weight: bold;"><B>oordinates</B></span><span style="font-weight: normal;">.</span>
</b></p> </b></p>
@ -137,50 +136,51 @@ else
the coordinates of the old one. </p> the coordinates of the old one. </p>
<p class="whs2"><b style="font-weight: bold;">TUI Command :</b> <p class="whs2"><b style="font-weight: bold;">TUI Command :</b>
&nbsp;&nbsp;<span style="font-style: italic;"><I>g</I></span><span &nbsp;&nbsp;<span style="font-style: italic;"><I>geompy.MakeVertexWithRef(Reference,
style="margin-left: 120px;">eompy.MakeVertexWithRef(Reference, X, Y, Z)</span></p> X, Y, Z).</I></span></p>
<p class="whs2"><span style="margin-left: 120px;"><b style="font-weight: bold;">A</span>rguments: <p class="whs2"><b style="font-weight: bold;">Arguments: </b>Name
</b>Name + 1 reference point + 3 coordinates defining the position of + 1 reference point + 3 coordinates defining the position of this point
this point regarding the reference one</p> regarding the reference one.</p>
<p class="whs4">&nbsp;</p> <p class="whs2">&nbsp;</p>
<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> <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>
<p class="whs4">&nbsp;</p> <p class="whs5">&nbsp;</p>
<p class="whs6">Finally, we can define a <p class="whs6">Finally, we can define a
point by an <span style="font-weight: bold;"><B>Edge</B></span> and a <span style="font-weight: bold;"><B>Parameter</B></span> point by an <span style="font-weight: bold;"><B>Edge</B></span> and a <span style="font-weight: bold;"><B>Parameter</B></span>
&nbsp;indicating &nbsp;indicating
its position on the Edge. For example, 0.5 means that the point is located its position on the Edge. For example, 0.5 means that the point is located
in the middle of the edge. </p> in the middle of the edge.<span style="font-style: italic;"> <I></I></span></p>
<p class="whs7"><b style="font-weight: bold; font-style: normal;">TUI <p class="whs7"><span style="font-style: italic;"><I><b style="font-weight: bold; font-style: normal;">TUI
Command :</b> &nbsp;&nbsp;geompy.MakeVertexOnCurve(Edge, Command :</b> &nbsp;&nbsp;geompy.MakeVertexOnCurve(Edge,
Parameter) </p> Parameter).</I></span></p>
<p class="whs2"><b style="font-weight: bold;">Arguments:<span> <p class="whs2"><b style="font-weight: bold;">Arguments: N</b>ame
N</b>ame + 1 edge &nbsp;+ + 1 edge &nbsp;+
1 Parameter defining the position of the point on the given edge.</span></p> 1 Parameter defining the position of the point on the given edge.</p>
<p class="whs2">&nbsp;</p> <p class="whs2">&nbsp;</p>
<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> <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>
<p class="whs2">&nbsp;</p> <p class="whs2">&nbsp;</p>
<p class="whs9"><span style="font-size: 12pt; color: #000000;"><font size=3 color=black style="font-size:12.000000pt;"><b <p class="whs9"><span style="font-style: italic;"><I><span
style="font-weight: bold;"><b style="font-weight: bold;">E</b>xample:</b></font></span></p> style="font-size: 12pt; color: #000000;"><font size=3 color=black style="font-size:12.000000pt;"><b style="font-weight: bold;"><b
style="font-weight: bold;">E</b>xample:</b></font></span></I></span></p>
<p class="whs10">&nbsp;</p> <p class="whs10">&nbsp;</p>
<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> <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>
<p class="whs12">&nbsp;</p> <p class="whs12">&nbsp;</p>
<p class="whs2">Our <span style="font-weight: bold;"><B>TUI Scripts</B></span> <p class="whs2">Our <span style="font-weight: bold;"><B>TUI Scripts</B></span>
provide you with useful examples of creation of <a href="basic_geometrical_objects.htm#bookmark">Basic provide you with useful examples of creation of <a href="basic_geometrical_objects.htm#bookmark" style="font-style: normal;">Basic
Geometric Objects</a>. </p> Geometric Objects</a>. </p>
<script type="text/javascript" language="javascript1.2"> <script type="text/javascript" language="javascript1.2">

View File

@ -105,7 +105,7 @@ else
<p>&nbsp;</p> <p>&nbsp;</p>
<p># add objects in study</p> <p># add objects in the study</p>
<p class="whs1">id_box1 = geompy.addToStudy(box1,&quot;Box1&quot;)</p> <p class="whs1">id_box1 = geompy.addToStudy(box1,&quot;Box1&quot;)</p>
@ -115,7 +115,7 @@ else
<p>&nbsp;</p> <p>&nbsp;</p>
<p># display boxes</p> <p># display the boxes</p>
<p class="whs1">gg.createAndDisplayGO(id_box1)</p> <p class="whs1">gg.createAndDisplayGO(id_box1)</p>
@ -142,7 +142,7 @@ else
<p>&nbsp;</p> <p>&nbsp;</p>
<p># create vertex and vector</p> <p># create a vertex and a vector</p>
<p class="whs1">p1 = geompy.MakeVertex(35, <p class="whs1">p1 = geompy.MakeVertex(35,
35, 0)</p> 35, 0)</p>
@ -165,7 +165,7 @@ else
<p class="whs1">&nbsp;</p> <p class="whs1">&nbsp;</p>
<p># add objects in study</p> <p># add objects in the study</p>
<p class="whs1">id_cone1 = geompy.addToStudy(cone1,&quot;Cone1&quot;)</p> <p class="whs1">id_cone1 = geompy.addToStudy(cone1,&quot;Cone1&quot;)</p>
@ -196,7 +196,7 @@ else
<p>&nbsp;</p> <p>&nbsp;</p>
<p># create vertex</p> <p># create a vertex</p>
<p class="whs1">p = geompy.MakeVertex(55, <p class="whs1">p = geompy.MakeVertex(55,
45, 25)</p> 45, 25)</p>
@ -221,7 +221,7 @@ else
<p>&nbsp;</p> <p>&nbsp;</p>
<p># add objects in study</p> <p># add objects in the study</p>
<p class="whs1">id_sphere1 = geompy.addToStudy(sphere1,&quot;Sphere1&quot;)</p> <p class="whs1">id_sphere1 = geompy.addToStudy(sphere1,&quot;Sphere1&quot;)</p>
@ -258,7 +258,7 @@ else
<p>&nbsp;</p> <p>&nbsp;</p>
<p># create vertex and vector</p> <p># create a vertex and a vector</p>
<p class="whs1">p1 = geompy.MakeVertex(35, <p class="whs1">p1 = geompy.MakeVertex(35,
40, 45)</p> 40, 45)</p>
@ -281,7 +281,7 @@ else
<p>&nbsp;</p> <p>&nbsp;</p>
<p># add objects in study</p> <p># add objects in the study</p>
<p class="whs1">id_torus1 = geompy.addToStudy(torus1,&quot;Torus1&quot;)</p> <p class="whs1">id_torus1 = geompy.addToStudy(torus1,&quot;Torus1&quot;)</p>
@ -310,7 +310,7 @@ else
<p>&nbsp;</p> <p>&nbsp;</p>
<p># create vertex and vector</p> <p># create a vertex and a vector</p>
<p class="whs1">p1 = geompy.MakeVertex(35, <p class="whs1">p1 = geompy.MakeVertex(35,
35, 0)</p> 35, 0)</p>
@ -333,7 +333,7 @@ else
<p>&nbsp;</p> <p>&nbsp;</p>
<p># add objects in study</p> <p># add objects in the study</p>
<p class="whs1">id_cone1 = geompy.addToStudy(cone1,&quot;Cone1&quot;)</p> <p class="whs1">id_cone1 = geompy.addToStudy(cone1,&quot;Cone1&quot;)</p>

View File

@ -83,7 +83,7 @@ else
<p>&nbsp;</p> <p>&nbsp;</p>
<p># create vertices, edge, arc, wire, face and prism</p> <p># create vertices, an edge, an arc, a wire, a face and a prism</p>
<p class="whs1">p1 = geompy.MakeVertex(0,0,0)</p> <p class="whs1">p1 = geompy.MakeVertex(0,0,0)</p>
@ -106,7 +106,7 @@ else
<p>&nbsp;</p> <p>&nbsp;</p>
<p># check shape at the beginning</p> <p># check the shape at the beginning</p>
<p class="whs1">print &quot;Before <p class="whs1">print &quot;Before
ProcessShape:&quot;</p> ProcessShape:&quot;</p>
@ -125,7 +125,7 @@ else
<p class="whs1">&nbsp;</p> <p class="whs1">&nbsp;</p>
<p># process Shape</p> <p># process the Shape</p>
<p class="whs1">Operators = [&quot;FixShape&quot;]</p> <p class="whs1">Operators = [&quot;FixShape&quot;]</p>
@ -138,7 +138,7 @@ else
<p>&nbsp;</p> <p>&nbsp;</p>
<p># check shape at the end</p> <p># check the shape at the end</p>
<p class="whs1">print &quot;After <p class="whs1">print &quot;After
ProcessShape:&quot;</p> ProcessShape:&quot;</p>
@ -160,7 +160,7 @@ else
<p>&nbsp;</p> <p>&nbsp;</p>
<p># add in study and display</p> <p># add in the study and display</p>
<p class="whs1">Id_Shape = geompy.addToStudy(theShape, <p class="whs1">Id_Shape = geompy.addToStudy(theShape,
&quot;Invalid Shape&quot;)</p> &quot;Invalid Shape&quot;)</p>
@ -189,14 +189,14 @@ else
<p>&nbsp;</p> <p>&nbsp;</p>
<p># create box</p> <p># create a box</p>
<p class="whs1">box = geompy.MakeBoxDXDYDZ(200, <p class="whs1">box = geompy.MakeBoxDXDYDZ(200,
200, 200)</p> 200, 200)</p>
<p>&nbsp;</p> <p>&nbsp;</p>
<p># IDList for suppress faces</p> <p># The list of IDs (IDList) for suppress faces</p>
<p class="whs1">sup_faces = []</p> <p class="whs1">sup_faces = []</p>
@ -205,7 +205,7 @@ else
<p>&nbsp;</p> <p>&nbsp;</p>
<p># get sub-shape indexes</p> <p># get indices of the sub-shape </p>
<p class="whs1">f1_id = geompy.GetSubShapeID(box, <p class="whs1">f1_id = geompy.GetSubShapeID(box,
sup_faces[3])</p> sup_faces[3])</p>
@ -219,7 +219,7 @@ else
<p>&nbsp;</p> <p>&nbsp;</p>
<p># add objects in study</p> <p># add objects in the study</p>
<p class="whs1">id_box = geompy.addToStudy(box, <p class="whs1">id_box = geompy.addToStudy(box,
&quot;Box&quot;)</p> &quot;Box&quot;)</p>
@ -229,7 +229,7 @@ else
<p>&nbsp;</p> <p>&nbsp;</p>
<p># display results</p> <p># display the results</p>
<p class="whs1">gg.createAndDisplayGO(id_box)</p> <p class="whs1">gg.createAndDisplayGO(id_box)</p>
@ -281,14 +281,14 @@ else
<p>&nbsp;&nbsp;</p> <p>&nbsp;&nbsp;</p>
<p># create arc</p> <p># create an arc</p>
<p class="whs1">arc = geompy.MakeArc(py1, <p class="whs1">arc = geompy.MakeArc(py1,
pz, px)</p> pz, px)</p>
<p>&nbsp;</p> <p>&nbsp;</p>
<p># create wire</p> <p># create a wire</p>
<p class="whs1">wire = geompy.MakeWire([vxy, <p class="whs1">wire = geompy.MakeWire([vxy,
arc])</p> arc])</p>
@ -302,7 +302,7 @@ else
<p>&nbsp;</p> <p>&nbsp;</p>
<p># add objects in study</p> <p># add objects in the study</p>
<p class="whs1">id_wire = geompy.addToStudy(wire, <p class="whs1">id_wire = geompy.addToStudy(wire,
&quot;Wire&quot;)</p> &quot;Wire&quot;)</p>
@ -312,7 +312,7 @@ else
<p>&nbsp;</p> <p>&nbsp;</p>
<p># display results</p> <p># display the results</p>
<p class="whs1">gg.createAndDisplayGO(id_wire)</p> <p class="whs1">gg.createAndDisplayGO(id_wire)</p>
@ -331,7 +331,7 @@ else
<p>&nbsp;</p> <p>&nbsp;</p>
<p># create vertex and vector</p> <p># create a vertex and a vector</p>
<p class="whs1">p1 = geompy.MakeVertex(55, <p class="whs1">p1 = geompy.MakeVertex(55,
65, 50)</p> 65, 50)</p>
@ -344,7 +344,7 @@ else
<p>&nbsp;</p> <p>&nbsp;</p>
<p># create cylinder</p> <p># create a cylinder</p>
<p class="whs1">height = 100</p> <p class="whs1">height = 100</p>
@ -355,14 +355,14 @@ else
<p>&nbsp;</p> <p>&nbsp;</p>
<p># create box</p> <p># create a box</p>
<p class="whs1">box = geompy.MakeBoxDXDYDZ(100, <p class="whs1">box = geompy.MakeBoxDXDYDZ(100,
100, 100)</p> 100, 100)</p>
<p>&nbsp;</p> <p>&nbsp;</p>
<p># make cut</p> <p># make a cut</p>
<p class="whs1">cut = geompy.MakeCut(box, <p class="whs1">cut = geompy.MakeCut(box,
cylinder)</p> cylinder)</p>
@ -376,7 +376,7 @@ else
<p>&nbsp;</p> <p>&nbsp;</p>
<p># add objects in study</p> <p># add objects in the study</p>
<p class="whs1">id_cut = geompy.addToStudy(cut, <p class="whs1">id_cut = geompy.addToStudy(cut,
&quot;Cut&quot;)</p> &quot;Cut&quot;)</p>
@ -386,7 +386,7 @@ else
<p>&nbsp;</p> <p>&nbsp;</p>
<p># display results</p> <p># display the results</p>
<p class="whs1">gg.createAndDisplayGO(id_cut)</p> <p class="whs1">gg.createAndDisplayGO(id_cut)</p>
@ -409,7 +409,7 @@ else
<p>&nbsp;</p> <p>&nbsp;</p>
<p># create vertex and vector</p> <p># create a vertex and a vector</p>
<p class="whs1">p1 = geompy.MakeVertex(35, <p class="whs1">p1 = geompy.MakeVertex(35,
35, 0)</p> 35, 0)</p>
@ -422,7 +422,7 @@ else
<p>&nbsp;</p> <p>&nbsp;</p>
<p># create cylinder</p> <p># create a cylinder</p>
<p class="whs1">height = 20</p> <p class="whs1">height = 20</p>
@ -433,14 +433,14 @@ else
<p>&nbsp;</p> <p>&nbsp;</p>
<p># create cone</p> <p># create a cone</p>
<p class="whs1">cone = geompy.MakeCone(p1, <p class="whs1">cone = geompy.MakeCone(p1,
v, 70, 0, 80)</p> v, 70, 0, 80)</p>
<p>&nbsp;</p> <p>&nbsp;</p>
<p># make cut</p> <p># make a cut</p>
<p class="whs1">cut = geompy.MakeCut(cone, <p class="whs1">cut = geompy.MakeCut(cone,
cylinder)</p> cylinder)</p>
@ -485,7 +485,7 @@ else
<p>&nbsp;</p> <p>&nbsp;</p>
<p># add objects in study</p> <p># add objects in the study</p>
<p class="whs1">id_cut = geompy.addToStudy(cut, <p class="whs1">id_cut = geompy.addToStudy(cut,
&quot;Cut&quot;)</p> &quot;Cut&quot;)</p>
@ -498,7 +498,7 @@ else
<p>&nbsp;</p> <p>&nbsp;</p>
<p># display results</p> <p># display the results</p>
<p class="whs1">gg.createAndDisplayGO(id_cut)</p> <p class="whs1">gg.createAndDisplayGO(id_cut)</p>
@ -578,7 +578,7 @@ else
<p>&nbsp;</p> <p>&nbsp;</p>
<p># add objects in study</p> <p># add objects in the study</p>
<p class="whs1">id_face = geompy.addToStudy(face, <p class="whs1">id_face = geompy.addToStudy(face,
&quot;Face&quot;)</p> &quot;Face&quot;)</p>
@ -591,7 +591,7 @@ else
<p>&nbsp;</p> <p>&nbsp;</p>
<p># display results</p> <p># display the results</p>
<p class="whs1">gg.createAndDisplayGO(id_face)</p> <p class="whs1">gg.createAndDisplayGO(id_face)</p>
@ -610,94 +610,76 @@ else
<h3><a name=bookmark6>Glue Faces</a></h3> <h3><a name=bookmark6>Glue Faces</a></h3>
<p class="whs1">import geompy</p> <p class="whs1"><span style="font-family: 'Lucida Console', monospace;">import
geompy</span></p>
<p class="whs1">import salome</p> <p class="whs1">import salome</p>
<p class="whs1">import math</p> <p class="whs1">&nbsp;</p>
<p class="whs1">gg = salome.ImportComponentGUI(&quot;GEOM&quot;)</p> <p class="whs1">gg = salome.ImportComponentGUI(&quot;GEOM&quot;)</p>
<p class="whs1">&nbsp;</p> <p class="whs1">&nbsp;</p>
<p class="whs2"># create base points</p> <p class="whs2"># create boxes</p>
<p class="whs1">px = geompy.MakeVertex(100., <p class="whs1">box1 = geompy.MakeBox(0,0,0,100,50,100)</p>
0., 0.)</p>
<p class="whs1">py = geompy.MakeVertex(0., <p class="whs1">box2 = </p>
100., 0.)</p>
<p class="whs1">pz = geompy.MakeVertex(0., <p class="whs1">geompy.MakeBox(100,0,0,250,50,100)</p>
0., 100.)</p>
<p class="whs1">&nbsp;</p> <p class="whs1">&nbsp;</p>
<p class="whs2"># create base geometry <p class="whs2"># make compound</p>
2D &amp; 3D</p>
<p class="whs1">vector = geompy.MakeVector(px, <p class="whs1">compound = geompy.MakeCompound([box1,
py)</p> box2])</p>
<p class="whs1">arc = geompy.MakeArc(py,
pz, px)</p>
<p class="whs1">&nbsp;</p> <p class="whs1">&nbsp;</p>
<p class="whs2"># create base objects</p> <p class="whs2"># glue compound's faces</p>
<p class="whs1">angle = 45. * math.pi <p class="whs1">tolerance = 1e-5</p>
/ 180</p>
<p class="whs1">WantPlanarFace = 1 <p class="whs1">glue = geompy.MakeGlueFaces(compound,
#True</p> tolerance)</p>
<p class="whs1">wire = geompy.MakeWire([vector,
arc])</p>
<p class="whs1">face = geompy.MakeFace(wire,
WantPlanarFace)</p>
<p class="whs1">face_rot = geompy.MakeRotation(face,
vector, angle)</p>
<p class="whs1">&nbsp;</p>
<p class="whs2"># make sewing</p>
<p class="whs1">precision = 0.00001</p>
<p class="whs1">sewing = geompy.MakeSewing([face,
face_rot], precision)</p>
<p class="whs1">&nbsp;</p> <p class="whs1">&nbsp;</p>
<p class="whs2"># add objects in study</p> <p class="whs2"># add objects in study</p>
<p class="whs1">id_face = geompy.addToStudy(face, <p class="whs1">id_box1 = geompy.addToStudy(box1,
&quot;Face&quot;)</p> &quot;Box1&quot;)</p>
<p class="whs1">id_face_rot = geompy.addToStudy(face_rot, <p class="whs1">id_box2 = geompy.addToStudy(box2,
&quot;Face rotation&quot;)</p> &quot;Box2&quot;)</p>
<p class="whs1">id_sewing = geompy.addToStudy(sewing, <p class="whs1">id_compound = geompy.addToStudy(compound,
&quot;Sewing&quot;)</p> &quot;Compound&quot;)</p>
<p class="whs1">id_glue = geompy.addToStudy(glue,
&quot;Glue faces&quot;)</p>
<p class="whs1">&nbsp;</p> <p class="whs1">&nbsp;</p>
<p class="whs2"># display results</p> <p class="whs2"># display results</p>
<p class="whs1">gg.createAndDisplayGO(id_face)</p> <p class="whs1">gg.createAndDisplayGO(id_box1)</p>
<p class="whs1">gg.setDisplayMode(id_face,1)</p> <p class="whs1">gg.setDisplayMode(id_box1,1)</p>
<p class="whs1">gg.createAndDisplayGO(id_face_rot)</p> <p class="whs1">gg.createAndDisplayGO(id_box2)</p>
<p class="whs1">gg.setDisplayMode(id_face_rot,1)</p> <p class="whs1">gg.setDisplayMode(id_box2,1)</p>
<p class="whs1">gg.createAndDisplayGO(id_sewing)</p> <p class="whs1">gg.createAndDisplayGO(id_compound)</p>
<p class="whs1">gg.setDisplayMode(id_sewing,1) <p class="whs1">gg.setDisplayMode(id_compound,1)</p>
<p class="whs1">gg.createAndDisplayGO(id_glue)</p>
<p class="whs1">gg.setDisplayMode(id_glue,1)
</p> </p>
<p class="whs1">&nbsp;</p> <p class="whs1">&nbsp;</p>
@ -719,21 +701,22 @@ else
<p class="whs1">&nbsp;</p> <p class="whs1">&nbsp;</p>
<p class="whs2"># make edge</p> <p class="whs2"># make an edge</p>
<p class="whs1">edge = geompy.MakeEdge(p1, <p class="whs1">edge = geompy.MakeEdge(p1,
p2) #geompy.GetSubShape(box, edge_ind)</p> p2) #geompy.GetSubShape(box, edge_ind)</p>
<p class="whs1">&nbsp;</p> <p class="whs1">&nbsp;</p>
<p class="whs2"># divide edge</p> <p class="whs2"># divide an edge</p>
<p class="whs1">divide = geompy.DivideEdge(edge, <p class="whs1">divide = geompy.DivideEdge(edge,
-1, 0.5, 0)</p> -1, 0.5, 0)</p>
<p class="whs1">&nbsp;</p> <p class="whs1">&nbsp;</p>
<p class="whs2"># add objects in study</p> <p class="whs2"># add objects in the
study</p>
<p class="whs1">id_edge = geompy.addToStudy(edge, <p class="whs1">id_edge = geompy.addToStudy(edge,
&quot;Edge&quot;)</p> &quot;Edge&quot;)</p>
@ -768,6 +751,8 @@ else
<h3><a name=bookmark8>Check Free Boundaries</a></h3> <h3><a name=bookmark8>Check Free Boundaries</a></h3>
<p class="whs1">import os</p>
<p class="whs1">import geompy</p> <p class="whs1">import geompy</p>
<p class="whs1">import salome</p> <p class="whs1">import salome</p>
@ -784,7 +769,7 @@ else
<p class="whs2">&nbsp;</p> <p class="whs2">&nbsp;</p>
<p class="whs2"># make compound</p> <p class="whs2"># make a compound</p>
<p class="whs1">compound = geompy.MakeCompound([box1, <p class="whs1">compound = geompy.MakeCompound([box1,
box2])</p> box2])</p>
@ -793,19 +778,20 @@ else
<p class="whs2"># import from *.brep</p> <p class="whs2"># import from *.brep</p>
<p class="whs1">ImportBREP = geompy.ImportBREP(&quot;/tmp/flight_solid.brep&quot;)</p> <p class="whs1">ImportBREP = geompy.ImportBREP(&quot;ImportBREP
= <span style="font-family: 'Lucida Console', monospace;">geompy.ImportBREP(os.getenv(&quot;DATA_DIR&quot;)+&quot;/Shapes/Brep/flight_solid.brep&quot;)</span></p>
<p class="whs2">&nbsp;</p> <p class="whs2">&nbsp;</p>
<p class="whs2"># get face</p> <p class="whs2"># get a face</p>
<p class="whs1">faces = geompy.SubShapeAllSorted(ImportBREP, <p class="whs1">faces = geompy.SubShapeAllSorted(ImportBREP,
geompy.ShapeType[&quot;FACE&quot;])</p> geompy.ShapeType[&quot;FACE&quot;])</p>
<p class="whs2">&nbsp;</p> <p class="whs2">&nbsp;</p>
<p class="whs2"># get free boundary for <p class="whs2"># get the free boundary
face 32</p> for face 32</p>
<p class="whs1">Res = geompy.GetFreeBoundary(faces[32])</p> <p class="whs1">Res = geompy.GetFreeBoundary(faces[32])</p>
@ -872,8 +858,8 @@ else
<p class="whs2">&nbsp;</p> <p class="whs2">&nbsp;</p>
<p class="whs2"># get free boundary for <p class="whs2"># get the free boundary
face 41</p> for face 41</p>
<p class="whs1">Res = geompy.GetFreeBoundary(faces[41])</p> <p class="whs1">Res = geompy.GetFreeBoundary(faces[41])</p>
@ -940,8 +926,8 @@ else
<p class="whs2">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</p> <p class="whs2">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</p>
<p class="whs2"># add imported object <p class="whs2"># add the imported object
in study</p> to the study</p>
<p class="whs1">id_ImportBREP = geompy.addToStudy(ImportBREP, <p class="whs1">id_ImportBREP = geompy.addToStudy(ImportBREP,
&quot;ImportBREP&quot;)</p> &quot;ImportBREP&quot;)</p>
@ -961,7 +947,7 @@ else
<p>&nbsp;</p> <p>&nbsp;</p>
<p># create vertex and vector</p> <p># create a vertex and a vector</p>
<p class="whs1">p1 = geompy.MakeVertex(35, <p class="whs1">p1 = geompy.MakeVertex(35,
35, 0)</p> 35, 0)</p>
@ -974,14 +960,14 @@ else
<p>&nbsp;</p> <p>&nbsp;</p>
<p># create cylinder</p> <p># create a cylinder</p>
<p class="whs1">cylinder = geompy.MakeCone(p1, <p class="whs1">cylinder = geompy.MakeCone(p1,
v, 30, 20, 20)</p> v, 30, 20, 20)</p>
<p>&nbsp;</p> <p>&nbsp;</p>
<p># create cone</p> <p># create a cone</p>
<p class="whs1">cone = geompy.MakeCone(p1, <p class="whs1">cone = geompy.MakeCone(p1,
v, 70, 40, 60)</p> v, 70, 40, 60)</p>
@ -1014,7 +1000,7 @@ else
<p>&nbsp;</p> <p>&nbsp;</p>
<p># suppress specified wire</p> <p># suppress the specified wire</p>
<p class="whs1">result = geompy.GetFreeFacesIDs(cut_without_f_2)</p> <p class="whs1">result = geompy.GetFreeFacesIDs(cut_without_f_2)</p>
@ -1023,7 +1009,7 @@ else
<p>&nbsp;</p> <p>&nbsp;</p>
<p># add objects in study</p> <p># add objects in the study</p>
<p class="whs1">all_faces = geompy.SubShapeAllSorted(cut_without_f_2, <p class="whs1">all_faces = geompy.SubShapeAllSorted(cut_without_f_2,
geompy.ShapeType[&quot;FACE&quot;])</p> geompy.ShapeType[&quot;FACE&quot;])</p>
@ -1052,7 +1038,7 @@ else
<p>&nbsp;</p> <p>&nbsp;</p>
<p># display results</p> <p># display the results</p>
<p class="whs1">gg.createAndDisplayGO(id_cut_without_f_2)</p> <p class="whs1">gg.createAndDisplayGO(id_cut_without_f_2)</p>

Binary file not shown.

After

Width:  |  Height:  |  Size: 26 KiB

View File

@ -24,7 +24,6 @@ p.whs7 { font-size:12pt; margin-left:40px; text-indent:-40px; }
p.whs8 { font-size:12pt; margin-left:40px; text-indent:-40px; font-weight:bold; } p.whs8 { font-size:12pt; margin-left:40px; text-indent:-40px; font-weight:bold; }
p.whs9 { font-size:12pt; text-indent:-40px; font-weight:bold; margin-left:80px; } p.whs9 { font-size:12pt; text-indent:-40px; font-weight:bold; margin-left:80px; }
img_whs10 { border:none; width:200px; height:200px; border-style:none; } img_whs10 { border:none; width:200px; height:200px; border-style:none; }
img_whs11 { border:none; width:200px; height:195px; border-style:none; }
--> -->
</style><script type="text/javascript" language="JavaScript"> </style><script type="text/javascript" language="JavaScript">
<!-- <!--
@ -117,9 +116,11 @@ else
<p>&nbsp;</p> <p>&nbsp;</p>
<p class="whs2"><b style="font-weight: bold;">Result:</b> GEOM_Object.</p> <p class="whs2"><b><span style="font-weight: normal;">T</span></b><b><span
style="font-weight: normal;">he</span> Result <span style="font-weight: normal;">of
the operation will be a</span></b><b> GEOM_Object</b>.</p>
<p class="whs2">&nbsp;</p> <p>&nbsp;</p>
<p class="whs2"><b style="font-weight: bold;">TUI Command:</b><i> <p class="whs2"><b style="font-weight: bold;">TUI Command:</b><i>
</i><span style="font-style: italic;"><I>geompy.MakeSketcher(Command, WorkingPlane)</I></span></p> </i><span style="font-style: italic;"><I>geompy.MakeSketcher(Command, WorkingPlane)</I></span></p>
@ -129,9 +130,9 @@ else
the Command argument. The edges of the resulting wire or face will be the Command argument. The edges of the resulting wire or face will be
arcs of circles and/or linear segments.</p> arcs of circles and/or linear segments.</p>
<p class="whs3"><span style="margin-left: 120px; font-style: italic;"><I>Command</I></span><span <p class="whs3"><span style="font-style: italic;"><I>Command</I></span>
style="margin-left: 120px;"> is a string, defining the sketcher by </span>the is a string, defining the sketcher by the coordinates of points in the
coordinates of points in the local working plane.</p> local working plane.</p>
<p class="whs3"><span style="font-style: italic;"><I>WorkingPlane</I></span> <p class="whs3"><span style="font-style: italic;"><I>WorkingPlane</I></span>
is a planar face of the working plane (a list of 9 doubles which are coordinates is a planar face of the working plane (a list of 9 doubles which are coordinates
@ -174,7 +175,7 @@ else
<li class=kadov-p><p class="whs2">tangent to the previous <li class=kadov-p><p class="whs2">tangent to the previous
segment;</p></li> segment;</p></li>
<li class=kadov-p><p class="whs2">vector components VX, <li class=kadov-p><p class="whs2">vector components DX,
DY.</p></li> DY.</p></li>
</ul> </ul>
@ -195,7 +196,7 @@ else
<p class="whs9">&nbsp;</p> <p class="whs9">&nbsp;</p>
<p class="whs9"><img src="image204.jpg" width="200px" height="200px" border="0" class="img_whs10"> &nbsp;&nbsp;<img src="image206.jpg" width="200px" height="195px" border="0" class="img_whs11"></p> <p class="whs9"><img src="image204.jpg" width="200px" height="200px" border="0" class="img_whs10"> &nbsp;&nbsp;<img src="image206.jpg" width="200px" height="200px" border="0" class="img_whs10"></p>
<p class="whs9">&nbsp;</p> <p class="whs9">&nbsp;</p>

View File

@ -94,28 +94,28 @@ else
<p>&nbsp;</p> <p>&nbsp;</p>
<p>#create vector with two points</p> <p>#create a vector from two points</p>
<p class="whs1">vector_arc = geompy.MakeVector(p1, <p class="whs1">vector_arc = geompy.MakeVector(p1,
p3)</p> p3)</p>
<p>&nbsp;</p> <p>&nbsp;</p>
<p># create arc with three points</p> <p># create an arc from three points</p>
<p class="whs1">arc = geompy.MakeArc(p1, <p class="whs1">arc = geompy.MakeArc(p1,
p2, p3)</p> p2, p3)</p>
<p>&nbsp;</p> <p>&nbsp;</p>
<p># create wire</p> <p># create a wire</p>
<p class="whs1">wire = geompy.MakeWire([vector_arc, <p class="whs1">wire = geompy.MakeWire([vector_arc,
arc])</p> arc])</p>
<p>&nbsp;</p> <p>&nbsp;</p>
<p># create planar face</p> <p># create a planar face</p>
<p class="whs1">isPlanarWanted = 1</p> <p class="whs1">isPlanarWanted = 1</p>
@ -124,7 +124,7 @@ else
<p>&nbsp;</p> <p>&nbsp;</p>
<p># create sketcher (face), following the textual description</p> <p># create a sketcher (face), following the textual description</p>
<p class="whs1">sketcher1 = geompy.MakeSketcher(&quot;Sketcher:F <p class="whs1">sketcher1 = geompy.MakeSketcher(&quot;Sketcher:F
-100 -100:TT 250 -100:R 0:C 100 150:R 0:L 300:WF&quot;,</p> -100 -100:TT 250 -100:R 0:C 100 150:R 0:L 300:WF&quot;,</p>
@ -134,7 +134,7 @@ else
<p>&nbsp;</p> <p>&nbsp;</p>
<p># create sketcher (wire) on the given face</p> <p># create a sketcher (wire) on the given face</p>
<p class="whs1">sketcher2 = geompy.MakeSketcherOnPlane(&quot;Sketcher:F <p class="whs1">sketcher2 = geompy.MakeSketcherOnPlane(&quot;Sketcher:F
10 -30:R 10:C 20 180:R 15:L 50:WW&quot;,</p> 10 -30:R 10:C 20 180:R 15:L 50:WW&quot;,</p>
@ -143,7 +143,7 @@ else
<p>&nbsp;</p> <p>&nbsp;</p>
<p># add objects in study</p> <p># add objects in the study</p>
<p class="whs2">id_face = geompy.addToStudy(face,&quot;Face&quot;)</p> <p class="whs2">id_face = geompy.addToStudy(face,&quot;Face&quot;)</p>
@ -153,7 +153,8 @@ else
<p>&nbsp;</p> <p>&nbsp;</p>
<p># display first sketcher and second sketcher with its planar face</p> <p># display the first sketcher and the second sketcher with its planar
face</p>
<p class="whs1">gg.createAndDisplayGO(id_face)</p> <p class="whs1">gg.createAndDisplayGO(id_face)</p>

View File

@ -17,11 +17,23 @@ if (navigator.appName !="Netscape")
img_whs1 { width:20px; height:20px; border-style:none; } img_whs1 { width:20px; height:20px; border-style:none; }
p.whs2 { font-size:12pt; } p.whs2 { font-size:12pt; }
p.whs3 { font-size:12pt; font-weight:bold; } p.whs3 { font-size:12pt; font-weight:bold; }
p.whs4 { font-size:12pt; margin-left:40px; } p.whs4 { font-size:12pt; margin-left:0px; }
img_whs5 { border:none; width:312px; height:315px; float:none; border-style:none; } img_whs5 { border:none; width:312px; height:315px; float:none; border-style:none; }
img_whs6 { border:none; width:215px; height:190px; float:none; border-style:none; } p.whs6 { font-size:12pt; margin-left:40px; }
img_whs7 { border:none; width:215px; height:190px; float:none; border-style:none; }
--> -->
</style><script type="text/javascript" language="JavaScript" title="WebHelpInlineScript"> </style><script type="text/javascript" language="JavaScript">
<!--
if ((navigator.appName == "Netscape") && (parseInt(navigator.appVersion) == 4))
{
var strNSS = "<style type='text/css'>";
strNSS += "p.whs4 {margin-left:1pt; }";
strNSS +="</style>";
document.write(strNSS);
}
//-->
</script>
<script type="text/javascript" language="JavaScript" title="WebHelpInlineScript">
<!-- <!--
function reDo() { function reDo() {
if (innerWidth != origWidth || innerHeight != origHeight) if (innerWidth != origWidth || innerHeight != origHeight)
@ -103,8 +115,6 @@ else
<p class="whs2"><b style="font-weight: bold;">Arguments:</b> <p class="whs2"><b style="font-weight: bold;">Arguments:</b>
Name + A closed shell or a list of shells.</p> Name + A closed shell or a list of shells.</p>
<p class="whs2">&nbsp;</p>
<p class="whs4"><img src="pics/neo-obj6.png" x-maintain-ratio="TRUE" width="312px" height="315px" border="0" class="img_whs5"></p> <p class="whs4"><img src="pics/neo-obj6.png" x-maintain-ratio="TRUE" width="312px" height="315px" border="0" class="img_whs5"></p>
<p class="whs2">&nbsp;</p> <p class="whs2">&nbsp;</p>
@ -113,7 +123,7 @@ else
<p class="whs3">&nbsp;</p> <p class="whs3">&nbsp;</p>
<p class="whs2"><img src="pics/solidsn.png" x-maintain-ratio="TRUE" width="215px" height="190px" border="0" class="img_whs6"></p> <p class="whs6"><img src="pics/solidsn.png" x-maintain-ratio="TRUE" width="215px" height="190px" border="0" class="img_whs7"></p>
<p class="whs2">&nbsp;</p> <p class="whs2">&nbsp;</p>

View File

@ -128,8 +128,9 @@ else
<p class="whs4"><span style="font-weight: normal;">You <p class="whs4"><span style="font-weight: normal;">You
can define the</span> Sphere <span style="font-weight: normal;">by the can define the</span> Sphere <span style="font-weight: normal;">by the
coordinates of the</span> Center Point<span style="font-weight: normal;"> coordinates of the</span> Center Point <span style="font-weight: normal;">and
</span>(in this way you don't need to create it in advance). </p> its</span> Radius <span style="font-weight: normal;">(in this way you
don't need to create it in advance).</span> </p>
<p class="whs4"><b style="font-weight: bold;">TUI <p class="whs4"><b style="font-weight: bold;">TUI
Command:</b> <span style="font-weight: normal; font-style: italic;"><I>geompy.MakeSphere(X, Command:</b> <span style="font-weight: normal; font-style: italic;"><I>geompy.MakeSphere(X,

View File

@ -82,7 +82,7 @@ else
<p>&nbsp;</p> <p>&nbsp;</p>
<p># create vertex and vector</p> <p># create a vertex and a vector</p>
<p class="whs1">p1 = geompy.MakeVertex(10, <p class="whs1">p1 = geompy.MakeVertex(10,
40, 0)</p> 40, 0)</p>
@ -101,7 +101,7 @@ else
<p>&nbsp;</p> <p>&nbsp;</p>
<p># create cylinder</p> <p># create a cylinder</p>
<p class="whs1">height = 35</p> <p class="whs1">height = 35</p>
@ -128,7 +128,7 @@ else
<p>&nbsp;</p> <p>&nbsp;</p>
<p># add objects in study</p> <p># add objects in the study</p>
<p class="whs1">id_cylinder = geompy.addToStudy(cylinder, <p class="whs1">id_cylinder = geompy.addToStudy(cylinder,
&quot;Cylinder&quot;)</p> &quot;Cylinder&quot;)</p>
@ -144,7 +144,7 @@ else
<p>&nbsp;</p> <p>&nbsp;</p>
<p># display results</p> <p># display the results</p>
<p class="whs1">gg.createAndDisplayGO(id_cylinder)</p> <p class="whs1">gg.createAndDisplayGO(id_cylinder)</p>
@ -175,7 +175,7 @@ else
<p>&nbsp;</p> <p>&nbsp;</p>
<p># create vertex and vector</p> <p># create a vertex and a vector</p>
<p class="whs1">p1 = geompy.MakeVertex(10, <p class="whs1">p1 = geompy.MakeVertex(10,
40, 0)</p> 40, 0)</p>
@ -197,7 +197,7 @@ else
<p>&nbsp;</p> <p>&nbsp;</p>
<p># create cylinder</p> <p># create a cylinder</p>
<p class="whs1">height = 35</p> <p class="whs1">height = 35</p>
@ -208,14 +208,14 @@ else
<p>&nbsp;</p> <p>&nbsp;</p>
<p># rotate the given object around the given axis on the given angle</p> <p># rotate the given object around the given axis by the given angle</p>
<p class="whs1">rotation = geompy.MakeRotation(cylinder, <p class="whs1">rotation = geompy.MakeRotation(cylinder,
vr, math.pi)</p> vr, math.pi)</p>
<p>&nbsp;</p> <p>&nbsp;</p>
<p># add objects in study</p> <p># add objects in the study</p>
<p class="whs1">id_vr = geompy.addToStudy(vr, <p class="whs1">id_vr = geompy.addToStudy(vr,
&quot;Rotation axis&quot;)</p> &quot;Rotation axis&quot;)</p>
@ -228,7 +228,7 @@ else
<p>&nbsp;</p> <p>&nbsp;</p>
<p># display results</p> <p># display the results</p>
<p class="whs1">gg.createAndDisplayGO(id_vr)</p> <p class="whs1">gg.createAndDisplayGO(id_vr)</p>
@ -255,7 +255,7 @@ else
<p>&nbsp;</p> <p>&nbsp;</p>
<p># create vertex and vector</p> <p># create a vertex and a vector</p>
<p class="whs1">p1 = geompy.MakeVertex(10, <p class="whs1">p1 = geompy.MakeVertex(10,
40, 0)</p> 40, 0)</p>
@ -268,7 +268,7 @@ else
<p>&nbsp;</p> <p>&nbsp;</p>
<p># create cylinder</p> <p># create a cylinder</p>
<p class="whs1">height = 35</p> <p class="whs1">height = 35</p>
@ -296,7 +296,7 @@ else
<p>&nbsp;</p> <p>&nbsp;</p>
<p># add objects in study</p> <p># add objects in the study</p>
<p class="whs1">id_cs1 = geompy.addToStudy(cs1, <p class="whs1">id_cs1 = geompy.addToStudy(cs1,
&quot;Coordinate system 1&quot;)</p> &quot;Coordinate system 1&quot;)</p>
@ -312,7 +312,7 @@ else
<p class="whs1">&nbsp;</p> <p class="whs1">&nbsp;</p>
<p># display results</p> <p># display the results</p>
<p class="whs1">gg.createAndDisplayGO(id_cylinder)</p> <p class="whs1">gg.createAndDisplayGO(id_cylinder)</p>
@ -335,7 +335,7 @@ else
<p>&nbsp;</p> <p>&nbsp;</p>
<p># create box</p> <p># create a box</p>
<p class="whs1">box = geompy.MakeBoxDXDYDZ(200, <p class="whs1">box = geompy.MakeBoxDXDYDZ(200,
200, 200)</p> 200, 200)</p>
@ -387,7 +387,7 @@ else
<p>&nbsp;</p> <p>&nbsp;</p>
<p># add objects in study</p> <p># add objects in the study</p>
<p class="whs1">id_box = geompy.addToStudy(box, <p class="whs1">id_box = geompy.addToStudy(box,
&quot;Box&quot;)</p> &quot;Box&quot;)</p>
@ -412,7 +412,7 @@ else
<p>&nbsp;</p> <p>&nbsp;</p>
<p># display results</p> <p># display the results</p>
<p class="whs1">gg.createAndDisplayGO(id_box)</p> <p class="whs1">gg.createAndDisplayGO(id_box)</p>
@ -449,7 +449,7 @@ else
<p>&nbsp;</p> <p>&nbsp;</p>
<p># create box and sphere</p> <p># create a box and a sphere</p>
<p class="whs1">box = geompy.MakeBoxDXDYDZ(200, <p class="whs1">box = geompy.MakeBoxDXDYDZ(200,
200, 200)</p> 200, 200)</p>
@ -468,7 +468,7 @@ else
<p>&nbsp;</p> <p>&nbsp;</p>
<p># add objects in study</p> <p># add objects in the study</p>
<p class="whs1">id_box = geompy.addToStudy(box, <p class="whs1">id_box = geompy.addToStudy(box,
&quot;Box&quot;)</p> &quot;Box&quot;)</p>
@ -478,7 +478,7 @@ else
<p>&nbsp;</p> <p>&nbsp;</p>
<p># display results</p> <p># display the results</p>
<p class="whs1">gg.createAndDisplayGO(id_box)</p> <p class="whs1">gg.createAndDisplayGO(id_box)</p>
@ -501,21 +501,21 @@ else
<p>&nbsp;</p> <p>&nbsp;</p>
<p># create box and sphere</p> <p># create a box and a sphere</p>
<p class="whs1">box = geompy.MakeBox(20, <p class="whs1">box = geompy.MakeBox(20,
20, 20, 200, 200, 200)</p> 20, 20, 200, 200, 200)</p>
<p>&nbsp;</p> <p>&nbsp;</p>
<p># create new object as offset of the given one</p> <p># create a new object as offset of the given object</p>
<p class="whs1">offset = geompy.MakeOffset(box, <p class="whs1">offset = geompy.MakeOffset(box,
70.)</p> 70.)</p>
<p>&nbsp;</p> <p>&nbsp;</p>
<p># add objects in study</p> <p># add objects in the study</p>
<p class="whs1">id_box = geompy.addToStudy(box, <p class="whs1">id_box = geompy.addToStudy(box,
&quot;Box&quot;)</p> &quot;Box&quot;)</p>
@ -525,7 +525,7 @@ else
<p class="whs1">&nbsp;</p> <p class="whs1">&nbsp;</p>
<p># display results</p> <p># display the results</p>
<p class="whs1">gg.createAndDisplayGO(id_box)</p> <p class="whs1">gg.createAndDisplayGO(id_box)</p>
@ -583,42 +583,43 @@ else
<p>&nbsp;&nbsp;</p> <p>&nbsp;&nbsp;</p>
<p># create arc</p> <p># create an arc</p>
<p class="whs1">arc = geompy.MakeArc(py, <p class="whs1">arc = geompy.MakeArc(py,
pz, px)</p> pz, px)</p>
<p>&nbsp;</p> <p>&nbsp;</p>
<p># create wire</p> <p># create a wire</p>
<p class="whs1">wire = geompy.MakeWire([vxy, <p class="whs1">wire = geompy.MakeWire([vxy,
arc])</p> arc])</p>
<p>&nbsp;</p> <p>&nbsp;</p>
<p># create planar face</p> <p># create a planar face</p>
<p class="whs1">face = geompy.MakeFace(wire, <p class="whs1">face = geompy.MakeFace(wire,
1)</p> 1)</p>
<p>&nbsp;</p> <p>&nbsp;</p>
<p># create prism</p> <p># create a prism</p>
<p class="whs1">prism = geompy.MakePrismVecH(face, <p class="whs1">prism = geompy.MakePrismVecH(face,
vz, 20.0)</p> vz, 20.0)</p>
<p>&nbsp;</p> <p>&nbsp;</p>
<p># translate the given object along the given vector a given number times</p> <p># translate the given object along the given vector a given number of
times</p>
<p class="whs1">tr1d = geompy.MakeMultiTranslation1D(prism, <p class="whs1">tr1d = geompy.MakeMultiTranslation1D(prism,
vtr1d, 20, 4)</p> vtr1d, 20, 4)</p>
<p>&nbsp;</p> <p>&nbsp;</p>
<p># consequently apply two specified translations to the object specified <p># consequently apply two specified translations to the object a given
number of times</p> number of times</p>
<p class="whs1">tr2d = geompy.MakeMultiTranslation2D(prism, <p class="whs1">tr2d = geompy.MakeMultiTranslation2D(prism,
@ -626,7 +627,7 @@ else
<p>&nbsp;</p> <p>&nbsp;</p>
<p># add objects in study</p> <p># add objects in the study</p>
<p class="whs1">id_prism = geompy.addToStudy(prism,&quot;Prism&quot;)</p> <p class="whs1">id_prism = geompy.addToStudy(prism,&quot;Prism&quot;)</p>
@ -638,7 +639,7 @@ else
<p>&nbsp;</p> <p>&nbsp;</p>
<p># display prism and results of fillet operation</p> <p># display the prism and the results of fillet operation</p>
<p class="whs1">gg.createAndDisplayGO(id_prism)</p> <p class="whs1">gg.createAndDisplayGO(id_prism)</p>
@ -696,53 +697,53 @@ else
<p>&nbsp;&nbsp;</p> <p>&nbsp;&nbsp;</p>
<p># create arc</p> <p># create an arc</p>
<p class="whs1">arc = geompy.MakeArc(py, <p class="whs1">arc = geompy.MakeArc(py,
pz, px)</p> pz, px)</p>
<p>&nbsp;</p> <p>&nbsp;</p>
<p># create wire</p> <p># create a wire</p>
<p class="whs1">wire = geompy.MakeWire([vxy, <p class="whs1">wire = geompy.MakeWire([vxy,
arc])</p> arc])</p>
<p>&nbsp;</p> <p>&nbsp;</p>
<p># create planar face</p> <p># create a planar face</p>
<p class="whs1">face = geompy.MakeFace(wire, <p class="whs1">face = geompy.MakeFace(wire,
1)</p> 1)</p>
<p>&nbsp;</p> <p>&nbsp;</p>
<p># create prism</p> <p># create a prism</p>
<p class="whs1">prism = geompy.MakePrismVecH(face, <p class="whs1">prism = geompy.MakePrismVecH(face,
vz, 20.0)</p> vz, 20.0)</p>
<p>&nbsp;</p> <p>&nbsp;</p>
<p># rotate the given object around the given axis on the given angle a <p># rotate the given object around the given axis by the given angle a
given number times</p> given number of times</p>
<p class="whs1">rot1d = geompy.MultiRotate1D(prism, <p class="whs1">rot1d = geompy.MultiRotate1D(prism,
vrot1d, 4)</p> vrot1d, 4)</p>
<p>&nbsp;</p> <p>&nbsp;</p>
<p># rotate the given object around the given axis on the given angle a <p># rotate the given object around the given axis by the given angle a
given number times</p> given number of times</p>
<p># and multi-translate each rotation result</p> <p># and multi-translate the result of each rotation</p>
<p class="whs1">rot2d = geompy.MultiRotate2D(prism, <p class="whs1">rot2d = geompy.MultiRotate2D(prism,
vrot1d, 60, 4, 50, 5)</p> vrot1d, 60, 4, 50, 5)</p>
<p>&nbsp;</p> <p>&nbsp;</p>
<p># add objects in study</p> <p># add objects in the study</p>
<p class="whs1">id_prism = geompy.addToStudy(prism,&quot;Prism&quot;)</p> <p class="whs1">id_prism = geompy.addToStudy(prism,&quot;Prism&quot;)</p>
@ -754,7 +755,7 @@ else
<p>&nbsp;</p> <p>&nbsp;</p>
<p># display prism and results of fillet operation</p> <p># display the prism and the results of fillet operation</p>
<p class="whs1">gg.createAndDisplayGO(id_prism)</p> <p class="whs1">gg.createAndDisplayGO(id_prism)</p>
@ -814,35 +815,35 @@ else
<p>&nbsp;&nbsp;</p> <p>&nbsp;&nbsp;</p>
<p># create arc</p> <p># create an arc</p>
<p class="whs1">arc = geompy.MakeArc(py, <p class="whs1">arc = geompy.MakeArc(py,
pz, px)</p> pz, px)</p>
<p>&nbsp;</p> <p>&nbsp;</p>
<p># create wire</p> <p># create a wire</p>
<p class="whs1">wire = geompy.MakeWire([vxy, <p class="whs1">wire = geompy.MakeWire([vxy,
arc])</p> arc])</p>
<p>&nbsp;</p> <p>&nbsp;</p>
<p># create planar face</p> <p># create a planar face</p>
<p class="whs1">face = geompy.MakeFace(wire, <p class="whs1">face = geompy.MakeFace(wire,
1)</p> 1)</p>
<p>&nbsp;</p> <p>&nbsp;</p>
<p># create prism</p> <p># create a prism</p>
<p class="whs1">prism = geompy.MakePrismVecH(face, <p class="whs1">prism = geompy.MakePrismVecH(face,
vz, 100.0)</p> vz, 100.0)</p>
<p>&nbsp;</p> <p>&nbsp;</p>
<p># get IDList for fillet</p> <p># get the list of IDs (IDList) for the fillet</p>
<p class="whs1">prism_edges = geompy.SubShapeAllSorted(prism, <p class="whs1">prism_edges = geompy.SubShapeAllSorted(prism,
ShapeTypeEdge)</p> ShapeTypeEdge)</p>
@ -860,21 +861,21 @@ else
<p>&nbsp;</p> <p>&nbsp;</p>
<p># make fillet on the specified edges of the given shape</p> <p># make a fillet on the specified edges of the given shape</p>
<p class="whs1">fillet = geompy.MakeFillet(prism, <p class="whs1">fillet = geompy.MakeFillet(prism,
radius, ShapeTypeEdge, IDlist_e)</p> radius, ShapeTypeEdge, IDlist_e)</p>
<p>&nbsp;</p> <p>&nbsp;</p>
<p># make fillet on all edges of the given shape</p> <p># make a fillet on all edges of the given shape</p>
<p class="whs1">filletall = geompy.MakeFilletAll(prism, <p class="whs1">filletall = geompy.MakeFilletAll(prism,
radius)</p> radius)</p>
<p>&nbsp;</p> <p>&nbsp;</p>
<p># add objects in study</p> <p># add objects in the study</p>
<p class="whs1">id_prism = geompy.addToStudy(prism,&quot;Prism&quot;)</p> <p class="whs1">id_prism = geompy.addToStudy(prism,&quot;Prism&quot;)</p>
@ -885,7 +886,7 @@ else
<p>&nbsp;</p> <p>&nbsp;</p>
<p># display prism and results of fillet operation</p> <p># display the prism and the results of fillet operation</p>
<p class="whs1">gg.createAndDisplayGO(id_prism)</p> <p class="whs1">gg.createAndDisplayGO(id_prism)</p>
@ -946,35 +947,35 @@ else
<p>&nbsp;&nbsp;</p> <p>&nbsp;&nbsp;</p>
<p># create arc</p> <p># create an arc</p>
<p class="whs1">arc = geompy.MakeArc(py, <p class="whs1">arc = geompy.MakeArc(py,
pz, px)</p> pz, px)</p>
<p>&nbsp;</p> <p>&nbsp;</p>
<p># create wire</p> <p># create a wire</p>
<p class="whs1">wire = geompy.MakeWire([vxy, <p class="whs1">wire = geompy.MakeWire([vxy,
arc])</p> arc])</p>
<p>&nbsp;</p> <p>&nbsp;</p>
<p># create planar face</p> <p># create a planar face</p>
<p class="whs1">face = geompy.MakeFace(wire, <p class="whs1">face = geompy.MakeFace(wire,
1)</p> 1)</p>
<p>&nbsp;</p> <p>&nbsp;</p>
<p># create prism</p> <p># create a prism</p>
<p class="whs1">prism = geompy.MakePrismVecH(face, <p class="whs1">prism = geompy.MakePrismVecH(face,
vz, 100.0)</p> vz, 100.0)</p>
<p>&nbsp;</p> <p>&nbsp;</p>
<p># get IDList for chamfer</p> <p># get the list of IDs (IDList) for the chamfer</p>
<p class="whs1">prism_faces = geompy.SubShapeAllSorted(prism, <p class="whs1">prism_faces = geompy.SubShapeAllSorted(prism,
ShapeTypeFace)</p> ShapeTypeFace)</p>
@ -990,7 +991,7 @@ else
<p>&nbsp;</p> <p>&nbsp;</p>
<p># perform a chamfer on edges, common to the specified faces</p> <p># perform a chamfer on the edges common to the specified faces</p>
<p class="whs1">chamfer_e = geompy.MakeChamferEdge(prism, <p class="whs1">chamfer_e = geompy.MakeChamferEdge(prism,
d1, d2, f_ind_1, f_ind_2)</p> d1, d2, f_ind_1, f_ind_2)</p>
@ -1014,7 +1015,7 @@ else
<p>&nbsp;</p> <p>&nbsp;</p>
<p># add objects in study</p> <p># add objects in the study</p>
<p class="whs1">id_prism = geompy.addToStudy(prism,&quot;Prism&quot;)</p> <p class="whs1">id_prism = geompy.addToStudy(prism,&quot;Prism&quot;)</p>
@ -1032,7 +1033,7 @@ else
<p>&nbsp;</p> <p>&nbsp;</p>
<p># display prism and results of chamfer operation</p> <p># display the prism and the results of chamfer operation</p>
<p class="whs1">gg.createAndDisplayGO(id_prism)</p> <p class="whs1">gg.createAndDisplayGO(id_prism)</p>

View File

@ -0,0 +1,120 @@
<!doctype HTML public "-//W3C//DTD HTML 4.0 Frameset//EN">
<html>
<head>
<title>Transparency</title>
<meta http-equiv="content-type" content="text/html; charset=windows-1252">
<meta name="generator" content="RoboHelp by eHelp Corporation www.ehelp.com">
<link rel="stylesheet" href="default_ns.css"><script type="text/javascript" language="JavaScript" title="WebHelpSplitCss">
<!--
if (navigator.appName !="Netscape")
{ document.write("<link rel='stylesheet' href='default.css'>");}
//-->
</script>
<style type="text/css">
<!--
p.whs1 { font-size:12pt; font-weight:normal; }
p.whs2 { font-size:12pt; }
img_whs3 { border:none; width:354px; height:177px; float:none; border-style:none; }
p.whs4 { font-size:12pt; font-style:italic; font-weight:normal; }
img_whs5 { border:none; float:none; height:430px; width:400px; border-style:none; }
img_whs6 { border:none; height:430px; float:none; width:400px; border-style:none; }
p.whs7 { margin-left:40px; font-size:12pt; }
-->
</style><script type="text/javascript" language="JavaScript" title="WebHelpInlineScript">
<!--
function reDo() {
if (innerWidth != origWidth || innerHeight != origHeight)
location.reload();
}
if ((parseInt(navigator.appVersion) == 4) && (navigator.appName == "Netscape")) {
origWidth = innerWidth;
origHeight = innerHeight;
onresize = reDo;
}
onerror = null;
//-->
</script>
<style type="text/css">
<!--
div.WebHelpPopupMenu { position:absolute; left:0px; top:0px; z-index:4; visibility:hidden; }
-->
</style><script type="text/javascript" language="javascript1.2" src="whmsg.js"></script>
<script type="text/javascript" language="javascript" src="whver.js"></script>
<script type="text/javascript" language="javascript1.2" src="whproxy.js"></script>
<script type="text/javascript" language="javascript1.2" src="whutils.js"></script>
<script type="text/javascript" language="javascript1.2" src="whtopic.js"></script>
</head>
<body><script type="text/javascript" language="javascript1.2">
<!--
if (window.gbWhTopic)
{
if (window.addTocInfo)
{
addTocInfo("GEOM module\nManaging geometrical objects\nChanging Display Parameters\nTransparency");
addButton("show",BTN_TEXT,"Show","","","","",0,0,"","","");
}
if (window.writeBtnStyle)
writeBtnStyle();
if (window.writeIntopicBar)
writeIntopicBar(1);
if (window.setRelStartPage)
{
setRelStartPage("geom.htm");
autoSync(1);
sendSyncInfo();
sendAveInfoOut();
}
}
else
if (window.gbIE4)
document.location.reload();
//-->
</script>
<h1>Transparency</h1>
<p class="whs1">You can change the transparency
of a shape in the range between 0 (absolutely opaque) and 1 (absolutely
transparent and thus invisible) in the following dialog box.</p>
<p class="whs2">&nbsp;</p>
<p class="whs2"><img src="pics/neo-transparency.png" x-maintain-ratio="TRUE" width="354px" height="177px" border="0" class="img_whs3"></p>
<p class="whs2">&nbsp;</p>
<p class="whs2"><b style="font-weight: bold;"><span style="font-weight: normal;">or
using a</span> TUI Command:</b><i> gg.setTransparency(ID, Double)</i></p>
<p class="whs2">&nbsp;</p>
<p class="whs2"><b style="font-weight: bold;">Examples:</b></p>
<p class="whs2">&nbsp;</p>
<p class="whs4">Opaque &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;50%
Transparent</p>
<p class="whs2"><img src="pics/colorsn.png" x-maintain-ratio="TRUE" height="430px" width="400px" border="0" class="img_whs5"> &nbsp;<img src="pics/transparencysn.png" x-maintain-ratio="TRUE" height="430px" width="400px" border="0" class="img_whs6"></p>
<p class="whs7">&nbsp;&nbsp;</p>
<p class="whs2"><span style="font-size: 12pt;"><font size=3 style="font-size:12pt;">Our TUI Scripts
provide you with useful examples of <a href="changing_display_parameters.htm#bookmark2">Changing
Display Parameters</a>. </font></span></p>
<p>&nbsp;</p>
<script type="text/javascript" language="javascript1.2">
<!--
if (window.writeIntopicBar)
writeIntopicBar(0);
//-->
</script>
</body>
</html>

View File

@ -108,7 +108,7 @@ else
<p>&nbsp;</p> <p>&nbsp;</p>
<p>Secondly, you can define a Torus with the centre at the origin of coordinates <p>Secondly, you can define a Torus with the center at the origin of coordinates
by its Major and Minor <span style="font-weight: bold;"><B>Radiuses</B></span>. by its Major and Minor <span style="font-weight: bold;"><B>Radiuses</B></span>.
</p> </p>

View File

@ -86,7 +86,7 @@ else
<p class="whs2">&nbsp;</p> <p class="whs2">&nbsp;</p>
<p class="whs2"><b style="font-weight: bold;"><span style="font-weight: normal;">There <p class="whs2"><b style="font-weight: bold;"><span style="font-weight: normal;">There
are 2 algorithms to create a</span> Circle <span style="font-weight: normal;">in are 2 algorithms to create a</span> Vector <span style="font-weight: normal;">in
the 3D space.</span> </b></p> the 3D space.</span> </b></p>
<p class="whs2"><b style="font-weight: bold;"><span style="font-weight: normal;">The</span> <p class="whs2"><b style="font-weight: bold;"><span style="font-weight: normal;">The</span>

View File

@ -29,6 +29,7 @@ aTE("Check Free Boundaries","check_free_boundaries.htm");
aTE("Check Free Faces","check_free_faces.htm"); aTE("Check Free Faces","check_free_faces.htm");
aTE("Circle","circle.htm"); aTE("Circle","circle.htm");
aTE("Close Contour","close_contour.htm"); aTE("Close Contour","close_contour.htm");
aTE("Color","color.htm");
aTE("Common","common.htm"); aTE("Common","common.htm");
aTE("Complex Objects","complex_objects.htm"); aTE("Complex Objects","complex_objects.htm");
aTE("Compound","compound.htm"); aTE("Compound","compound.htm");
@ -60,6 +61,7 @@ aTE("Fuse","fuse.htm");
aTE("Geometrical Objects","geometrical_objects.htm"); aTE("Geometrical Objects","geometrical_objects.htm");
aTE("Glue Faces","glue_faces.htm"); aTE("Glue Faces","glue_faces.htm");
aTE("Groups","groups.htm"); aTE("Groups","groups.htm");
aTE("Isos","isos.htm");
aTE("Line","line.htm"); aTE("Line","line.htm");
aTE("Local Coordinate System","local_coordinate_system.htm"); aTE("Local Coordinate System","local_coordinate_system.htm");
aTE("Measurement Tools","measurement_tools.htm"); aTE("Measurement Tools","measurement_tools.htm");
@ -93,9 +95,11 @@ aTE("Suppress Holes","suppress_holes.htm");
aTE("Suppress Internal Wires","suppress_internal_wires.htm"); aTE("Suppress Internal Wires","suppress_internal_wires.htm");
aTE("Transformation Operations","transformation_operations.htm"); aTE("Transformation Operations","transformation_operations.htm");
aTE("Translation","translation.htm"); aTE("Translation","translation.htm");
aTE("Transparency","transparency.htm");
aTE("Turus","turus.htm"); aTE("Turus","turus.htm");
aTE("Vector","vector.htm"); aTE("Vector","vector.htm");
aTE("Wire","wire.htm"); aTE("Wire","wire.htm");
aTE("Wireframe and Shading","wireframe_and_shading.htm");
aTE("Working Plane","working_plane.htm"); aTE("Working Plane","working_plane.htm");
aTE("Working with groups","working_with_groups.htm"); aTE("Working with groups","working_with_groups.htm");

View File

@ -10,7 +10,7 @@
<!-- <!--
iWM("0","zmin","whfwdata0.htm"); iWM("0","zmin","whfwdata0.htm");
iTM(0,85,"whftdata0.htm"); iTM(0,89,"whftdata0.htm");
//--> //-->
</script> </script>

File diff suppressed because it is too large Load Diff

View File

@ -8,12 +8,16 @@
<script language="javascript" src="whtdata.js"></script> <script language="javascript" src="whtdata.js"></script>
<script language="javascript"> <script language="javascript">
<!-- <!--
aTE(1,93,"GEOM module"); aTE(1,97,"GEOM module");
aTE(2,0,"Introduction to GEOM","files/introduction_to_geom.htm"); aTE(2,0,"Introduction to GEOM","files/introduction_to_geom.htm");
aTE(2,0,"Importing\\exporting geometrical objects","files/salome2_sp3_geomtoolsgui_functions.htm"); aTE(2,0,"Importing/exporting geometrical objects","files/salome2_sp3_geomtoolsgui_functions.htm");
aTE(1,2,"Managing geometrical objects"); aTE(1,6,"Managing geometrical objects");
aTE(2,0,"Changing displaying parameters","changing_displaying_parameters.htm"); aTE(2,0,"Displaying/hiding objects","files/salome2_sp3_displaygui_functions.htm");
aTE(2,0,"Displaying\\hiding objects","files/salome2_sp3_displaygui_functions.htm"); aTE(1,4,"Changing Display Parameters");
aTE(2,0,"Display Mode","wireframe_and_shading.htm");
aTE(2,0,"Color","color.htm");
aTE(2,0,"Transparency","transparency.htm");
aTE(2,0,"Isolines","isos.htm");
aTE(1,33,"Creating geometrical objects"); aTE(1,33,"Creating geometrical objects");
aTE(1,10,"Creation of Basic Geometric Objects"); aTE(1,10,"Creation of Basic Geometric Objects");
aTE(2,0,"Point","point.htm"); aTE(2,0,"Point","point.htm");
@ -86,7 +90,7 @@
aTE(2,0,"Check Free Faces","check_free_faces.htm"); aTE(2,0,"Check Free Faces","check_free_faces.htm");
aTE(2,0,"Using measurement tools","files/salome2_sp3_measuregui_functions.htm"); aTE(2,0,"Using measurement tools","files/salome2_sp3_measuregui_functions.htm");
aTE(1,16,"TUI Scripts"); aTE(1,16,"TUI Scripts");
aTE(2,0,"Changing Displaying Parameters","changing_display_parameters.htm"); aTE(2,0,"Changing Display Parameters","changing_display_parameters.htm");
aTE(1,7,"Creation of Geometric Objects"); aTE(1,7,"Creation of Geometric Objects");
aTE(2,0,"Basic Geometrical Objects","basic_geometrical_objects.htm"); aTE(2,0,"Basic Geometrical Objects","basic_geometrical_objects.htm");
aTE(2,0,"Primitives","primitives.htm"); aTE(2,0,"Primitives","primitives.htm");
@ -102,7 +106,6 @@
aTE(2,0,"Blocks Operations","blocks_operations.htm"); aTE(2,0,"Blocks Operations","blocks_operations.htm");
aTE(2,0,"Repairing Operations","repairing_operations.htm"); aTE(2,0,"Repairing Operations","repairing_operations.htm");
aTE(2,0,"Measurement Tools","measurement_tools.htm"); aTE(2,0,"Measurement Tools","measurement_tools.htm");
aTE(2,0,"Module geompy","geompy_doc/namespacegeompy.html");
//--> //-->
</script> </script>

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -37,7 +37,7 @@ body {background-color:White; }
</head> </head>
<body marginheight="0" marginwidth="0" bgproperties="fixed"> <body marginheight="0" marginwidth="0" bgproperties="fixed">
<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> <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>
</body> </body>

View File

@ -37,7 +37,7 @@ body {background-color:White; }
</head> </head>
<body marginheight="0" marginwidth="0" bgproperties="fixed"> <body marginheight="0" marginwidth="0" bgproperties="fixed">
<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> <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>
</body> </body>

View File

@ -37,7 +37,7 @@ body {background-color:White; }
</head> </head>
<body marginheight="0" marginwidth="0" bgproperties="fixed"> <body marginheight="0" marginwidth="0" bgproperties="fixed">
<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> <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>
</body> </body>

View File

@ -37,7 +37,7 @@ body {background-color:White; }
</head> </head>
<body marginheight="0" marginwidth="0" bgproperties="fixed"> <body marginheight="0" marginwidth="0" bgproperties="fixed">
<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> <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>
</body> </body>

View File

@ -37,7 +37,7 @@ body {background-color:White; }
</head> </head>
<body marginheight="0" marginwidth="0" bgproperties="fixed"> <body marginheight="0" marginwidth="0" bgproperties="fixed">
<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> <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>
</body> </body>

View File

@ -37,7 +37,7 @@ body {background-color:White; }
</head> </head>
<body marginheight="0" marginwidth="0" bgproperties="fixed"> <body marginheight="0" marginwidth="0" bgproperties="fixed">
<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> <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>
</body> </body>

View File

@ -37,7 +37,7 @@ body {background-color:White; }
</head> </head>
<body marginheight="0" marginwidth="0" bgproperties="fixed"> <body marginheight="0" marginwidth="0" bgproperties="fixed">
<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> <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>
</body> </body>

View File

@ -37,7 +37,7 @@ body {background-color:White; }
</head> </head>
<body marginheight="0" marginwidth="0" bgproperties="fixed"> <body marginheight="0" marginwidth="0" bgproperties="fixed">
<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> <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>
</body> </body>

View File

@ -37,7 +37,7 @@ body {background-color:White; }
</head> </head>
<body marginheight="0" marginwidth="0" bgproperties="fixed"> <body marginheight="0" marginwidth="0" bgproperties="fixed">
<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> <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>
</body> </body>

View File

@ -37,7 +37,7 @@ body {background-color:White; }
</head> </head>
<body marginheight="0" marginwidth="0" bgproperties="fixed"> <body marginheight="0" marginwidth="0" bgproperties="fixed">
<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> <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>
</body> </body>

View File

@ -37,7 +37,7 @@ body {background-color:White; }
</head> </head>
<body marginheight="0" marginwidth="0" bgproperties="fixed"> <body marginheight="0" marginwidth="0" bgproperties="fixed">
<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> <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>
</body> </body>

View File

@ -37,7 +37,7 @@ body {background-color:White; }
</head> </head>
<body marginheight="0" marginwidth="0" bgproperties="fixed"> <body marginheight="0" marginwidth="0" bgproperties="fixed">
<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> <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>
</body> </body>

View File

@ -37,7 +37,7 @@ body {background-color:White; }
</head> </head>
<body marginheight="0" marginwidth="0" bgproperties="fixed"> <body marginheight="0" marginwidth="0" bgproperties="fixed">
<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> <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>
</body> </body>

View File

@ -37,7 +37,7 @@ body {background-color:White; }
</head> </head>
<body marginheight="0" marginwidth="0" bgproperties="fixed"> <body marginheight="0" marginwidth="0" bgproperties="fixed">
<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> <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>
</body> </body>

View File

@ -37,7 +37,7 @@ body {background-color:White; }
</head> </head>
<body marginheight="0" marginwidth="0" bgproperties="fixed"> <body marginheight="0" marginwidth="0" bgproperties="fixed">
<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> <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>
</body> </body>

View File

@ -37,7 +37,7 @@ body {background-color:White; }
</head> </head>
<body marginheight="0" marginwidth="0" bgproperties="fixed"> <body marginheight="0" marginwidth="0" bgproperties="fixed">
<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> <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>
</body> </body>

View File

@ -37,7 +37,7 @@ body {background-color:White; }
</head> </head>
<body marginheight="0" marginwidth="0" bgproperties="fixed"> <body marginheight="0" marginwidth="0" bgproperties="fixed">
<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> <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>
</body> </body>

View File

@ -39,12 +39,12 @@ img {vertial-align:middle;}
<p class="tocbody"> <p class="tocbody">
<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> <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>
&nbsp;&nbsp;&nbsp;<nobr><a href="../files/introduction_to_geom.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Introduction to GEOM</a></nobr><br> &nbsp;&nbsp;&nbsp;<nobr><a href="../files/introduction_to_geom.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Introduction to GEOM</a></nobr><br>
&nbsp;&nbsp;&nbsp;<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> &nbsp;&nbsp;&nbsp;<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>
&nbsp;&nbsp;&nbsp;<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> &nbsp;&nbsp;&nbsp;<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>
&nbsp;&nbsp;&nbsp;<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> &nbsp;&nbsp;&nbsp;<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>
&nbsp;&nbsp;&nbsp;<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> &nbsp;&nbsp;&nbsp;<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>
&nbsp;&nbsp;&nbsp;<nobr><a href="../files/salome2_sp3_measuregui_functions.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Using measurement tools</a></nobr><br> &nbsp;&nbsp;&nbsp;<nobr><a href="../files/salome2_sp3_measuregui_functions.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Using measurement tools</a></nobr><br>
&nbsp;&nbsp;&nbsp;<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> &nbsp;&nbsp;&nbsp;<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>
</p> </p>
</td></tr> </td></tr>

View File

@ -39,22 +39,19 @@ img {vertial-align:middle;}
<p class="tocbody"> <p class="tocbody">
<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> <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>
&nbsp;&nbsp;&nbsp;<nobr><a href="../files/introduction_to_geom.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Introduction to GEOM</a></nobr><br> &nbsp;&nbsp;&nbsp;<nobr><a href="../files/introduction_to_geom.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Introduction to GEOM</a></nobr><br>
&nbsp;&nbsp;&nbsp;<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> &nbsp;&nbsp;&nbsp;<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>
&nbsp;&nbsp;&nbsp;<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> &nbsp;&nbsp;&nbsp;<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>
&nbsp;&nbsp;&nbsp;<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> &nbsp;&nbsp;&nbsp;<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>
&nbsp;&nbsp;&nbsp;<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> &nbsp;&nbsp;&nbsp;<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>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<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> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<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>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<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> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<nobr><a href="../partition.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Partition</a></nobr><br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<nobr><a href="../files/salome2_sp3_booleangui_functions.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Using boolean operations</a></nobr><br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<nobr><a href="../archimede.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Archimede</a></nobr><br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<nobr><a href="../fuse.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Fuse</a></nobr><br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<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>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<nobr><a href="../common.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Common</a></nobr><br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<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>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<nobr><a href="../cut.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Cut</a></nobr><br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<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>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<nobr><a href="../section.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Section</a></nobr><br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<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>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<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>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<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>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<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>
&nbsp;&nbsp;&nbsp;<nobr><a href="../files/salome2_sp3_measuregui_functions.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Using measurement tools</a></nobr><br> &nbsp;&nbsp;&nbsp;<nobr><a href="../files/salome2_sp3_measuregui_functions.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Using measurement tools</a></nobr><br>
&nbsp;&nbsp;&nbsp;<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> &nbsp;&nbsp;&nbsp;<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>
</p> </p>
</td></tr> </td></tr>

View File

@ -39,27 +39,22 @@ img {vertial-align:middle;}
<p class="tocbody"> <p class="tocbody">
<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> <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>
&nbsp;&nbsp;&nbsp;<nobr><a href="../files/introduction_to_geom.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Introduction to GEOM</a></nobr><br> &nbsp;&nbsp;&nbsp;<nobr><a href="../files/introduction_to_geom.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Introduction to GEOM</a></nobr><br>
&nbsp;&nbsp;&nbsp;<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> &nbsp;&nbsp;&nbsp;<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>
&nbsp;&nbsp;&nbsp;<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> &nbsp;&nbsp;&nbsp;<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>
&nbsp;&nbsp;&nbsp;<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> &nbsp;&nbsp;&nbsp;<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>
&nbsp;&nbsp;&nbsp;<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> &nbsp;&nbsp;&nbsp;<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>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<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> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<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>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<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> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<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>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<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> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<nobr><a href="../files/salome2_sp3_booleangui_functions.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Using boolean operations</a></nobr><br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<nobr><a href="../translation.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Translation</a></nobr><br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<nobr><a href="../fuse.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Fuse</a></nobr><br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<nobr><a href="../rotation.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Rotation</a></nobr><br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<nobr><a href="../common.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Common</a></nobr><br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<nobr><a href="../modify_the_location.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Modify the Location</a></nobr><br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<nobr><a href="../cut.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Cut</a></nobr><br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<nobr><a href="../mirror_image.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Mirror Image</a></nobr><br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<nobr><a href="../section.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Section</a></nobr><br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<nobr><a href="../scale_transform.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Scale Transform</a></nobr><br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<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>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<nobr><a href="../offset_surface.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Offset Surface</a></nobr><br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<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>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<nobr><a href="../multi_translation.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Multi Translation</a></nobr><br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<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>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<nobr><a href="../multi_rotation.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Multi Rotation</a></nobr><br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<nobr><a href="../fillet.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Fillet</a></nobr><br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<nobr><a href="../chamfer.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Chamfer</a></nobr><br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<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>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<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>
&nbsp;&nbsp;&nbsp;<nobr><a href="../files/salome2_sp3_measuregui_functions.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Using measurement tools</a></nobr><br> &nbsp;&nbsp;&nbsp;<nobr><a href="../files/salome2_sp3_measuregui_functions.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Using measurement tools</a></nobr><br>
&nbsp;&nbsp;&nbsp;<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> &nbsp;&nbsp;&nbsp;<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>
</p> </p>
</td></tr> </td></tr>

View File

@ -39,20 +39,27 @@ img {vertial-align:middle;}
<p class="tocbody"> <p class="tocbody">
<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> <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>
&nbsp;&nbsp;&nbsp;<nobr><a href="../files/introduction_to_geom.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Introduction to GEOM</a></nobr><br> &nbsp;&nbsp;&nbsp;<nobr><a href="../files/introduction_to_geom.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Introduction to GEOM</a></nobr><br>
&nbsp;&nbsp;&nbsp;<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> &nbsp;&nbsp;&nbsp;<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>
&nbsp;&nbsp;&nbsp;<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> &nbsp;&nbsp;&nbsp;<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>
&nbsp;&nbsp;&nbsp;<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> &nbsp;&nbsp;&nbsp;<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>
&nbsp;&nbsp;&nbsp;<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> &nbsp;&nbsp;&nbsp;<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>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<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> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<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>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<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> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<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>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<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> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<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>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<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> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<nobr><a href="../translation.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Translation</a></nobr><br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<nobr><a href="../multi_transformation.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Multi Transformation</a></nobr><br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<nobr><a href="../rotation.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Rotation</a></nobr><br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<nobr><a href="../explode_on_blocks.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Explode on Blocks</a></nobr><br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<nobr><a href="../modify_the_location.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Modify the Location</a></nobr><br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<nobr><a href="../propagate.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Propagate</a></nobr><br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<nobr><a href="../mirror_image.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Mirror Image</a></nobr><br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<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> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<nobr><a href="../scale_transform.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Scale Transform</a></nobr><br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<nobr><a href="../offset_surface.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Offset Surface</a></nobr><br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<nobr><a href="../multi_translation.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Multi Translation</a></nobr><br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<nobr><a href="../multi_rotation.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Multi Rotation</a></nobr><br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<nobr><a href="../fillet.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Fillet</a></nobr><br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<nobr><a href="../chamfer.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Chamfer</a></nobr><br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<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>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<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>
&nbsp;&nbsp;&nbsp;<nobr><a href="../files/salome2_sp3_measuregui_functions.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Using measurement tools</a></nobr><br> &nbsp;&nbsp;&nbsp;<nobr><a href="../files/salome2_sp3_measuregui_functions.htm"><img src="../wht_toc3.gif" border="0" align="absmiddle"> Using measurement tools</a></nobr><br>
&nbsp;&nbsp;&nbsp;<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> &nbsp;&nbsp;&nbsp;<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>
</p> </p>
</td></tr> </td></tr>

Some files were not shown because too many files have changed in this diff Show More