Join modifications from branch OCC_debug_for_3_2_0b1

This commit is contained in:
jfa 2006-05-06 08:44:32 +00:00
parent 97f4b51b6a
commit e180c20f73
505 changed files with 8012 additions and 12174 deletions

View File

@ -1,4 +1,4 @@
This is the version 3.2.0a2 of GEOM This is the version 3.2.0b1 of GEOM
Compatible with : Compatible with :
- KERNEL 3.2.0a2 - KERNEL 3.2.0b1
- GUI 3.2.0a2 - GUI 3.2.0b1

View File

@ -1,3 +1,22 @@
# Copyright (C) 2005 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
# CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
# License as published by the Free Software Foundation; either
# version 2.1 of the License.
#
# This library is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public
# License along with this library; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#
# See http://www.salome-platform.org/
#
# -* Makefile *- # -* Makefile *-
# #
# Author : Patrick GOLDBRONN (CEA) # Author : Patrick GOLDBRONN (CEA)
@ -21,6 +40,7 @@ GEOM_en.xml \
GEOM_fr.xml \ GEOM_fr.xml \
GEOM.config \ GEOM.config \
GEOMCatalog.xml \ GEOMCatalog.xml \
SalomeApp.xml \
GEOMDS_Resources \ GEOMDS_Resources \
ImportExport \ ImportExport \
ShHealing \ ShHealing \

View File

@ -1,3 +1,22 @@
# Copyright (C) 2005 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
# CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
# License as published by the Free Software Foundation; either
# version 2.1 of the License.
#
# This library is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public
# License along with this library; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#
# See http://www.salome-platform.org/
#
# source path # source path
top_srcdir=@top_srcdir@ top_srcdir=@top_srcdir@
top_builddir=.. top_builddir=..

View File

@ -171,6 +171,8 @@ CXXFLAGS+= $(CORBA_CXXFLAGS)
LIBS+=$(CORBA_LIBS) LIBS+=$(CORBA_LIBS)
DOXYGEN = @DOXYGEN@ DOXYGEN = @DOXYGEN@
DOXYGEN_WITH_PYTHON = @DOXYGEN_WITH_PYTHON@
DOXYGEN_WITH_STL = @DOXYGEN_WITH_STL@
## Shared libraries ## Shared libraries
LT_STATIC_EXEC=@LT_STATIC_EXEC@ LT_STATIC_EXEC=@LT_STATIC_EXEC@
@ -229,7 +231,13 @@ all:
Makefile: $(top_builddir)/config.status $(srcdir)/Makefile.in Makefile: $(top_builddir)/config.status $(srcdir)/Makefile.in
cd $(top_builddir) ; ./config.status cd $(top_builddir) ; ./config.status
$(top_builddir)/config.status: $(top_srcdir)/configure LOCAL_MAKE = make_commence make_omniorb
KERNEL_MAKE = make_module make_conclude depend SALOMEconfig.h F77config.h sstream envScript
$(top_builddir)/config.status: $(top_srcdir)/configure \
$(LOCAL_MAKE:%=$(top_srcdir)/adm_local/unix/%.in) \
$(KERNEL_MAKE:%=$(KERNEL_ROOT_DIR)/salome_adm/unix/%.in)
cd $(top_builddir) ; ./config.status --recheck cd $(top_builddir) ; ./config.status --recheck
# VPATH contain $(srcdir), so make configure is good in top_srcdir and we must add target configure otherwise :-) # VPATH contain $(srcdir), so make configure is good in top_srcdir and we must add target configure otherwise :-)
@ -244,7 +252,7 @@ $(top_srcdir)/configure.in: $(top_srcdir)/configure.in.base
cd $(top_srcdir) && ./build_configure cd $(top_srcdir) && ./build_configure
ACLOCAL_SRC = \ ACLOCAL_KERNEL = \
ac_cxx_bool.m4 check_corba.m4 \ ac_cxx_bool.m4 check_corba.m4 \
ac_cxx_depend_flag.m4 check_hdf5.m4 enable_pthreads.m4 \ ac_cxx_depend_flag.m4 check_hdf5.m4 enable_pthreads.m4 \
ac_cxx_mutable.m4 check_mico.m4 libtool.m4 \ ac_cxx_mutable.m4 check_mico.m4 libtool.m4 \
@ -257,7 +265,7 @@ ACLOCAL_GUI = \
check_vtk.m4 check_opengl.m4 check_qt.m4 \ check_vtk.m4 check_opengl.m4 check_qt.m4 \
check_GUI.m4 check_corba_in_GUI.m4 check_GUI.m4 check_corba_in_GUI.m4
$(top_srcdir)/aclocal.m4: $(ACLOCAL_SRC:%=@KERNEL_ROOT_DIR@/salome_adm/unix/config_files/%) \ $(top_srcdir)/aclocal.m4: $(ACLOCAL_KERNEL:%=@KERNEL_ROOT_DIR@/salome_adm/unix/config_files/%) \
$(ACLOCAL_GUI:%=@GUI_ROOT_DIR@/adm_local/unix/config_files/%) $(ACLOCAL_GUI:%=@GUI_ROOT_DIR@/adm_local/unix/config_files/%)
cd $(top_srcdir) ; aclocal --acdir=adm_local/unix/config_files -I @KERNEL_ROOT_DIR@/salome_adm/unix/config_files \ cd $(top_srcdir) ; aclocal -I adm_local/unix/config_files -I @KERNEL_ROOT_DIR@/salome_adm/unix/config_files \
-I @GUI_ROOT_DIR@/adm_local/unix/config_files -I @GUI_ROOT_DIR@/adm_local/unix/config_files

View File

@ -19,6 +19,9 @@
%$(OMNIORB_IDL_CLN_CXX) %$(OMNIORB_IDL_CLN_H): ${KERNEL_ROOT_DIR}/idl/salome/%.idl %$(OMNIORB_IDL_CLN_CXX) %$(OMNIORB_IDL_CLN_H): ${KERNEL_ROOT_DIR}/idl/salome/%.idl
$(OMNIORB_IDL) $(IDLCXXFLAGS) $(OMNIORB_IDLCXXFLAGS) $< $(OMNIORB_IDL) $(IDLCXXFLAGS) $(OMNIORB_IDLCXXFLAGS) $<
%$(OMNIORB_IDL_CLN_CXX) %$(OMNIORB_IDL_CLN_H): ${GUI_ROOT_DIR}/idl/salome/%.idl
$(OMNIORB_IDL) $(IDLCXXFLAGS) $(OMNIORB_IDLCXXFLAGS) $<
%$(OMNIORB_IDL_CLN_CXX) %$(OMNIORB_IDL_CLN_H): ${top_srcdir}/idl/%.idl %$(OMNIORB_IDL_CLN_CXX) %$(OMNIORB_IDL_CLN_H): ${top_srcdir}/idl/%.idl
$(OMNIORB_IDL) $(IDLCXXFLAGS) $(OMNIORB_IDLCXXFLAGS) $< $(OMNIORB_IDL) $(IDLCXXFLAGS) $(OMNIORB_IDLCXXFLAGS) $<

View File

@ -1 +1 @@
THIS IS SALOME - GEOM VERSION: 3.2.0a2 THIS IS SALOME - GEOM VERSION: 3.2.0b1

View File

@ -131,9 +131,9 @@ echo " ./salome_adm/unix/SALOMEconfig.h \\" >> configure.in_tmp1
echo " ./salome_adm/unix/F77config.h \\" >> configure.in_tmp1 echo " ./salome_adm/unix/F77config.h \\" >> configure.in_tmp1
echo " ./salome_adm/unix/sstream \\" >> configure.in_tmp1 echo " ./salome_adm/unix/sstream \\" >> configure.in_tmp1
echo " ./salome_adm/unix/depend \\" >> configure.in_tmp1 echo " ./salome_adm/unix/depend \\" >> configure.in_tmp1
echo " ./adm_local/unix/make_omniorb \\" >> configure.in_tmp1 echo " ./adm_local/unix/make_omniorb:${ABS_CONF_DIR}/adm_local/unix/make_omniorb.in \\" >> configure.in_tmp1
echo " ./salome_adm/unix/envScript \\" >> configure.in_tmp1 echo " ./salome_adm/unix/envScript \\" >> configure.in_tmp1
echo " ./adm_local/unix/make_commence \\" >> configure.in_tmp1 echo " ./adm_local/unix/make_commence:${ABS_CONF_DIR}/adm_local/unix/make_commence.in \\" >> configure.in_tmp1
echo " ./salome_adm/unix/make_conclude \\" >> configure.in_tmp1 echo " ./salome_adm/unix/make_conclude \\" >> configure.in_tmp1
echo " ./salome_adm/unix/make_module \\" >> configure.in_tmp1 echo " ./salome_adm/unix/make_module \\" >> configure.in_tmp1

View File

@ -1,3 +1,22 @@
# Copyright (C) 2005 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
# CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
# License as published by the Free Software Foundation; either
# version 2.1 of the License.
#
# This library is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public
# License along with this library; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#
# See http://www.salome-platform.org/
#
# -* Makefile *- # -* Makefile *-
# #

View File

@ -16,26 +16,25 @@ if (navigator.appName !="Netscape")
<!-- <!--
img_whs1 { border:none; width:22px; height:22px; border-style:none; } img_whs1 { border:none; width:22px; height:22px; border-style:none; }
p.whs2 { font-size:12pt; } p.whs2 { font-size:12pt; }
p.whs3 { font-size:12pt; font-weight:normal; } p.whs3 { margin-left:40px; font-size:12pt; font-weight:bold; }
p.whs4 { margin-left:40px; font-size:12pt; font-weight:bold; } img_whs4 { border:none; width:312px; height:388px; float:none; border-style:none; }
img_whs5 { border:none; width:312px; height:388px; float:none; border-style:none; } p.whs5 { font-size:12pt; margin-left:40px; text-indent:-40px; }
p.whs6 { font-size:12pt; margin-left:40px; text-indent:-40px; } p.whs6 { font-size:12pt; margin-left:40px; text-indent:-40px; font-weight:bold; }
p.whs7 { font-size:12pt; margin-left:40px; text-indent:-40px; font-weight:bold; } p.whs7 { margin-left:80px; font-size:12pt; text-indent:-40px; }
p.whs8 { margin-left:80px; font-size:12pt; text-indent:-40px; } img_whs8 { border:none; width:200px; height:231px; border-style:none; }
img_whs9 { border:none; width:200px; height:231px; border-style:none; } img_whs9 { border:none; width:185px; height:231px; border-style:none; }
img_whs10 { border:none; width:185px; height:231px; border-style:none; } p.whs10 { font-size:12pt; text-indent:-68px; margin-left:72px; }
p.whs11 { font-size:12pt; text-indent:-68px; margin-left:72px; } p.whs11 { font-weight:bold; }
p.whs12 { font-weight:bold; }
--> -->
</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.whs5 {text-indent:1pt; }";
strNSS += "p.whs6 {text-indent:1pt; }"; strNSS += "p.whs6 {text-indent:1pt; }";
strNSS += "p.whs7 {text-indent:1pt; }"; strNSS += "p.whs7 {text-indent:1pt; }";
strNSS += "p.whs8 {text-indent:1pt; }"; strNSS += "p.whs10 {text-indent:1pt; }";
strNSS += "p.whs11 {text-indent:1pt; }";
strNSS +="</style>"; strNSS +="</style>";
document.write(strNSS); document.write(strNSS);
} }
@ -71,7 +70,7 @@ if (window.gbWhTopic)
{ {
if (window.addTocInfo) if (window.addTocInfo)
{ {
addTocInfo("GEOM module\nTransforming geometrical objects\nRepairing Operations\nAdd Point on Edge"); addTocInfo("Geometry module\nTransforming geometrical objects\nRepairing Operations\nAdd Point on Edge");
addButton("show",BTN_TEXT,"Show","","","","",0,0,"","",""); addButton("show",BTN_TEXT,"Show","","","","",0,0,"","","");
} }
@ -111,7 +110,9 @@ else
<p class="whs2">&nbsp;</p> <p class="whs2">&nbsp;</p>
<p class="whs2"><b style="font-weight: bold;">Result:</b> GEOM_Object.</p> <p class="whs2"><span style="font-size: 12pt;"><font size=3 style="font-size:12pt;"><b style="font-weight: bold;"><b><span
style="font-weight: normal;">T</b>he</span> Result <span style="font-weight: normal;">will
be a</span></b><b> <span style="font-weight: bold;"><B>GEOM_Object. </B></span></b></font></span></p>
<p class="whs2">&nbsp;</p> <p class="whs2">&nbsp;</p>
@ -129,26 +130,21 @@ else
Name + 1 Edge + 1 value setting the position of the point according to Name + 1 Edge + 1 value setting the position of the point according to
one of the selected modes</p> one of the selected modes</p>
<p class="whs2">&nbsp;</p>
<p class="whs3"><b style="font-weight: bold;">Dialog
Box:</b></p>
<p class="whs3">&nbsp;</p> <p class="whs3">&nbsp;</p>
<p class="whs4"><img src="pics/repair8.png" x-maintain-ratio="TRUE" width="312px" height="388px" border="0" class="img_whs5"></p> <p class="whs3"><img src="pics/repair8.png" x-maintain-ratio="TRUE" width="312px" height="388px" border="0" class="img_whs4"></p>
<p class="whs6">&nbsp;</p> <p class="whs5">&nbsp;</p>
<p class="whs7">Example:</p> <p class="whs6">Example:</p>
<p class="whs6">&nbsp;</p> <p class="whs5">&nbsp;</p>
<p class="whs8"><img src="image167.jpg" width="200px" height="231px" border="0" class="img_whs9"> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<img src="image168.jpg" width="185px" height="231px" border="0" class="img_whs10"></p> <p class="whs7"><img src="image167.jpg" width="200px" height="231px" border="0" class="img_whs8"> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<img src="image168.jpg" width="185px" height="231px" border="0" class="img_whs9"></p>
<p class="whs11">&nbsp;</p> <p class="whs10">&nbsp;</p>
<p class="whs12"><span style="font-weight: normal;">Our</span> <p class="whs11"><span style="font-weight: normal;">Our</span>
TUI Scripts<span style="font-weight: normal;"> provide you with useful TUI Scripts<span style="font-weight: normal;"> provide you with useful
examples of the use of</span> <a href="repairing_operations.htm#bookmark7">Repairing examples of the use of</span> <a href="repairing_operations.htm#bookmark7">Repairing
Operations</a>. </p> Operations</a>. </p>

View File

@ -53,7 +53,7 @@ if (window.gbWhTopic)
{ {
if (window.addTocInfo) if (window.addTocInfo)
{ {
addTocInfo("GEOM module\nCreating geometrical objects\nCreation of Basic Geometric Objects\nArc"); addTocInfo("Geometry module\nCreating geometrical objects\nCreating Basic Geometric Objects\nArc");
addButton("show",BTN_TEXT,"Show","","","","",0,0,"","",""); addButton("show",BTN_TEXT,"Show","","","","",0,0,"","","");
} }
@ -86,16 +86,16 @@ else
<p class="whs2">&nbsp;</p> <p class="whs2">&nbsp;</p>
<p class="whs2"><b><span style="font-weight: normal;">You can <p class="whs2"><b style="font-weight: bold;"><span style="font-weight: normal;">You
define an</span> Arc <span style="font-weight: normal;">by</span> <span can define an</span> Arc <span style="font-weight: normal;">by</span>
style="font-weight: normal;">three</span><span style="font-weight: bold;"><B> <span style="font-weight: normal;">three</span><span style="font-weight: bold;"><B>
Points </B></span><span style="font-weight: normal;">that lie on it, where Points </B></span><span style="font-weight: normal;">that lie on it, where
</span></b>Point1 is the starting point and Point3 is the ending point </span></b>Point1 is the starting point, Point2 is a middle point of the
of the arc.</p> arc and Point3 is the ending point of the arc.</p>
<p class="whs2"><b style="font-weight: bold;"><span style="font-weight: normal;">The</span> <p class="whs2"><b><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>
GEOM_Object (edge).</b></p> <span style="font-weight: normal;">GEOM_Object (edge).</span></b></p>
<p class="whs2">&nbsp;</p> <p class="whs2">&nbsp;</p>

View File

@ -53,7 +53,7 @@ if (window.gbWhTopic)
{ {
if (window.addTocInfo) if (window.addTocInfo)
{ {
addTocInfo("GEOM module\nTransforming geometrical objects\nBasic Operations\nArchimede"); addTocInfo("Geometry module\nTransforming geometrical objects\nBasic Operations\nArchimede");
addButton("show",BTN_TEXT,"Show","","","","",0,0,"","",""); addButton("show",BTN_TEXT,"Show","","","","",0,0,"","","");
} }

View File

@ -46,7 +46,7 @@ if (window.gbWhTopic)
{ {
if (window.addTocInfo) if (window.addTocInfo)
{ {
addTocInfo("GEOM module\nTUI Scripts\nCreation of Geometric Objects\nBasic Geometrical Objects"); addTocInfo("Geometry module\nTUI Scripts\nCreating Geometric Objects\nBasic Geometrical Objects");
addButton("show",BTN_TEXT,"Show","","","","",0,0,"","",""); addButton("show",BTN_TEXT,"Show","","","","",0,0,"","","");
} }

View File

@ -46,7 +46,7 @@ if (window.gbWhTopic)
{ {
if (window.addTocInfo) if (window.addTocInfo)
{ {
addTocInfo("GEOM module\nTUI Scripts\nTransformation\nBasic Operations"); addTocInfo("Geometry module\nTUI Scripts\nTransformation\nBasic Operations");
addButton("show",BTN_TEXT,"Show","","","","",0,0,"","",""); addButton("show",BTN_TEXT,"Show","","","","",0,0,"","","");
} }

View File

@ -1,116 +0,0 @@
<!doctype HTML public "-//W3C//DTD HTML 4.0 Frameset//EN">
<html>
<head>
<title>Building of blocks</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">
<!--
ul.whs1 { list-style:disc; }
p.whs2 { margin-left:40px; }
-->
</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)
{
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>Building of blocks</h1>
<p>&nbsp;</p>
<ul type="disc" class="whs1">
<li class=kadov-p><p><a href="#Multi-transformation">Multi-transformation</a></p></li>
<li class=kadov-p><p><a href="#ExplodeOnBlocks">Explode on blocks</a></p></li>
</ul>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p class=TODO>To use these options:</p>
<p class=TODO>&nbsp;</p>
<p class="whs2">In the main menu select <span style="font-weight: bold;"><B>Blocks
</B></span>submenu.</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<script type="text/javascript" language="javascript1.2">
<!--
if (window.writeIntopicBar)
writeIntopicBar(0);
//-->
</script>
</body>
</html>

View File

@ -46,7 +46,7 @@ if (window.gbWhTopic)
{ {
if (window.addTocInfo) if (window.addTocInfo)
{ {
addTocInfo("GEOM module\nTUI Scripts\nTransformation\nBlocks Operations"); addTocInfo("Geometry module\nTUI Scripts\nTransformation\nBlocks Operations");
addButton("show",BTN_TEXT,"Show","","","","",0,0,"","",""); addButton("show",BTN_TEXT,"Show","","","","",0,0,"","","");
} }

View File

@ -46,7 +46,7 @@ if (window.gbWhTopic)
{ {
if (window.addTocInfo) if (window.addTocInfo)
{ {
addTocInfo("GEOM module\nTUI Scripts\nTransformation\nBoolean Operations"); addTocInfo("Geometry module\nTUI Scripts\nTransformation\nBoolean Operations");
addButton("show",BTN_TEXT,"Show","","","","",0,0,"","",""); addButton("show",BTN_TEXT,"Show","","","","",0,0,"","","");
} }

View File

@ -17,14 +17,15 @@ 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-style:italic; } p.whs3 { font-style:italic; }
img_whs4 { border:none; width:312px; height:324px; float:none; border-style:none; } p.whs4 { margin-left:40px; }
p.whs5 { font-weight:normal; } img_whs5 { border:none; width:312px; height:324px; float:none; border-style:none; }
img_whs6 { border:none; width:312px; height:332px; float:none; border-style:none; } p.whs6 { font-weight:normal; }
p.whs7 { font-size:12pt; font-weight:bold; } p.whs7 { font-size:12pt; margin-left:40px; }
p.whs8 { font-size:12pt; font-weight:bold; font-style:normal; } img_whs8 { border:none; width:312px; height:332px; float:none; border-style:none; }
p.whs9 { font-size:12pt; font-style:normal; font-weight:bold; } p.whs9 { font-size:12pt; font-weight:bold; }
p.whs10 { font-size:12pt; font-style:normal; font-weight:normal; } p.whs10 { font-size:12pt; font-weight:bold; font-style:normal; }
img_whs11 { border:none; width:267px; height:280px; float:none; border-style:none; } p.whs11 { font-size:12pt; font-style:normal; font-weight:bold; }
img_whs12 { border:none; width:267px; height:280px; float:none; border-style:none; }
--> -->
</style><script type="text/javascript" language="JavaScript" title="WebHelpInlineScript"> </style><script type="text/javascript" language="JavaScript" title="WebHelpInlineScript">
<!-- <!--
@ -56,7 +57,7 @@ if (window.gbWhTopic)
{ {
if (window.addTocInfo) if (window.addTocInfo)
{ {
addTocInfo("GEOM module\nCreating geometrical objects\nCreation of Primitives\nBox"); addTocInfo("Geometry module\nCreating geometrical objects\nCreating Primitives\nBox");
addButton("show",BTN_TEXT,"Show","","","","",0,0,"","",""); addButton("show",BTN_TEXT,"Show","","","","",0,0,"","","");
} }
@ -110,11 +111,11 @@ else
<p class="whs3">&nbsp;</p> <p class="whs3">&nbsp;</p>
<p><b style="font-weight: bold;"><img src="pics/box1.png" x-maintain-ratio="TRUE" width="312px" height="324px" border="0" class="img_whs4"></b></p> <p class="whs4"><b style="font-weight: bold;"><img src="pics/box1.png" x-maintain-ratio="TRUE" width="312px" height="324px" border="0" class="img_whs5"></b></p>
<p>&nbsp;</p> <p>&nbsp;</p>
<p class="whs5"><b style="font-weight: normal;"><span style="font-weight: normal;">Secondly, <p class="whs6"><b style="font-weight: normal;"><span style="font-weight: normal;">Secondly,
you can define a </span><span style="font-weight: bold;"><B>Box</B></span><span you can define a </span><span style="font-weight: bold;"><B>Box</B></span><span
style="font-weight: normal;"> by </b>specified dimensions along the coordinate style="font-weight: normal;"> by </b>specified dimensions along the coordinate
axes</span> and with edges, parallel to them. &nbsp;The axes</span> and with edges, parallel to them. &nbsp;The
@ -127,32 +128,31 @@ else
<p><span><b style="font-weight: bold;">Arguments: </b></span><span style="font-size: 12pt;"><font size=3 style="font-size:12pt;">Name <p><span><b style="font-weight: bold;">Arguments: </b></span><span style="font-size: 12pt;"><font size=3 style="font-size:12pt;">Name
+ 3 values (dimensions at origin).</font></span></p> + 3 values (dimensions at origin).</font></span></p>
<p class="whs2"><b style="font-weight: bold;"><img src="pics/box2.png" x-maintain-ratio="TRUE" width="312px" height="332px" border="0" class="img_whs6"></b></p> <p class="whs7"><b style="font-weight: bold;"><img src="pics/box2.png" x-maintain-ratio="TRUE" width="312px" height="332px" border="0" class="img_whs8"></b></p>
<p>&nbsp;</p> <p>&nbsp;</p>
<p><span style="font-size: 12pt; font-weight: bold;"><font size=3 style="font-size:12pt;"><B>NB! </B></font></span>The is <p><span style="font-size: 12pt; font-weight: bold;"><font size=3 style="font-size:12pt;"><B>NB! </B></font></span>There is
a third way to create a Box, which is currently accessible only via<span a third way to create a Box, which is currently accessible only via<span
style="font-size: 12pt; font-weight: bold;"><font size=3 style="font-size:12pt;"><B> TUI </B></font></span>commands.</p> style="font-size: 12pt; font-weight: bold;"><font size=3 style="font-size:12pt;"><B> TUI </B></font></span>commands.</p>
<p class="whs7"><span style="font-weight: normal;">You <p class="whs9"><span style="font-weight: normal;">You
can define a </span>Box<span style="font-weight: normal;"> by the coordinates can define a </span>Box<span style="font-weight: normal;"> by the coordinates
of two </span>Vertices<span style="font-weight: normal;"> (in this way of two </span>Vertices<span style="font-weight: normal;"> (in this way
you don't need to create them in advance). </span></p> you don't need to create them in advance). </span></p>
<p class="whs8"><b style="font-weight: bold;">TUI Command:</b> <p class="whs10"><b style="font-weight: bold;">TUI Command:</b>
<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>Arguments:<span style="font-weight: normal;"> <span style="font-size: 12pt; font-weight: bold;"><font size=3 style="font-size:12pt;"><B>Arguments: </B></font></span>Name
</b>Name</span> + <span style="font-weight: normal;">X, Y and Z coordinates + X, Y and Z coordinates of both points.
of both points.</span></p>
<p class="whs8">&nbsp;</p> <p>&nbsp;</p>
<p class="whs9">Example:</p> <p class="whs11">Example:</p>
<p class="whs10"><img src="pics/boxes.png" x-maintain-ratio="TRUE" width="267px" height="280px" border="0" class="img_whs11"></p> <p class="whs7"><img src="pics/boxes.png" x-maintain-ratio="TRUE" width="267px" height="280px" border="0" class="img_whs12"></p>
<p>&nbsp;</p> <p>&nbsp;</p>

View File

@ -46,7 +46,7 @@ if (window.gbWhTopic)
{ {
if (window.addTocInfo) if (window.addTocInfo)
{ {
addTocInfo("GEOM module\nTUI Scripts\nCreation of Geometric Objects\nBuilding by Blocks"); addTocInfo("Geometry module\nTUI Scripts\nCreating Geometric Objects\nBuilding by Blocks");
addButton("show",BTN_TEXT,"Show","","","","",0,0,"","",""); addButton("show",BTN_TEXT,"Show","","","","",0,0,"","","");
} }

View File

@ -16,12 +16,12 @@ 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:319px; float:none; border-style:none; } p.whs3 { font-size:12pt; margin-left:40px; }
img_whs4 { border:none; width:225px; height:239px; float:none; border-style:none; } img_whs4 { border:none; width:312px; height:319px; float:none; border-style:none; }
img_whs5 { border:none; width:312px; height:381px; float:none; border-style:none; } img_whs5 { border:none; width:225px; height:239px; float:none; border-style:none; }
img_whs6 { border:none; width:230px; height:245px; float:none; border-style:none; } img_whs6 { border:none; width:312px; height:381px; float:none; border-style:none; }
img_whs7 { border:none; width:221px; height:238px; float:none; border-style:none; } img_whs7 { border:none; width:230px; height:245px; float:none; border-style:none; }
p.whs8 { font-size:12pt; margin-left:40px; } img_whs8 { border:none; width:221px; height:238px; float:none; border-style:none; }
p.whs9 { list-style:disc; margin-left:0in; margin-right:0in; margin-top:0px; margin-bottom:0px; } 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">
@ -65,7 +65,7 @@ if (window.gbWhTopic)
{ {
if (window.addTocInfo) if (window.addTocInfo)
{ {
addTocInfo("GEOM module\nTransforming geometrical objects\nTransformation Operations\nChamfer"); addTocInfo("Geometry module\nTransforming geometrical objects\nTransformation Operations\nChamfer");
addButton("show",BTN_TEXT,"Show","","","","",0,0,"","",""); addButton("show",BTN_TEXT,"Show","","","","",0,0,"","","");
} }
@ -122,15 +122,17 @@ else
<p class="whs2">&nbsp;</p> <p class="whs2">&nbsp;</p>
<p class="whs2"><img src="pics/chamfer1.png" x-maintain-ratio="TRUE" width="312px" height="319px" border="0" class="img_whs3"> &nbsp;<img src="pics/chamfer_all.png" x-maintain-ratio="TRUE" width="225px" height="239px" border="0" class="img_whs4"></p> <p class="whs3"><img src="pics/chamfer1.png" x-maintain-ratio="TRUE" width="312px" height="319px" border="0" class="img_whs4"> &nbsp;<img src="pics/chamfer_all.png" x-maintain-ratio="TRUE" width="225px" height="239px" border="0" class="img_whs5"></p>
<p class="whs2">&nbsp;</p> <p class="whs2">&nbsp;</p>
<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 viewer and define to create a fillet on, select the two faces to which belongs the <span
the <span style="font-weight: bold;"><B>Dimension</B></span> of the Chamfer.</p> style="font-size: 12pt;"><font size=3 style="font-size:12pt;">necessary common edge in the viewer and define
the </font></span><span style="font-size: 12pt; font-weight: bold;"><font size=3 style="font-size:12pt;"><B>Dimension</B></font></span><span
style="font-size: 12pt;"><font size=3 style="font-size:12pt;"> of the Chamfer.</font></span></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,
@ -140,16 +142,15 @@ else
<p class="whs2">&nbsp;</p> <p class="whs2">&nbsp;</p>
<p class="whs2"><img src="pics/chamfer2.png" x-maintain-ratio="TRUE" width="312px" height="381px" border="0" class="img_whs5"> &nbsp;<img src="pics/chamfer_edge.png" x-maintain-ratio="TRUE" width="230px" height="245px" border="0" class="img_whs6"></p> <p class="whs3"><img src="pics/chamfer2.png" x-maintain-ratio="TRUE" width="312px" height="381px" border="0" class="img_whs6"> &nbsp;<img src="pics/chamfer_edge.png" x-maintain-ratio="TRUE" width="230px" height="245px" border="0" class="img_whs7"></p>
<p class="whs2">&nbsp;</p> <p class="whs2">&nbsp;</p>
<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 two faces to which belongs the necessary to create a fillet on, select the necessary faces the OCC Viewer and define
common edge in the OCC 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.MakeChamferFaces(Shape, D1, </i><span style="font-style: italic;"><I>geompy.MakeChamferFaces(Shape, D1,
@ -161,9 +162,9 @@ else
<p class="whs2">&nbsp;</p> <p class="whs2">&nbsp;</p>
<p class="whs2"><img src="pics/chamfer3.png" x-maintain-ratio="TRUE" width="312px" height="381px" border="0" class="img_whs5"> &nbsp;<img src="pics/chamfer_faces.png" x-maintain-ratio="TRUE" width="221px" height="238px" border="0" class="img_whs7"></p> <p class="whs3"><img src="pics/chamfer3.png" x-maintain-ratio="TRUE" width="312px" height="381px" border="0" class="img_whs6"> &nbsp;<img src="pics/chamfer_faces.png" x-maintain-ratio="TRUE" width="221px" height="238px" border="0" class="img_whs8"></p>
<p class="whs8">&nbsp;</p> <p class="whs3">&nbsp;</p>
<p class="whs9">&nbsp;&nbsp;<span <p class="whs9">&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

View File

@ -46,7 +46,7 @@ if (window.gbWhTopic)
{ {
if (window.addTocInfo) if (window.addTocInfo)
{ {
addTocInfo("GEOM module\nTUI Scripts\nChanging Display Parameters"); addTocInfo("Geometry module\nTUI Scripts\nViewing Geometrical Objects");
addButton("show",BTN_TEXT,"Show","","","","",0,0,"","",""); addButton("show",BTN_TEXT,"Show","","","","",0,0,"","","");
} }
@ -70,7 +70,7 @@ else
document.location.reload(); document.location.reload();
//--> //-->
</script> </script>
<h1>Changing Display Parameters</h1> <h1>Viewing Geometrical Objects</h1>
<h3><a name=bookmark>Changing Display Mode</a></h3> <h3><a name=bookmark>Changing Display Mode</a></h3>

View File

@ -1,223 +0,0 @@
<!doctype HTML public "-//W3C//DTD HTML 4.0 Frameset//EN">
<html>
<head>
<title>Changing displaying parameters</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-family:'Times New Roman' , serif; font-size:12pt; font-weight:normal; }
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.whs4 { margin-left:40px; }
p.whs5 { font-family:'Times New Roman' , serif; font-size:14pt; }
img_whs6 { width:20px; height:20px; border-style:none; }
p.whs7 { font-size:12pt; margin-left:40px; }
img_whs8 { border:none; width:403px; height:422px; float:none; border-style:none; }
img_whs9 { border:none; width:400px; height:424px; float:none; border-style:none; }
p.whs10 { font-size:12pt; font-family:'Times New Roman' , serif; }
p.whs11 { font-size:12pt; }
img_whs12 { border:none; float:none; width:393px; height:423px; border-style:none; }
p.whs13 { font-size:14pt; }
img_whs14 { border:none; width:354px; height:177px; float:none; border-style:none; }
p.whs15 { margin-left:40px; font-size:12pt; }
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; }
-->
</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)
{
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>Changing displaying parameters</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 set different
displaying parameters for visualization of geometrical objects in the
viewer:</span></b></p>
<p class="whs3">&nbsp;</p>
<ul>
<li class=kadov-p><p class="whs3"><a
href="#W_S">Wireframe/Shading</a></p></li>
<li class=kadov-p><p class="whs3"><a
href="#Color">Color</a></p></li>
<li class=kadov-p><p class="whs3"><a
href="#Transparency">Transparency</a> </p></li>
<li class=kadov-p><p class="whs3"><a
href="#Isos">Isos</a> (in OCC viewer only)</p></li>
</ul>
<p>&nbsp;</p>
<p class=TODO>To set displaying parameters of a geometrical object:</p>
<p class=TODO>&nbsp;</p>
<p class="whs4">Right-click on this geometrical object in
the viewer and from the pop-up menu select <span style="font-weight: bold;"><B>Properties</B></span>.</p>
<p class="whs4">&nbsp;</p>
<p>&nbsp;</p>
<p class="whs5"><b style="font-weight: bold;"><a
NAME=W_S><img src="files/salome2_sp3_displaygui_functions_salome2_sp3_displaygui_functions_image51.gif" width="20px" height="20px" border="0" class="img_whs6">Wireframe/Shading</a></b> </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>
Set the display mode of the selected shape.</p>
<p class="whs3">&nbsp;</p>
<p class="whs3"><b style="font-weight: bold;">TUI
Command:</b><i> gg.setDisplayMode(ID, Short)</i></p>
<p class="whs3">&nbsp;</p>
<p class="whs3"><b style="font-weight: bold;">Example:</b></p>
<p class="whs3">&nbsp;</p>
<p class="whs7"><img src="pics/disp_mode1sn.png" x-maintain-ratio="TRUE" width="403px" height="422px" border="0" class="img_whs8"> &nbsp;<img src="pics/disp_mode2sn.png" x-maintain-ratio="TRUE" width="400px" height="424px" border="0" class="img_whs9"></p>
<p class="whs7">&nbsp;</p>
<p class="whs3">&nbsp;</p>
<p class="whs5"><b style="font-weight: bold;"><a
NAME=Color
style="font-size: 14pt;">Color</a></b></p>
<p class="whs10">&nbsp;</p>
<p class="whs11"><b style="font-weight: bold;">Description:</b>
Change the color of a shape.</p>
<p class="whs11">&nbsp;</p>
<p class="whs11"><b style="font-weight: bold;">TUI Command:</b><i>
gg.setColor(ID, Short, Short, Short)</i></p>
<p class="whs11">&nbsp;</p>
<p class="whs11"><span style="font-size: 12pt;"><font size=3 style="font-size:12pt;"><b style="font-weight: bold;">Example</b></font></span><span
style="font-size: 12pt;"><font size=3 style="font-size:12pt;"><b>:</b></font></span></p>
<p class="whs11">&nbsp;</p>
<p class="whs7"><img src="pics/disp_mode2sn.png" x-maintain-ratio="TRUE" width="400px" height="424px" border="0" class="img_whs9"> &nbsp;<img src="pics/colorsn.png" x-maintain-ratio="TRUE" width="393px" height="423px" border="0" class="img_whs12"></p>
<p class="whs11">&nbsp;</p>
<p class="whs11">&nbsp;</p>
<p class="whs11">&nbsp;</p>
<p class="whs13"><b style="font-weight: bold;"><a NAME=Transparency><span
style="font-size: 14pt;"><font size=4 style="font-size:14pt;">Transparency</font></span></a></b></p>
<p class="whs11">&nbsp;</p>
<p class="whs11"><b style="font-weight: bold;">Description:</b>
Change the transparency (between 0 &amp; 1) of a shape.</p>
<p class="whs11">&nbsp;</p>
<p class="whs11"><b style="font-weight: bold;">TUI Command:</b><i>
gg.setTransparency(ID, Double)</i></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-transparency.png" x-maintain-ratio="TRUE" width="354px" height="177px" border="0" class="img_whs14"></p>
<p class="whs11">&nbsp;</p>
<p class="whs11"><span style="font-size: 12pt;"><font size=3 style="font-size:12pt;"><b style="font-weight: bold;">Example:</b></font></span></p>
<p>&nbsp;</p>
<p class="whs15"><img src="pics/colorsn.png" x-maintain-ratio="TRUE" width="397px" height="428px" border="0" class="img_whs16"> &nbsp;<img src="pics/transparencysn.png" x-maintain-ratio="TRUE" width="401px" height="429px" border="0" class="img_whs17"></p>
<p class="whs11">&nbsp;</p>
<p>&nbsp;</p>
<script type="text/javascript" language="javascript1.2">
<!--
if (window.writeIntopicBar)
writeIntopicBar(0);
//-->
</script>
</body>
</html>

View File

@ -16,10 +16,10 @@ if (navigator.appName !="Netscape")
<!-- <!--
img_whs1 { border:none; width:22px; height:22px; border-style:none; } img_whs1 { border:none; width:22px; height:22px; 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; margin-left:40px; font-weight:bold; }
p.whs4 { font-size:12pt; margin-left:40px; font-weight:bold; } img_whs4 { border:none; width:243px; height:203px; float:none; border-style:none; }
img_whs5 { border:none; width:243px; height:203px; float:none; border-style:none; } p.whs5 { font-size:12pt; margin-left:0px; }
p.whs6 { font-size:12pt; margin-left:0px; } p.whs6 { font-size:12pt; margin-left:40px; }
img_whs7 { border:none; width:436px; height:339px; float:none; border-style:none; } img_whs7 { border:none; width:436px; height:339px; float:none; border-style:none; }
img_whs8 { border:none; width:442px; height:336px; float:none; border-style:none; } img_whs8 { border:none; width:442px; height:336px; float:none; border-style:none; }
p.whs9 { font-weight:bold; } p.whs9 { font-weight:bold; }
@ -29,7 +29,7 @@ p.whs9 { font-weight:bold; }
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 {margin-left:1pt; }"; strNSS += "p.whs5 {margin-left:1pt; }";
strNSS +="</style>"; strNSS +="</style>";
document.write(strNSS); document.write(strNSS);
} }
@ -65,7 +65,7 @@ if (window.gbWhTopic)
{ {
if (window.addTocInfo) if (window.addTocInfo)
{ {
addTocInfo("GEOM module\nTransforming geometrical objects\nRepairing Operations\nCheck Free Boundaries"); addTocInfo("Geometry module\nTransforming geometrical objects\nRepairing Operations\nCheck Free Boundaries");
addButton("show",BTN_TEXT,"Show","","","","",0,0,"","",""); addButton("show",BTN_TEXT,"Show","","","","",0,0,"","","");
} }
@ -102,10 +102,11 @@ else
<p class="whs2">&nbsp;</p> <p class="whs2">&nbsp;</p>
<p class="whs2"><b style="font-weight: bold;">Result:</b> GEOM_Object. <p class="whs2"><span style="font-size: 12pt;"><font size=3 style="font-size:12pt;"><b><span style="font-weight: normal;">The</span>
</p> Result <span style="font-weight: normal;">will be a</span></b><b> <span
style="font-weight: bold;"><B>GEOM_Object. </B></span></b></font></span></p>
<p class="whs2">&nbsp;</p> <p>&nbsp;</p>
<p class="whs2"><b style="font-weight: bold;">TUI Command :</b><i><span <p class="whs2"><b style="font-weight: bold;">TUI Command :</b><i><span
style="font-style: italic;"> <I></i>(NoError, ClosedWires, OpenWires) = geompy.GetFreeBoundary(Shape)</I></span>, style="font-style: italic;"> <I></i>(NoError, ClosedWires, OpenWires) = geompy.GetFreeBoundary(Shape)</I></span>,
@ -115,23 +116,13 @@ else
<p class="whs2">&nbsp;</p> <p class="whs2">&nbsp;</p>
<p class="whs2"><b style="font-weight: bold;">Arguments:</b> <p class="whs3"><img src="pics/repair9.png" x-maintain-ratio="TRUE" width="243px" height="203px" border="0" class="img_whs4"></p>
Shape</p>
<p class="whs2">&nbsp;</p> <p class="whs5">&nbsp;</p>
<p class="whs3"><b style="font-weight: bold;">Dialog <p class="whs5"><b style="font-weight: bold;">Example:</b></p>
Box:</b></p>
<p class="whs3">&nbsp;</p> <p class="whs5">&nbsp;</p>
<p class="whs4"><img src="pics/repair9.png" x-maintain-ratio="TRUE" width="243px" height="203px" border="0" class="img_whs5"></p>
<p class="whs6">&nbsp;</p>
<p class="whs6"><b style="font-weight: bold;">Example:</b></p>
<p class="whs6">&nbsp;</p>
<p class="whs6"><img src="pics/free_boudaries1.png" x-maintain-ratio="TRUE" width="436px" height="339px" border="0" class="img_whs7"> &nbsp;<img src="pics/free_boudaries2.png" x-maintain-ratio="TRUE" width="442px" height="336px" border="0" class="img_whs8">&nbsp; </p> <p class="whs6"><img src="pics/free_boudaries1.png" x-maintain-ratio="TRUE" width="436px" height="339px" border="0" class="img_whs7"> &nbsp;<img src="pics/free_boudaries2.png" x-maintain-ratio="TRUE" width="442px" height="336px" border="0" class="img_whs8">&nbsp; </p>

View File

@ -21,9 +21,10 @@ p.whs4 { font-size:12pt; margin-left:40px; }
img_whs5 { border:none; width:322px; height:163px; float:none; border-style:none; } img_whs5 { border:none; width:322px; height:163px; float:none; border-style:none; }
p.whs6 { font-size:12pt; margin-left:40px; text-indent:-40px; } p.whs6 { font-size:12pt; margin-left:40px; text-indent:-40px; }
p.whs7 { font-size:12pt; margin-left:40px; text-indent:-40px; font-weight:bold; } p.whs7 { font-size:12pt; margin-left:40px; text-indent:-40px; font-weight:bold; }
img_whs8 { border:none; float:none; width:234px; height:281px; border-style:none; } p.whs8 { font-size:12pt; text-indent:-40px; margin-left:80px; }
img_whs9 { border:none; width:248px; height:283px; float:none; border-style:none; } img_whs9 { border:none; float:none; width:234px; height:281px; border-style:none; }
p.whs10 { font-weight:bold; } img_whs10 { border:none; width:248px; height:283px; float:none; border-style:none; }
p.whs11 { font-weight:bold; }
--> -->
</style><script type="text/javascript" language="JavaScript"> </style><script type="text/javascript" language="JavaScript">
<!-- <!--
@ -32,6 +33,7 @@ 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.whs6 {text-indent:1pt; }";
strNSS += "p.whs7 {text-indent:1pt; }"; strNSS += "p.whs7 {text-indent:1pt; }";
strNSS += "p.whs8 {text-indent:1pt; }";
strNSS +="</style>"; strNSS +="</style>";
document.write(strNSS); document.write(strNSS);
} }
@ -67,7 +69,7 @@ if (window.gbWhTopic)
{ {
if (window.addTocInfo) if (window.addTocInfo)
{ {
addTocInfo("GEOM module\nTransforming geometrical objects\nRepairing Operations\nCheck Free Faces"); addTocInfo("Geometry module\nTransforming geometrical objects\nRepairing Operations\nCheck Free Faces");
addButton("show",BTN_TEXT,"Show","","","","",0,0,"","",""); addButton("show",BTN_TEXT,"Show","","","","",0,0,"","","");
} }
@ -97,25 +99,20 @@ else
style="font-weight: bold;"><B>Check Free Faces</B></span> in the Main Menu select style="font-weight: bold;"><B>Check Free Faces</B></span> in the Main Menu select
<span style="font-weight: bold;"><B>Repair - &gt; Check Free Faces.</B></span></p> <span style="font-weight: bold;"><B>Repair - &gt; Check Free Faces.</B></span></p>
<p class="whs2">&nbsp;</p>
<p class="whs2">This operation retrieves all free faces from <p class="whs2">This operation retrieves all free faces from
a given shape. A free face is a face not shared between two shells of a given shape. A free face is a face not shared between two shells of
the shape. </p> the shape. </p>
<p class="whs2">&nbsp;</p> <p class="whs2">&nbsp;</p>
<p class="whs2"><b style="font-weight: bold;">Result:</b> GEOM_Object. <p class="whs2"><b><span style="font-weight: normal;">The</span>
Returns a list of IDs of all free faces, contained in the shape.</p> Result <span style="font-weight: normal;">will be a</span></b><b> <span
style="font-weight: bold;"><B>GEOM_Object</B></span><span style="font-weight: normal;">
(a list of IDs of all free faces, containing in the shape)</span><span
style="font-weight: bold;"><B>. </B></span></b></p>
<p class="whs2"><b style="font-weight: bold;">TUI Command :</b><i><span <p class="whs2"><b>TUI Command :</b><i><span style="font-style: italic;">
style="font-style: italic;"> <I></i>GetFreeFacesIDs(Shape)</I></span>, where <I></i>GetFreeFacesIDs(Shape)</I></span>, where Shape is a shape to be checked.</p>
Shape is a shape to be checked.</p>
<p class="whs2"><b style="font-weight: bold;"><span style="font-weight: bold;"><B>A</B></span>rguments:</b>
Shape</p>
<p class="whs3">&nbsp;</p>
<p class="whs3">&nbsp;</p> <p class="whs3">&nbsp;</p>
@ -127,11 +124,11 @@ else
<p class="whs6">&nbsp;</p> <p class="whs6">&nbsp;</p>
<p class="whs6"><img src="pics/free_faces1.png" x-maintain-ratio="TRUE" width="234px" height="281px" border="0" class="img_whs8"> &nbsp;<img src="pics/free_faces2.png" x-maintain-ratio="TRUE" width="248px" height="283px" border="0" class="img_whs9"></p> <p class="whs8"><img src="pics/free_faces1.png" x-maintain-ratio="TRUE" width="234px" height="281px" border="0" class="img_whs9"> &nbsp;<img src="pics/free_faces2.png" x-maintain-ratio="TRUE" width="248px" height="283px" border="0" class="img_whs10"></p>
<p class="whs6">&nbsp;</p> <p class="whs6">&nbsp;</p>
<p class="whs10"><span style="font-weight: normal;">Our</span> <p class="whs11"><span style="font-weight: normal;">Our</span>
TUI Scripts<span style="font-weight: normal;"> provide you with useful TUI Scripts<span style="font-weight: normal;"> provide you with useful
examples of the use of</span> <a href="repairing_operations.htm#bookmark9">Repairing examples of the use of</span> <a href="repairing_operations.htm#bookmark9">Repairing
Operations</a>. </p> Operations</a>. </p>

View File

@ -17,9 +17,10 @@ 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; }
img_whs4 { border:none; width:312px; height:346px; float:none; border-style:none; } p.whs4 { font-size:12pt; margin-left:40px; }
img_whs5 { border:none; width:312px; height:359px; float:none; border-style:none; } img_whs5 { border:none; width:312px; height:346px; float:none; border-style:none; }
img_whs6 { border:none; width:348px; height:321px; float:none; border-style:none; } img_whs6 { border:none; width:312px; height:359px; float:none; border-style:none; }
img_whs7 { border:none; width:348px; height:321px; float:none; border-style:none; }
--> -->
</style><script type="text/javascript" language="JavaScript" title="WebHelpInlineScript"> </style><script type="text/javascript" language="JavaScript" title="WebHelpInlineScript">
<!-- <!--
@ -51,7 +52,7 @@ if (window.gbWhTopic)
{ {
if (window.addTocInfo) if (window.addTocInfo)
{ {
addTocInfo("GEOM module\nCreating geometrical objects\nCreation of Basic Geometric Objects\nCircle"); addTocInfo("Geometry module\nCreating geometrical objects\nCreating Basic Geometric Objects\nCircle");
addButton("show",BTN_TEXT,"Show","","","","",0,0,"","",""); addButton("show",BTN_TEXT,"Show","","","","",0,0,"","","");
} }
@ -108,7 +109,7 @@ else
<p class="whs3">&nbsp;</p> <p class="whs3">&nbsp;</p>
<p class="whs2"><img src="pics/circle1.png" x-maintain-ratio="TRUE" width="312px" height="346px" border="0" class="img_whs4"> </p> <p class="whs4"><img src="pics/circle1.png" x-maintain-ratio="TRUE" width="312px" height="346px" border="0" class="img_whs5"> </p>
<p class="whs2">&nbsp;</p> <p class="whs2">&nbsp;</p>
@ -126,11 +127,11 @@ else
<p class="whs2">&nbsp;</p> <p class="whs2">&nbsp;</p>
<p class="whs2"><b style="font-weight: bold;"><img src="pics/circle2.png" x-maintain-ratio="TRUE" width="312px" height="359px" border="0" class="img_whs5"></b></p> <p class="whs4"><b style="font-weight: bold;"><img src="pics/circle2.png" x-maintain-ratio="TRUE" width="312px" height="359px" border="0" class="img_whs6"></b></p>
<p class="whs2">&nbsp;</p> <p class="whs2">&nbsp;</p>
<p class="whs2"><b style="font-weight: bold;"><img src="pics/circles.png" x-maintain-ratio="TRUE" width="348px" height="321px" border="0" class="img_whs6"></b></p> <p class="whs4"><b style="font-weight: bold;"><img src="pics/circles.png" x-maintain-ratio="TRUE" width="348px" height="321px" border="0" class="img_whs7"></b></p>
<p>&nbsp;</p> <p>&nbsp;</p>

View File

@ -52,7 +52,7 @@ if (window.gbWhTopic)
{ {
if (window.addTocInfo) if (window.addTocInfo)
{ {
addTocInfo("GEOM module\nTransforming geometrical objects\nRepairing Operations\nClose Contour"); addTocInfo("Geometry module\nTransforming geometrical objects\nRepairing Operations\nClose Contour");
addButton("show",BTN_TEXT,"Show","","","","",0,0,"","",""); addButton("show",BTN_TEXT,"Show","","","","",0,0,"","","");
} }
@ -103,7 +103,10 @@ else
<p class="whs2">&nbsp;</p> <p class="whs2">&nbsp;</p>
<p class="whs2"><b style="font-weight: bold;">Result:</b> GEOM_Object.</p> <p class="whs2"><span style="font-size: 12pt;"><font size=3 style="font-size:12pt;"><b style="font-weight: bold;"><b><span
style="font-weight: normal;">T</b>he</span> Result <span style="font-weight: normal;">will
be a</span></b><b> <span style="font-weight: bold;"><B>GEOM_Object</B></span></b><span
style="font-weight: bold;"><B>.</B></span></font></span></p>
<p class="whs2">&nbsp;</p> <p class="whs2">&nbsp;</p>
@ -124,10 +127,6 @@ else
<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">&nbsp;</p>
<p class="whs4"><img src="pics/repair3.png" x-maintain-ratio="TRUE" width="312px" height="397px" border="0" class="img_whs5"></p> <p class="whs4"><img src="pics/repair3.png" x-maintain-ratio="TRUE" width="312px" height="397px" border="0" class="img_whs5"></p>
<p class="whs6">&nbsp;</p> <p class="whs6">&nbsp;</p>

View File

@ -15,7 +15,8 @@ if (navigator.appName !="Netscape")
<style type="text/css"> <style type="text/css">
<!-- <!--
p.whs1 { font-size:12pt; } p.whs1 { font-size:12pt; }
img_whs2 { border:none; width:492px; height:392px; float:none; border-style:none; } p.whs2 { margin-left:40px; }
img_whs3 { border:none; width:492px; height:392px; float:none; border-style:none; }
--> -->
</style><script type="text/javascript" language="JavaScript" title="WebHelpInlineScript"> </style><script type="text/javascript" language="JavaScript" title="WebHelpInlineScript">
<!-- <!--
@ -47,7 +48,7 @@ if (window.gbWhTopic)
{ {
if (window.addTocInfo) if (window.addTocInfo)
{ {
addTocInfo("GEOM module\nManaging geometrical objects\nChanging Display Parameters\nColor"); addTocInfo("Geometry module\nViewing geometrical objects\nColor");
addButton("show",BTN_TEXT,"Show","","","","",0,0,"","",""); addButton("show",BTN_TEXT,"Show","","","","",0,0,"","","");
} }
@ -85,7 +86,7 @@ else
<p>&nbsp;</p> <p>&nbsp;</p>
<p><img src="selectcolor.png" x-maintain-ratio="TRUE" width="492px" height="392px" border="0" class="img_whs2"></p> <p class="whs2"><img src="selectcolor.png" x-maintain-ratio="TRUE" width="492px" height="392px" border="0" class="img_whs3"></p>
<p>&nbsp;</p> <p>&nbsp;</p>

View File

@ -64,7 +64,7 @@ if (window.gbWhTopic)
{ {
if (window.addTocInfo) if (window.addTocInfo)
{ {
addTocInfo("GEOM module\nTransforming geometrical objects\nBoolean Operations\nCommon"); addTocInfo("Geometry module\nTransforming geometrical objects\nBoolean Operations\nCommon");
addButton("show",BTN_TEXT,"Show","","","","",0,0,"","",""); addButton("show",BTN_TEXT,"Show","","","","",0,0,"","","");
} }
@ -91,8 +91,9 @@ else
<h1><span style="font-size: 14pt;"><font size=4 style="font-size:14pt;"><b style="font-weight: bold;"><img src="files/salome2_sp3_booleangui_functions_salome2_sp3_booleangui_functions_image1.gif" width="20px" height="20px" border="0" class="img_whs1"> </b></font></span>Common</h1> <h1><span style="font-size: 14pt;"><font size=4 style="font-size:14pt;"><b style="font-weight: bold;"><img src="files/salome2_sp3_booleangui_functions_salome2_sp3_booleangui_functions_image1.gif" width="20px" height="20px" border="0" class="img_whs1"> </b></font></span>Common</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>Common</B></span> in the Main Menu select a <span style="font-weight: bold;"><B>Common</B></span> operation in the Main
<span style="font-weight: bold;"><B>Operations - &gt; Boolean - &gt; Common</B></span></p> Menu select <span style="font-weight: bold;"><B>Operations - &gt; Boolean
- &gt; Common</B></span></p>
<p class="whs3">&nbsp;</p> <p class="whs3">&nbsp;</p>

View File

@ -46,7 +46,7 @@ if (window.gbWhTopic)
{ {
if (window.addTocInfo) if (window.addTocInfo)
{ {
addTocInfo("GEOM module\nTUI Scripts\nCreation of Geometric Objects\nComplex Objects"); addTocInfo("Geometry module\nTUI Scripts\nCreating Geometric Objects\nComplex Objects");
addButton("show",BTN_TEXT,"Show","","","","",0,0,"","",""); addButton("show",BTN_TEXT,"Show","","","","",0,0,"","","");
} }

View File

@ -50,7 +50,7 @@ if (window.gbWhTopic)
{ {
if (window.addTocInfo) if (window.addTocInfo)
{ {
addTocInfo("GEOM module\nCreating geometrical objects\nCreation of Advanced Geometrical Objects\nCompound"); addTocInfo("Geometry module\nCreating geometrical objects\nCreating Advanced Geometrical Objects\nCompound");
addButton("show",BTN_TEXT,"Show","","","","",0,0,"","",""); addButton("show",BTN_TEXT,"Show","","","","",0,0,"","","");
} }

View File

@ -17,23 +17,14 @@ 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-weight:bold; } p.whs3 { font-weight:bold; }
img_whs4 { border:none; width:312px; height:402px; float:none; border-style:none; } p.whs4 { margin-left:40px; }
p.whs5 { margin-left:0px; } img_whs5 { border:none; width:312px; height:402px; float:none; border-style:none; }
p.whs6 { font-size:12pt; margin-left:40px; } p.whs6 { font-weight:bold; margin-left:40px; }
img_whs7 { border:none; width:276px; height:282px; float:none; border-style:none; } img_whs7 { border:none; width:312px; height:402px; float:none; border-style:none; }
p.whs8 { font-size:12pt; margin-left:40px; }
img_whs9 { border:none; width:276px; height:282px; float:none; border-style:none; }
--> -->
</style><script type="text/javascript" language="JavaScript"> </style><script type="text/javascript" language="JavaScript" title="WebHelpInlineScript">
<!--
if ((navigator.appName == "Netscape") && (parseInt(navigator.appVersion) == 4))
{
var strNSS = "<style type='text/css'>";
strNSS += "p.whs5 {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)
@ -63,7 +54,7 @@ if (window.gbWhTopic)
{ {
if (window.addTocInfo) if (window.addTocInfo)
{ {
addTocInfo("GEOM module\nCreating geometrical objects\nCreation of Primitives\nCone"); addTocInfo("Geometry module\nCreating geometrical objects\nCreating Primitives\nCone");
addButton("show",BTN_TEXT,"Show","","","","",0,0,"","",""); addButton("show",BTN_TEXT,"Show","","","","",0,0,"","","");
} }
@ -118,7 +109,9 @@ else
+ 1 vector (for direction) + 3 values (Radius of the base part, radius + 1 vector (for direction) + 3 values (Radius of the base part, radius
of the upper part, height).</font></span></p> of the upper part, height).</font></span></p>
<p><img src="pics/cone1.png" x-maintain-ratio="TRUE" width="312px" height="402px" border="0" class="img_whs4"></p> <p class="whs3">&nbsp;</p>
<p class="whs4"><img src="pics/cone1.png" x-maintain-ratio="TRUE" width="312px" height="402px" border="0" class="img_whs5"></p>
<p>&nbsp;</p> <p>&nbsp;</p>
@ -128,16 +121,15 @@ else
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>
<p><b style="font-weight: bold;">TUI Command:</b> <span style="font-weight: bold;"><B>geompy.MakeConeR1R2H(Radius1, <p><b style="font-weight: bold;">TUI Command:</b> <span style="font-style: italic;"><I>geompy.MakeConeR1R2H(Radius1,
Radius2, Height)</B></span> </p> Radius2, Height)</I></span> </p>
<p class="whs3"><b style="font-weight: bold;">Arguments: <p class="whs3"><b>Arguments: </b><span style="font-size: 12pt; font-weight: normal;"><font size=3 style="font-size:12pt;">Name
</b><span style="font-size: 12pt; font-weight: normal;"><font size=3 style="font-size:12pt;">Name + 3 values + 3 values (Radius of the base part, radius of the upper part, height).</font></span></p>
(Radius of the base part, radius of the upper part, height).</font></span></p>
<p class="whs5">&nbsp;&nbsp;<img src="pics/cone2.png" x-maintain-ratio="TRUE" width="312px" height="402px" border="0" class="img_whs4"></p> <p class="whs6"><img src="pics/cone2.png" x-maintain-ratio="TRUE" width="312px" height="402px" border="0" class="img_whs7"></p>
<p>&nbsp;</p> <p class="whs3">&nbsp;</p>
<p><span style="font-weight: bold;"><B>Note:</B></span> If both radiuses are non-zero, <p><span style="font-weight: bold;"><B>Note:</B></span> If both radiuses are non-zero,
the <span style="font-weight: bold;"><B>Cone</B></span> will be truncated. If the <span style="font-weight: bold;"><B>Cone</B></span> will be truncated. If
@ -150,9 +142,9 @@ else
<p>&nbsp;</p> <p>&nbsp;</p>
<p class="whs6"><img src="pics/cones.png" x-maintain-ratio="TRUE" width="276px" height="282px" border="0" class="img_whs7"></p> <p class="whs8"><img src="pics/cones.png" x-maintain-ratio="TRUE" width="276px" height="282px" border="0" class="img_whs9"></p>
<p class="whs6">&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 creation of <a href="primitives.htm#bookmark4">Primitives</a>. </p> of creation of <a href="primitives.htm#bookmark4">Primitives</a>. </p>

View File

@ -18,13 +18,14 @@ img_whs1 { border:none; width:20px; height:20px; border-style:none; }
p.whs2 { font-size:12pt; } p.whs2 { font-size:12pt; }
ul.whs3 { list-style:disc; } ul.whs3 { list-style:disc; }
p.whs4 { font-size:12pt; font-style:italic; } p.whs4 { font-size:12pt; font-style:italic; }
img_whs5 { border:none; width:312px; height:289px; float:none; border-style:none; } p.whs5 { font-size:12pt; font-style:italic; margin-left:40px; }
p.whs6 { font-size:12pt; font-style:normal; font-weight:bold; } img_whs6 { border:none; width:312px; height:289px; float:none; border-style:none; }
p.whs7 { font-size:12pt; font-weight:bold; font-style:italic; x-text-underline:off; text-decoration:none; } p.whs7 { font-size:12pt; font-style:normal; font-weight:bold; }
img_whs8 { border:none; float:none; width:310px; height:308px; border-style:none; } p.whs8 { font-size:12pt; font-weight:bold; font-style:italic; x-text-underline:off; text-decoration:none; }
img_whs9 { border:none; width:313px; height:310px; float:none; border-style:none; } img_whs9 { border:none; float:none; width:310px; height:308px; border-style:none; }
img_whs10 { border:none; float:none; width:291px; height:313px; border-style:none; } img_whs10 { border:none; width:313px; height:310px; float:none; border-style:none; }
p.whs11 { font-size:12pt; margin-left:40px; } img_whs11 { border:none; float:none; width:291px; height:313px; border-style:none; }
p.whs12 { font-size:12pt; margin-left:40px; }
--> -->
</style><script type="text/javascript" language="JavaScript" title="WebHelpInlineScript"> </style><script type="text/javascript" language="JavaScript" title="WebHelpInlineScript">
<!-- <!--
@ -56,7 +57,7 @@ if (window.gbWhTopic)
{ {
if (window.addTocInfo) if (window.addTocInfo)
{ {
addTocInfo("GEOM module\nCreating geometrical objects\nCreation of Basic Geometric Objects\nCurve"); addTocInfo("Geometry module\nCreating geometrical objects\nCreating Basic Geometric Objects\nCurve");
addButton("show",BTN_TEXT,"Show","","","","",0,0,"","",""); addButton("show",BTN_TEXT,"Show","","","","",0,0,"","","");
} }
@ -123,15 +124,15 @@ else
<p class="whs4">&nbsp;</p> <p class="whs4">&nbsp;</p>
<p class="whs4"><img src="pics/curve.png" x-maintain-ratio="TRUE" width="312px" height="289px" border="0" class="img_whs5"> </p> <p class="whs5"><img src="pics/curve.png" x-maintain-ratio="TRUE" width="312px" height="289px" border="0" class="img_whs6"> </p>
<p class="whs4">&nbsp;</p> <p class="whs4">&nbsp;</p>
<p class="whs6">Examples:</p> <p class="whs7">Examples:</p>
<p class="whs2">&nbsp;</p> <p class="whs2">&nbsp;</p>
<p class="whs7">Polyline <p class="whs8">Polyline
&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;<span &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;<span
style="font-size: 12pt; style="font-size: 12pt;
font-weight: bold; font-weight: bold;
@ -140,9 +141,9 @@ else
/*begin!kadov{{*/ text-decoration: none; /*}}end!kadov*/ "><font size=3 style="font-size:12pt;"><I><B>&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;Bezier /*begin!kadov{{*/ text-decoration: none; /*}}end!kadov*/ "><font size=3 style="font-size:12pt;"><I><B>&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;Bezier
&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;B-Spline</B></I></font></span></p> &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;B-Spline</B></I></font></span></p>
<p class="whs2"><img src="pics/polyline.png" x-maintain-ratio="TRUE" width="310px" height="308px" border="0" class="img_whs8"> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<img src="pics/bezier.png" x-maintain-ratio="TRUE" width="313px" height="310px" border="0" class="img_whs9"> &nbsp;&nbsp;&nbsp;&nbsp;<img src="pics/interpol.png" x-maintain-ratio="TRUE" width="291px" height="313px" border="0" class="img_whs10"></p> <p class="whs2"><img src="pics/polyline.png" x-maintain-ratio="TRUE" width="310px" height="308px" border="0" class="img_whs9"> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<img src="pics/bezier.png" x-maintain-ratio="TRUE" width="313px" height="310px" border="0" class="img_whs10"> &nbsp;&nbsp;&nbsp;&nbsp;<img src="pics/interpol.png" x-maintain-ratio="TRUE" width="291px" height="313px" border="0" class="img_whs11"></p>
<p class="whs11">&nbsp;</p> <p class="whs12">&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 creation of <a href="basic_geometrical_objects.htm#bookmark4">Basic of creation of <a href="basic_geometrical_objects.htm#bookmark4">Basic

View File

@ -20,7 +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; }
img_whs6 { border:none; border-style:none; width:253px; height:266px; float:none; } img_whs6 { border:none; border-style:none; width:253px; height:266px; float:none; }
img_whs7 { border:none; border-style:none; width:231px; height:267px; float:none; } img_whs7 { border:none; width:231px; height:267px; float:none; border-style:none; }
--> -->
</style><script type="text/javascript" language="JavaScript"> </style><script type="text/javascript" language="JavaScript">
<!-- <!--
@ -64,7 +64,7 @@ if (window.gbWhTopic)
{ {
if (window.addTocInfo) if (window.addTocInfo)
{ {
addTocInfo("GEOM module\nTransforming geometrical objects\nBoolean Operations\nCut"); addTocInfo("Geometry module\nTransforming geometrical objects\nBoolean Operations\nCut");
addButton("show",BTN_TEXT,"Show","","","","",0,0,"","",""); addButton("show",BTN_TEXT,"Show","","","","",0,0,"","","");
} }
@ -91,8 +91,9 @@ else
<h1><span style="font-size: 14pt;"><font size=4 style="font-size:14pt;"><img src="files/salome2_sp3_booleangui_functions_salome2_sp3_booleangui_functions_image2.gif" width="20px" height="20px" border="0" class="img_whs1"> </font></span>Cut</h1> <h1><span style="font-size: 14pt;"><font size=4 style="font-size:14pt;"><img src="files/salome2_sp3_booleangui_functions_salome2_sp3_booleangui_functions_image2.gif" width="20px" height="20px" border="0" class="img_whs1"> </font></span>Cut</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>Cut</B></span> in the Main Menu select a <span style="font-weight: bold;"><B>Cut</B></span> operation in the Main Menu
<span style="font-weight: bold;"><B>Operations - &gt; Boolean - &gt; Cut</B></span></p> select <span style="font-weight: bold;"><B>Operations - &gt; Boolean - &gt;
Cut</B></span></p>
<p>&nbsp;</p> <p>&nbsp;</p>

View File

@ -17,17 +17,18 @@ 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-weight:bold; } p.whs3 { font-weight:bold; }
img_whs4 { border:none; width:312px; height:376px; float:none; border-style:none; } p.whs4 { margin-left:40px; }
p.whs5 { margin-left:0px; } img_whs5 { border:none; width:312px; height:376px; float:none; border-style:none; }
p.whs6 { margin-left:40px; } img_whs6 { border:none; width:312px; height:376px; border-style:none; float:none; }
img_whs7 { border:none; width:287px; height:272px; float:none; border-style:none; } p.whs7 { margin-left:0px; }
img_whs8 { border:none; width:287px; height:272px; 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.whs5 {margin-left:1pt; }"; strNSS += "p.whs7 {margin-left:1pt; }";
strNSS +="</style>"; strNSS +="</style>";
document.write(strNSS); document.write(strNSS);
} }
@ -63,7 +64,7 @@ if (window.gbWhTopic)
{ {
if (window.addTocInfo) if (window.addTocInfo)
{ {
addTocInfo("GEOM module\nCreating geometrical objects\nCreation of Primitives\nCylinder"); addTocInfo("Geometry module\nCreating geometrical objects\nCreating Primitives\nCylinder");
addButton("show",BTN_TEXT,"Show","","","","",0,0,"","",""); addButton("show",BTN_TEXT,"Show","","","","",0,0,"","","");
} }
@ -117,7 +118,7 @@ else
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 vertex + 1 vector + 2 values (Dimensions: radius and height).</font></span></p> + 1 vertex + 1 vector + 2 values (Dimensions: radius and height).</font></span></p>
<p><b style="font-weight: bold;"><img src="pics/cylinder1.png" x-maintain-ratio="TRUE" width="312px" height="376px" border="0" class="img_whs4"></b></p> <p class="whs4"><b style="font-weight: bold;"><img src="pics/cylinder1.png" x-maintain-ratio="TRUE" width="312px" height="376px" border="0" class="img_whs5"></b></p>
<p>&nbsp;</p> <p>&nbsp;</p>
@ -130,20 +131,22 @@ else
<p><b style="font-weight: bold;">TUI Command: </b><span style="font-style: italic;"><I>geompy.MakeCylinderRH(Radius, <p><b style="font-weight: bold;">TUI Command: </b><span style="font-style: italic;"><I>geompy.MakeCylinderRH(Radius,
Height)</I></span></p> Height)</I></span></p>
<p><span><b style="font-weight: bold;">Arguments</span>: </b><span style="font-size: 12pt;"><font size=3 style="font-size:12pt;">Name <p><b>Arguments: </b><span style="font-size: 12pt;"><font size=3 style="font-size:12pt;">Name + </font></span>2 values
+ </font></span>2 values (Dimensions at origin: radius and height).</p> (Dimensions at origin: radius and height).</p>
<p class="whs5">&nbsp;&nbsp;<img src="pics/cylinder2.png" x-maintain-ratio="TRUE" width="312px" height="376px" border="0" class="img_whs4"></p>
<p>&nbsp;</p> <p>&nbsp;</p>
<p class="whs4"><img src="pics/cylinder2.png" x-maintain-ratio="TRUE" width="312px" height="376px" border="0" class="img_whs6"></p>
<p class="whs7">&nbsp;&nbsp;</p>
<p><b style="font-weight: bold;">Example:</b></p> <p><b style="font-weight: bold;">Example:</b></p>
<p>&nbsp;</p> <p>&nbsp;</p>
<p class="whs6"><img src="pics/cylinders.png" x-maintain-ratio="TRUE" width="287px" height="272px" border="0" class="img_whs7"></p> <p class="whs4"><img src="pics/cylinders.png" x-maintain-ratio="TRUE" width="287px" height="272px" border="0" class="img_whs8"></p>
<p class="whs6">&nbsp;</p> <p class="whs4">&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 creation of <a href="primitives.htm#bookmark1">Primitives</a>. </p> of creation of <a href="primitives.htm#bookmark1">Primitives</a>. </p>

View File

@ -50,7 +50,7 @@ if (window.gbWhTopic)
{ {
if (window.addTocInfo) if (window.addTocInfo)
{ {
addTocInfo("GEOM module\nCreating geometrical objects\nCreation of Advanced Geometrical Objects\nEdge"); addTocInfo("Geometry module\nCreating geometrical objects\nCreating Advanced Geometrical Objects\nEdge");
addButton("show",BTN_TEXT,"Show","","","","",0,0,"","",""); addButton("show",BTN_TEXT,"Show","","","","",0,0,"","","");
} }

View File

@ -65,7 +65,7 @@ if (window.gbWhTopic)
{ {
if (window.addTocInfo) if (window.addTocInfo)
{ {
addTocInfo("GEOM module\nCreating geometrical objects\nCreation of Basic Geometric Objects\nEllipse"); addTocInfo("Geometry module\nCreating geometrical objects\nCreating Basic Geometric Objects\nEllipse");
addButton("show",BTN_TEXT,"Show","","","","",0,0,"","",""); addButton("show",BTN_TEXT,"Show","","","","",0,0,"","","");
} }
@ -104,9 +104,9 @@ else
style="font-weight: normal;">giving its normal, and its</span> Major &amp; style="font-weight: normal;">giving its normal, and its</span> Major &amp;
Minor Radiuses.</b></p> Minor Radiuses.</b></p>
<p class="whs2"><b style="font-weight: bold;"><span style="font-weight: normal;">The</span> <p class="whs2"><b><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>
GEOM_Object (edge).</b></p> <span style="font-weight: normal;">GEOM_Object (edge).</span></b></p>
<p class="whs2">&nbsp;</p> <p class="whs2">&nbsp;</p>

View File

@ -66,7 +66,7 @@ if (window.gbWhTopic)
{ {
if (window.addTocInfo) if (window.addTocInfo)
{ {
addTocInfo("GEOM module\nCreating geometrical objects\nCreation of Advanced Geometrical Objects\nExplode"); addTocInfo("Geometry module\nCreating geometrical objects\nCreating Advanced Geometrical Objects\nExplode");
addButton("show",BTN_TEXT,"Show","","","","",0,0,"","",""); addButton("show",BTN_TEXT,"Show","","","","",0,0,"","","");
} }

View File

@ -70,7 +70,7 @@ if (window.gbWhTopic)
{ {
if (window.addTocInfo) if (window.addTocInfo)
{ {
addTocInfo("GEOM module\nTransforming geometrical objects\nBlocks Operations\nExplode on Blocks"); addTocInfo("Geometry module\nTransforming geometrical objects\nBlocks Operations\nExplode on Blocks");
addButton("show",BTN_TEXT,"Show","","","","",0,0,"","",""); addButton("show",BTN_TEXT,"Show","","","","",0,0,"","","");
} }

View File

@ -16,26 +16,14 @@ 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:350px; float:none; border-style:none; } p.whs3 { font-size:12pt; margin-left:40px; }
p.whs4 { font-size:12pt; font-weight:bold; } img_whs4 { border:none; width:312px; height:350px; float:none; border-style:none; }
p.whs5 { font-size:12pt; margin-left:40px; } p.whs5 { font-size:12pt; font-weight:bold; }
p.whs6 { font-size:12pt; font-style:italic; } p.whs6 { font-size:12pt; font-style:italic; margin-left:40px; }
p.whs7 { font-size:12pt; margin-left:0px; } img_whs7 { border:none; float:none; width:300px; height:175px; border-style:none; }
img_whs8 { border:none; float:none; width:300px; height:175px; border-style:none; } img_whs8 { border:none; width:350px; height:175px; 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" title="WebHelpInlineScript">
<!--
if ((navigator.appName == "Netscape") && (parseInt(navigator.appVersion) == 4))
{
var strNSS = "<style type='text/css'>";
strNSS += "p.whs7 {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)
@ -65,7 +53,7 @@ if (window.gbWhTopic)
{ {
if (window.addTocInfo) if (window.addTocInfo)
{ {
addTocInfo("GEOM module\nCreating geometrical objects\nGeneration of Complex Objects\nExtrusion"); addTocInfo("Geometry module\nCreating geometrical objects\nCreating Complex Objects\nExtrusion");
addButton("show",BTN_TEXT,"Show","","","","",0,0,"","",""); addButton("show",BTN_TEXT,"Show","","","","",0,0,"","","");
} }
@ -102,7 +90,7 @@ else
<p class="whs2">To create an Extrusion (Prism) you should define <p class="whs2">To create an Extrusion (Prism) you should define
the <span style="font-weight: bold;"><B>Base Shape </B></span>(a basis of the the <span style="font-weight: bold;"><B>Base Shape </B></span>(a basis of the
extrusion)<span style="font-weight: bold;"><B>, </B></span>the <span style="font-weight: bold;"><B>Vector</B></span> extrusion)<span style="font-weight: bold;"><B>, </B></span>the <span style="font-weight: bold;"><B>Vector</B></span>
(a normal of the extrusion) and the <span style="font-weight: bold;"><B>Height</B></span> (a direction of the extrusion) and the <span style="font-weight: bold;"><B>Height</B></span>
of extrusion. &nbsp;</p> of extrusion. &nbsp;</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>
@ -119,28 +107,28 @@ else
<p>&nbsp;</p> <p>&nbsp;</p>
<p class="whs2"><img src="pics/extrusion.png" x-maintain-ratio="TRUE" width="312px" height="350px" border="0" class="img_whs3"></p> <p class="whs3"><img src="pics/extrusion.png" x-maintain-ratio="TRUE" width="312px" height="350px" border="0" class="img_whs4"></p>
<p class="whs2">&nbsp;</p> <p class="whs2">&nbsp;</p>
<p class="whs4">NB! <span style="font-weight: normal;">The <p class="whs5">NB! <span style="font-weight: normal;">The
is another way to create an</span> Extrusion, <span style="font-weight: normal;">which is another way to create an</span> Extrusion, <span style="font-weight: normal;">which
is currently accessible only via</span> TUI commands.</p> is currently accessible only via</span> TUI commands.</p>
<p class="whs4"><span style="font-weight: normal;">You <p class="whs5"><span style="font-weight: normal;">You
can define the</span> Extrusion <span style="font-weight: normal;">by can define the</span> Extrusion <span style="font-weight: normal;">by
the </span>Base Shape<span style="font-weight: normal;"> and the </span>Start<span the </span>Base Shape<span style="font-weight: normal;"> and the </span>Start<span
style="font-weight: normal;"> and </span>End Point<span style="font-weight: normal;"> style="font-weight: normal;"> and </span>End Point<span style="font-weight: normal;">
of the </span>Vector<span style="font-weight: normal;"> &nbsp;(in of the </span>Vector<span style="font-weight: normal;"> &nbsp;(in
this way you don't need to create it in advance).</span> </p> this way you don't need to create it in advance).</span> </p>
<p class="whs4"><b style="font-weight: bold;">TUI <p class="whs5"><b style="font-weight: bold;">TUI
Command:</b> <span style="font-weight: normal; font-style: italic;"><I>geompy.MakePrism(Base, Command:</b> <span style="font-weight: normal; font-style: italic;"><I>geompy.MakePrism(Base,
Point1, Point2) </I></span></p> Point1, Point2) </I></span></p>
<p>&nbsp;</p> <p>&nbsp;</p>
<p class="whs5">&nbsp;</p> <p class="whs3">&nbsp;</p>
<p class="whs2"><b style="font-weight: bold;">Examples:</b></p> <p class="whs2"><b style="font-weight: bold;">Examples:</b></p>
@ -148,7 +136,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="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="whs3"><img src="pics/prisms_basessn.png" x-maintain-ratio="TRUE" width="300px" height="175px" border="0" class="img_whs7"> <img src="pics/prismssn.png" x-maintain-ratio="TRUE" width="350px" height="175px" border="0" class="img_whs8"> &nbsp;</p>
<p class="whs2">&nbsp;</p> <p class="whs2">&nbsp;</p>

View File

@ -52,7 +52,7 @@ if (window.gbWhTopic)
{ {
if (window.addTocInfo) if (window.addTocInfo)
{ {
addTocInfo("GEOM module\nCreating geometrical objects\nCreation of Advanced Geometrical Objects\nFace"); addTocInfo("Geometry module\nCreating geometrical objects\nCreating Advanced Geometrical Objects\nFace");
addButton("show",BTN_TEXT,"Show","","","","",0,0,"","",""); addButton("show",BTN_TEXT,"Show","","","","",0,0,"","","");
} }

View File

@ -20,9 +20,8 @@ table.whs3 { x-cell-content-align:top; width:100%; border-spacing:0px; }
col.whs4 { width:50%; } col.whs4 { width:50%; }
tr.whs5 { x-cell-content-align:top; } 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; } td.whs7 { 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_whs8 { border:none; width:400px; height:292px; border-style:none; }
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">
<!-- <!--
@ -54,7 +53,7 @@ if (window.gbWhTopic)
{ {
if (window.addTocInfo) if (window.addTocInfo)
{ {
addTocInfo("GEOM module\nIntroduction to GEOM"); addTocInfo("Geometry module\nIntroduction to Geometry");
addButton("show",BTN_TEXT,"Show","","","","",0,0,"","",""); addButton("show",BTN_TEXT,"Show","","","","",0,0,"","","");
} }
@ -78,10 +77,10 @@ else
document.location.reload(); document.location.reload();
//--> //-->
</script> </script>
<h1>Introduction to GEOM</h1> <h1>Introduction to Geometry</h1>
<p><img src="../i_blue.jpg" x-maintain-ratio="TRUE" width="30px" height="30px" border="0" class="img_whs1"><span style="font-weight: bold;"><B>GEOM </B></span>module of <p><img src="../i_blue.jpg" x-maintain-ratio="TRUE" width="30px" height="30px" border="0" class="img_whs1"><span style="font-weight: bold;"><B>Geometry </B></span>module
SALOME is destined for: </p> of SALOME is destined for: </p>
<p>&nbsp;</p> <p>&nbsp;</p>
@ -103,7 +102,7 @@ else
<tr valign="top" class="whs5"> <tr valign="top" class="whs5">
<td width="50%" class="whs6"> <td width="50%" class="whs6">
<ul type="circle" class="whs7"> <ul type="disc" class="whs2">
<li class=kadov-p><p>Creation of basic geometrical objects</p></li> <li class=kadov-p><p>Creation of basic geometrical objects</p></li>
@ -122,12 +121,10 @@ else
<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>Building by blocks</p></li>
<li class=kadov-p><p>Generation of complex objects</p></li>
</ul> </ul>
<p>&nbsp;</td> <p>&nbsp;</td>
<td width="50%" class="whs8"> <td width="50%" class="whs7">
<p><img src="../image3.jpg" width="400px" height="292px" border="0" class="img_whs9"></td></tr> <p><img src="../image3.jpg" width="400px" height="292px" border="0" class="img_whs8"></td></tr>
</table> </table>
<p>&nbsp;</p> <p>&nbsp;</p>

View File

@ -1,885 +0,0 @@
<!doctype HTML public "-//W3C//DTD HTML 4.0 Frameset//EN">
<html>
<head>
<title>Titre</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>
<!--
A:link { color:#0000ff; }
-->
</style><style type="text/css">
<!--
p.whs1 { font-family:'Times New Roman' , serif; font-size:12pt; }
img_whs2 { border:none; float:none; width:30px; height:30px; border-style:none; }
ul.whs3 { list-style:disc; }
p.whs4 { font-size:12pt; }
p.whs5 { margin-left:40px; }
p.whs6 { font-family:'Times New Roman' , serif; font-size:14pt; }
img_whs7 { width:20px; height:20px; border-style:none; }
p.whs8 { font-size:12pt; margin-left:120px; }
p.whs9 { font-size:12pt; font-style:italic; margin-left:120px; }
table.whs10 { x-cell-content-align:top; width:65.051%; border-spacing:0px; }
col.whs11 { width:39.418%; }
col.whs12 { width:28.296%; }
col.whs13 { width:32.286%; }
tr.whs14 { x-cell-content-align:top; }
td.whs15 { width:39.418%; padding-right:10px; padding-left:10px; border-right-style:none; border-left-style:none; border-top-style:none; border-bottom-style:none; }
img_whs16 { border:none; width:312px; height:332px; float:none; border-style:none; }
td.whs17 { width:28.296%; padding-right:10px; padding-left:10px; border-right-style:none; border-top-style:none; border-bottom-style:none; }
p.whs18 { font-size:12pt; margin-right:0px; }
img_whs19 { border:none; width:312px; height:473px; float:none; border-style:none; }
td.whs20 { width:32.286%; padding-right:10px; padding-left:10px; border-top-style:none; border-bottom-style:none; border-right-style:none; }
img_whs21 { border:none; width:312px; height:421px; float:none; border-style:none; }
p.whs22 { font-size:12pt; margin-left:40px; }
p.whs23 { color:#808080; font-size:12pt; }
p.whs24 { font-size:12pt; color:#000000; }
p.whs25 { color:#808080; font-size:12pt; margin-left:40px; }
img_whs26 { border:none; width:150px; height:140px; border-style:none; }
img_whs27 { border:none; width:312px; height:324px; float:none; border-style:none; }
img_whs28 { border:none; width:150px; height:139px; border-style:none; }
table.whs29 { x-cell-content-align:top; width:50.278%; border-spacing:0px; }
col.whs30 { width:49.724%; }
col.whs31 { width:50.276%; }
td.whs32 { width:49.724%; padding-right:10px; padding-left:10px; border-right-style:none; border-left-style:none; border-top-style:none; border-bottom-style:none; }
img_whs33 { border:none; width:312px; height:346px; float:none; border-style:none; }
td.whs34 { width:50.276%; padding-right:10px; padding-left:10px; border-top-style:none; border-bottom-style:none; border-right-style:none; }
img_whs35 { border:none; width:312px; height:359px; float:none; border-style:none; }
img_whs36 { border:none; width:150px; height:129px; border-style:none; }
img_whs37 { border:none; width:312px; height:376px; float:none; border-style:none; }
p.whs38 { font-size:12pt; margin-left:40px; font-weight:bold; }
img_whs39 { border:none; width:150px; height:154px; border-style:none; }
img_whs40 { border:none; width:150px; height:123px; border-style:none; }
p.whs41 { font-size:14pt; }
img_whs42 { border:none; width:20px; height:20px; border-style:none; }
img_whs43 { border:none; width:312px; height:289px; float:none; border-style:none; }
p.whs44 { font-size:12pt; font-weight:bold; }
p.whs45 { font-size:12pt; font-weight:bold; font-style:italic; x-text-underline:off; text-decoration:none; }
img_whs46 { border:none; width:200px; height:181px; float:none; border-style:none; }
img_whs47 { border:none; width:175px; height:181px; border-style:none; }
img_whs48 { border:none; width:203px; height:181px; border-style:none; }
p.whs49 { font-size:12pt; margin-left:0px; }
img_whs50 { border:none; width:312px; height:358px; float:none; border-style:none; }
img_whs51 { border:none; width:150px; height:128px; border-style:none; }
table.whs52 { x-cell-content-align:top; width:72.604%; border-spacing:0px; }
col.whs53 { width:32.089%; }
col.whs54 { width:32.008%; }
col.whs55 { width:35.903%; }
td.whs56 { width:32.089%; padding-right:10px; padding-left:10px; border-right-style:none; border-left-style:none; border-top-style:none; border-bottom-style:none; }
td.whs57 { width:32.008%; padding-right:10px; padding-left:10px; border-right-style:none; border-top-style:none; border-bottom-style:none; }
img_whs58 { border:none; width:312px; height:385px; float:none; border-style:none; }
td.whs59 { width:35.903%; padding-right:10px; padding-left:10px; border-top-style:none; border-bottom-style:none; border-right-style:none; }
p.whs60 { font-size:12pt; font-weight:bold; color:#000000; }
img_whs61 { border:none; width:150px; height:131px; border-style:none; }
table.whs62 { x-cell-content-align:top; width:81.596%; border-spacing:0px; }
col.whs63 { width:33.942%; }
col.whs64 { width:33.812%; }
col.whs65 { width:32.246%; }
td.whs66 { width:33.942%; padding-right:10px; padding-left:10px; border-right-style:none; border-left-style:none; border-top-style:none; border-bottom-style:none; }
img_whs67 { border:none; width:312px; height:231px; float:none; border-style:none; }
td.whs68 { width:33.812%; padding-right:10px; padding-left:10px; border-right-style:none; border-top-style:none; border-bottom-style:none; }
img_whs69 { border:none; width:312px; height:266px; float:none; border-style:none; }
td.whs70 { width:32.246%; padding-right:10px; padding-left:10px; border-top-style:none; border-bottom-style:none; border-right-style:none; }
img_whs71 { border:none; width:312px; height:274px; float:none; border-style:none; }
p.whs72 { font-size:12pt; margin-left:40px; font-weight:bold; text-indent:-40px; }
img_whs73 { border:none; width:16px; height:16px; border-style:none; }
table.whs74 { x-cell-content-align:top; width:63.512%; border-spacing:0px; }
col.whs75 { width:49.962%; }
col.whs76 { width:45.348%; }
col.whs77 { width:4.69%; }
td.whs78 { 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; }
p.whs79 { font-weight:bold; font-size:14pt; }
img_whs80 { border:none; width:312px; height:391px; float:none; border-style:none; }
td.whs81 { width:45.348%; padding-right:10px; padding-left:10px; border-right-style:none; border-top-style:none; border-bottom-style:none; }
td.whs82 { width:4.69%; padding-right:10px; padding-left:10px; border-top-style:none; border-bottom-style:none; border-right-style:none; }
p.whs83 { margin-left:40px; font-weight:bold; text-indent:-40px; font-size:14pt; }
p.whs84 { font-weight:bold; text-indent:-40px; font-size:14pt; margin-left:40px; }
p.whs85 { font-weight:bold; margin-left:80px; text-indent:-80px; font-size:12pt; }
p.whs86 { font-weight:bold; text-indent:-80px; font-size:12pt; margin-left:120px; }
img_whs87 { border:none; width:200px; height:219px; border-style:none; }
-->
</style><script type="text/javascript" language="JavaScript">
<!--
if ((navigator.appName == "Netscape") && (parseInt(navigator.appVersion) == 4))
{
var strNSS = "<style type='text/css'>";
strNSS += "p.whs18 {margin-right:1pt; }";
strNSS += "p.whs49 {margin-left:1pt; }";
strNSS += "p.whs72 {text-indent:1pt; }";
strNSS += "p.whs83 {text-indent:1pt; }";
strNSS += "p.whs84 {text-indent:1pt; }";
strNSS += "p.whs85 {text-indent:1pt; }";
strNSS += "p.whs86 {text-indent:1pt; }";
strNSS +="</style>";
document.write(strNSS);
}
//-->
</script>
<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)
{
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>Creating basic geometrical objects<a HREF="#_Toc57604478"><b><span
style="font-family: 'Times New Roman', serif; font-size: 12pt;"><font size=3 style="font-size:12pt;">&#9;</font></span></b></a></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"> In GEOM you can </b>create basic geometrical objects (1D
&amp; 2D elements) such as:</p>
<p class="whs1"><a HREF="#_Toc57604479"><b><font><span
style="font-family: 'Times New Roman', serif; font-size: 12pt;"><font size=3 style="font-size:12pt;">&#9;</font></span></font></b></a></p>
<dir>
<ul type="disc" class="whs3">
<li class=kadov-p><p class="whs1"><a
HREF="#_Toc57604480"><span><font style="font-family: 'Times New Roman', serif; font-size: 12pt;"
face="Times New Roman"
size=4>&nbsp;Point&#9;</font></span></a></p></li>
<li class=kadov-p><p class="whs1"><a
HREF="#_Toc57604481"><span><font style="font-family: 'Times New Roman', serif; font-size: 12pt;"
face="Times New Roman"
size=4>&nbsp;Line&#9;</font></span></a></p></li>
<li class=kadov-p><p class="whs1"><a
HREF="#_Toc57604482"><span><font style="font-family: 'Times New Roman', serif; font-size: 12pt;"
face="Times New Roman"
size=4>&nbsp;Circle&#9;</font></span></a></p></li>
<li class=kadov-p><p class="whs1"><a
HREF="#_Toc57604483"><span><font style="font-family: 'Times New Roman', serif; font-size: 12pt;"
face="Times New Roman"
size=4>&nbsp;Ellipse&#9;</font></span></a></p></li>
<li class=kadov-p><p class="whs1"><a
HREF="#_Toc57604484">&nbsp;Arc</a></p></li>
<li class=kadov-p><p class="whs1">&nbsp;<a
href="#_Toc57604488">Curve</a></p></li>
<li class=kadov-p><p class="whs1"><a
HREF="#_Toc57604485"><span><font style="font-family: 'Times New Roman', serif; font-size: 12pt;"
face="Times New Roman"
size=4>&nbsp;Vector&#9;</font></span></a></p></li>
<li class=kadov-p><p class="whs1"><a
HREF="#_Toc57604486"><span><font style="font-family: 'Times New Roman', serif; font-size: 12pt;"
face="Times New Roman"
size=4>&nbsp;Plane&#9;</font></span></a></p></li>
<li class=kadov-p><p class="whs1"><a
HREF="#_Toc57604487">&nbsp;Working plane</a></p></li>
<li class=kadov-p><p class="whs1">&nbsp;<a
href="#_Toc57604489">Local coordinate system</a><a
HREF="#_Toc57604487">&#9;</a></p></li>
</ul>
</dir>
<p class="whs4">&nbsp;</p>
<p class="whs4">&nbsp;</p>
<p class=TODO>To create basic geometrical objects:</p>
<p class=TODO>&nbsp;</p>
<p class="whs5">In the main menu select <span style="font-weight: bold;"><B>New
Entity &gt; Basic</B></span>.</p>
<p class="whs5">&nbsp;</p>
&nbsp;
<p class="whs6"><b style="font-weight: bold;"><a
NAME=_Toc57604480><span style="font-size: 14pt;"><font size=4 style="font-size:14pt;"><img src="salome2_sp3_basicgui_functions_salome2_sp3_basicgui_functions_image27.gif" width="20px" height="20px" border="0" class="img_whs7"> Point</font></span></a></b></p>
<p class="whs6">&nbsp;</p>
<p class="whs4"><b style="font-weight: bold;">Description:</b>
Creates a point.</p>
<p class="whs4">&nbsp;</p>
<p class="whs4"><b style="font-weight: bold;">Result:</b> GEOM_Object
(vertex).</p>
<p class="whs4">&nbsp;</p>
<p class="whs4"><b style="font-weight: bold;">TUI Command :</b>
&nbsp;&nbsp;<span style="font-style: italic;"><I>g</I></span>eompy.MakeVertex(X,
Y, Z) - </p>
<p class="whs8">geompy.MakeVertexWithRef(Reference,
X, Y, Z)</p>
<p class="whs9">geompy.MakeVertexOnCurve(Edge, Parameter)
</p>
<p class="whs4">&nbsp;</p>
<p class="whs4"><b style="font-weight: bold;">Arguments:</b></p>
<ul>
<li class=kadov-p><p class="whs4"><b style="font-weight: bold;">1st
Constructor:</b> Name + X, Y and Z coordinates of the point.</p></li>
<li class=kadov-p><p class="whs4"><span style="font-weight: bold;"><B>2nd
Constructor: </B></span>Name + 1 reference point + 3 coordinates defining
the position of this point regarding the reference one</p></li>
<li class=kadov-p><p class="whs4"><b style="font-weight: bold;">2nd
Constructor:</b> Name + 1 edge &nbsp;+
1 Parameter defining the position of the point on the given edge.</p></li>
</ul>
<p class="whs4">&nbsp;</p>
<p class="whs4"><b style="font-weight: bold;">Dialog Box:</b></p>
<p class="whs4">&nbsp;</p>
<table x-use-null-cells cellspacing="0" width="65.051%" class="whs10">
<col class="whs11">
<col class="whs12">
<col class="whs13">
<tr valign="top" class="whs14">
<td width="39.418%" class="whs15">
<p class="whs4"><img src="../pics/point1.png" x-maintain-ratio="TRUE" width="312px" height="332px" border="0" class="img_whs16"></td>
<td width="28.296%" class="whs17">
<p class="whs18"><img src="../pics/neo-point2.png" x-maintain-ratio="TRUE" width="312px" height="473px" border="0" class="img_whs19"></td>
<td width="32.286%" class="whs20">
<p class="whs4"><img src="../pics/point3.png" x-maintain-ratio="TRUE" width="312px" height="421px" border="0" class="img_whs21"></td></tr>
</table>
<p class="whs4">&nbsp;</p>
<p class="whs4">&nbsp;</p>
<p class="whs22">&nbsp;&nbsp;&nbsp;</p>
<p class="whs23">&nbsp;</p>
<p class="whs24"><b style="font-weight: bold;">Example:</b></p>
<p class="whs23">&nbsp;</p>
<p class="whs25"><img src="../image16.gif" width="150px" height="140px" border="0" class="img_whs26"></p>
<p class="whs25">&nbsp;</p>
<p class="whs4">&nbsp;</p>
<p class="whs6"><b style="font-weight: bold;"><a
NAME=_Toc57604481><span style="font-size: 14pt;"><font size=4 style="font-size:14pt;"><img src="salome2_sp3_basicgui_functions_salome2_sp3_basicgui_functions_image28.gif" width="20px" height="20px" border="0" class="img_whs7"> Line</font></span></a></b></p>
<p class="whs6">&nbsp;</p>
<p class="whs4"><b style="font-weight: bold;">Description:</b>
Creates a line.</p>
<p class="whs4">&nbsp;</p>
<p class="whs4"><b style="font-weight: bold;">Result:</b> GEOM_Object
(edge).</p>
<p class="whs4">&nbsp;</p>
<p class="whs4"><b style="font-weight: bold;">TUI Command:</b>
<span style="font-style: italic;"><I>geompy.MakeLine(Point1, Point2)</I></span>,
where Point1 and Point2 are points through &nbsp;which
the line passes.</p>
<p class="whs4">&nbsp;</p>
<p class="whs4"><b style="font-weight: bold;">Arguments:</b>
Name + 2 vertices.</p>
<p class="whs4">&nbsp;</p>
<p class="whs4"><b style="font-weight: bold;">Dialog Box:</b></p>
<p class="whs4">&nbsp;</p>
<p class="whs22"><img src="../pics/line.png" x-maintain-ratio="TRUE" width="312px" height="324px" border="0" class="img_whs27"></p>
<p class="whs23">&nbsp;</p>
<p class="whs24"><b style="font-weight: bold;">Example:</b></p>
<p class="whs23">&nbsp;</p>
<p class="whs25"><img src="../image67.jpg" width="150px" height="139px" border="0" class="img_whs28"></p>
<p class="whs4">&nbsp;</p>
<p class="whs4">&nbsp;</p>
<p class="whs6"><b style="font-weight: bold;"><a
NAME=_Toc57604482><span style="font-size: 14pt;"><font size=4 style="font-size:14pt;"><img src="salome2_sp3_basicgui_functions_salome2_sp3_basicgui_functions_image29.gif" width="20px" height="20px" border="0" class="img_whs7"> Circle</font></span></a></b></p>
<p class="whs6">&nbsp;</p>
<p class="whs4"><b style="font-weight: bold;">Description:</b>
Creates a circle.</p>
<p class="whs4">&nbsp;</p>
<p class="whs4"><b style="font-weight: bold;">Result:</b> GEOM_Object
(edge).</p>
<p class="whs4">&nbsp;</p>
<p class="whs4"><b style="font-weight: bold;">TUI Command:</b>
<span style="font-style: italic;"><I>geompy.MakeCircle(Point, Vector, Radius)</I></span>,
where Point defines the center of the circle, Vector gives the circles
normal and Radius is the circles &nbsp;radius.</p>
<p class="whs4">&nbsp;</p>
<p class="whs4"><b style="font-weight: bold;">Arguments:</b>
</p>
<ul>
<li class=kadov-p><p class="whs4"><b style="font-weight: bold;">1st
Constructor:</b> Name + 1 vertex (for the center) + 1 edge (for the direction)
+ Radius.</p></li>
<li class=kadov-p><p class="whs4"><span style="font-weight: bold;"><B>2nd
Constructor: </B></span>Name + 3 points which will form the circle.</p></li>
</ul>
<p class="whs4">&nbsp;</p>
<p class="whs4">&nbsp;</p>
<p class="whs4">&nbsp;</p>
<p class="whs4"><b style="font-weight: bold;">Dialog Box:</b></p>
<p class="whs4">&nbsp;</p>
<table x-use-null-cells cellspacing="0" width="50.278%" class="whs29">
<col class="whs30">
<col class="whs31">
<tr valign="top" class="whs14">
<td width="49.724%" class="whs32">
<p class="whs4"><img src="../pics/circle1.png" x-maintain-ratio="TRUE" width="312px" height="346px" border="0" class="img_whs33"></td>
<td width="50.276%" class="whs34">
<p class="whs4"><img src="../pics/circle2.png" x-maintain-ratio="TRUE" width="312px" height="359px" border="0" class="img_whs35"></td></tr>
</table>
<p class="whs4">&nbsp;</p>
<p class="whs4">&nbsp;</p>
<p class="whs22">&nbsp;</p>
<p class="whs22">&nbsp;</p>
<p class="whs24"><b style="font-weight: bold;">Example:</b></p>
<p class="whs23">&nbsp;</p>
<p class="whs25"><img src="../image17.gif" width="150px" height="129px" border="0" class="img_whs36"></p>
<p class="whs4">&nbsp;</p>
<p class="whs6"><b style="font-weight: bold;"><a
NAME=_Toc57604483><span style="font-size: 14pt;"><font size=4 style="font-size:14pt;"><img src="salome2_sp3_basicgui_functions_salome2_sp3_basicgui_functions_image30.gif" width="20px" height="20px" border="0" class="img_whs7"> Ellipse</font></span></a></b></p>
<p class="whs6">&nbsp;</p>
<p class="whs4"><b style="font-weight: bold;">Description:</b>
Creates an ellipse.</p>
<p class="whs4">&nbsp;</p>
<p class="whs4"><b style="font-weight: bold;">Result:</b> GEOM_Object
(edge).</p>
<p class="whs4">&nbsp;</p>
<p class="whs4"><b style="font-weight: bold;">TUI Command:</b><span
style="font-style: italic;"><I> geompy.MakeEllipse(Point, Vector, RadiusMajor,
RadiusMinor)</I></span>, where Point defines the center of the ellipse, Vector
gives the ellipses normal, RadiusMajor and RadiusMinor &nbsp;are
correspondingly a major and minor radiuses of the ellipse.</p>
<p class="whs4">&nbsp;</p>
<p class="whs4"><b style="font-weight: bold;">Arguments:</b>
Name + 1 vertex (for the center) + 1 edge (for the direction) + 1 X Radius
+ 1 Y Radius.</p>
<p class="whs4">&nbsp;</p>
<p class="whs4"><b style="font-weight: bold;">Dialog Box:</b></p>
<p class="whs4">&nbsp;</p>
<p class="whs22"><img src="../pics/ellipse.png" x-maintain-ratio="TRUE" width="312px" height="376px" border="0" class="img_whs37"></p>
<p class="whs38">&nbsp;</p>
<p class="whs24"><b style="font-weight: bold;">Example:</b></p>
<p class="whs23">&nbsp;</p>
<p class="whs25"><img src="../image19.gif" width="150px" height="154px" border="0" class="img_whs39"></p>
<p class="whs4">&nbsp;</p>
<p class="whs4">&nbsp;</p>
<p class="whs6"><b style="font-weight: bold;"><a
NAME=_Toc57604484><span style="font-size: 14pt;"><font size=4 style="font-size:14pt;"><img src="salome2_sp3_basicgui_functions_salome2_sp3_basicgui_functions_image31.gif" width="20px" height="20px" border="0" class="img_whs7"> Arc</font></span></a></b></p>
<p class="whs6">&nbsp;</p>
<p class="whs4"><b style="font-weight: bold;">Description:</b>
Creates an arc.</p>
<p class="whs4">&nbsp;</p>
<p class="whs4"><b style="font-weight: bold;">Result:</b> GEOM_Object
(edge).</p>
<p class="whs4">&nbsp;</p>
<p class="whs4"><b style="font-weight: bold;">TUI Command:</b>
<span style="font-style: italic;"><I>geompy.MakeArc(Point1, Point2, Point3)</I></span>,
where Point1 is the starting point of the arc, Point2 is a middle point
of the arc and Point3 is the ending point of the arc.</p>
<p class="whs4">&nbsp;</p>
<p class="whs4"><b style="font-weight: bold;">Arguments:</b>
Name + 3 vertices.</p>
<p class="whs4">&nbsp;</p>
<p class="whs4"><b style="font-weight: bold;">Dialog Box:</b></p>
<p class="whs4">&nbsp;</p>
<p class="whs22"><img src="../pics/arc.png" x-maintain-ratio="TRUE" width="312px" height="359px" border="0" class="img_whs35"></p>
<p class="whs23">&nbsp;</p>
<p class="whs24"><b style="font-weight: bold;">Example:</b></p>
<p class="whs23">&nbsp;</p>
<p class="whs25"><img src="../image20.gif" width="150px" height="123px" border="0" class="img_whs40"></p>
<p class="whs25">&nbsp;</p>
<p class="whs4">&nbsp;</p>
<p class="whs41"><b style="font-weight: bold;"><a NAME=_Toc57604488><img src="../image32.gif" width="20px" height="20px" border="0" class="img_whs42"> Curve</a></b></p>
<p class="whs4">&nbsp;</p>
<p class="whs4"><b style="font-weight: bold;">Description:</b>
Creates a curve in 3D space.</p>
<p class="whs4">&nbsp;</p>
<p class="whs4"><span style="font-size: 12pt;"><font size=3 style="font-size:12pt;"><b style="font-weight: bold;">Result:</b>
GEOM_Object (edge).</font></span></p>
<p class="whs4">&nbsp;</p>
<p class="whs4"><b style="font-weight: bold;">TUI Command:</b>
</p>
<ul type="disc" class="whs3">
<li class=kadov-p><p class="whs4"><span style="font-style: italic;"><I>geompy.MakePolyline(ListOfShapes)</I></span>,
where ListOfShape is a list of points through which the curve passes .</p></li>
<li class=kadov-p><p class="whs4"><span style="font-style: italic;"><I>geompy.MakeInterpol(ListOfShapes)</I></span>,
where ListOfShape is a list of points through which the curve passes .</p></li>
<li class=kadov-p><p class="whs4"><span style="font-style: italic;"><I>geompy.MakeBezier(ListOfShapes)</I></span>,
where ListOfShape is a list of points through which the curve passes .</p></li>
</ul>
<p class="whs4">&nbsp;</p>
<p class="whs4"><b style="font-weight: bold;">Arguments:</b>
Name + at least 2 points which will serve as nodes on the curve.</p>
<p class="whs4">&nbsp;</p>
<p class="whs4"><b style="font-weight: bold;">Dialog Box:</b></p>
<p class="whs4">&nbsp;</p>
<p class="whs22"><img src="../pics/curve.png" x-maintain-ratio="TRUE" width="312px" height="289px" border="0" class="img_whs43"></p>
<p class="whs4">&nbsp;</p>
<p class="whs44">Example:</p>
<p class="whs4">&nbsp;</p>
<p class="whs45">Polyline
&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;Bezier
&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;B-Spline</p>
<p class="whs4"><img src="../image147.jpg" x-maintain-ratio="TRUE" width="200px" height="181px" border="0" class="img_whs46"> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<img src="../image149.jpg" width="175px" height="181px" border="0" class="img_whs47"> &nbsp;&nbsp;&nbsp;&nbsp;<img src="../image150.jpg" width="203px" height="181px" border="0" class="img_whs48"></p>
<p class="whs22">&nbsp;</p>
<p class="whs4">&nbsp;</p>
<p class="whs6"><b style="font-weight: bold;"><a
NAME=_Toc57604485><span style="font-size: 14pt;"><font size=4 style="font-size:14pt;"><img src="salome2_sp3_basicgui_functions_salome2_sp3_basicgui_functions_image32.gif" width="20px" height="20px" border="0" class="img_whs7"> Vector</font></span></a></b></p>
<p class="whs6">&nbsp;</p>
<p class="whs4"><b style="font-weight: bold;">Description:</b>
Creates a vector.</p>
<p class="whs4">&nbsp;</p>
<p class="whs4"><b style="font-weight: bold;">Result:</b> GEOM_Object
(edge).</p>
<p class="whs4">&nbsp;</p>
<p class="whs4"><b style="font-weight: bold;">TUI Command:</b>
<span style="font-style: italic;"><I>geompy.MakeVector(Point1, Point2)</I></span>,
where Point1 is the first point of the vector and the Point2 is the last
point of the vector.</p>
<p class="whs4">&nbsp;</p>
<p class="whs4"><b style="font-weight: bold;">Arguments :</b></p>
<ul>
<li class=kadov-p><p class="whs4"><b style="font-weight: bold;">1st
Constructor :</b> Name + 2 vertices.</p></li>
<li class=kadov-p><p class="whs4"><b style="font-weight: bold;">2nd
Constructor :</b> Name + 3 values (Coordinates of the 2nd vertex. The
first vertex is in the origin).</p></li>
</ul>
<p class="whs4">&nbsp;</p>
<p class="whs4"><b style="font-weight: bold;">Dialog Box:</b></p>
<p class="whs22">&nbsp;</p>
<p class="whs49">&nbsp;&nbsp;<img src="../pics/vector1.png" x-maintain-ratio="TRUE" width="312px" height="324px" border="0" class="img_whs27"> &nbsp;&nbsp;&nbsp;<img src="../pics/vector2.png" x-maintain-ratio="TRUE" width="312px" height="358px" border="0" class="img_whs50"></p>
<p class="whs22">&nbsp;</p>
<p class="whs24"><b style="font-weight: bold;">Example:</b></p>
<p class="whs23">&nbsp;</p>
<p class="whs25"><img src="../image21.gif" width="150px" height="128px" border="0" class="img_whs51"></p>
<p class="whs4">&nbsp;</p>
<p class="whs6"><b style="font-weight: bold;"><a
NAME=_Toc57604486><span style="font-size: 14pt;"><font size=4 style="font-size:14pt;"><img src="salome2_sp3_basicgui_functions_salome2_sp3_basicgui_functions_image33.gif" width="20px" height="20px" border="0" class="img_whs7"> Plane</font></span></a></b></p>
<p class="whs6">&nbsp;</p>
<p class="whs4"><b style="font-weight: bold;">Description:</b>
Creates a plane.</p>
<p class="whs4">&nbsp;</p>
<p class="whs4"><b style="font-weight: bold;">Result:</b> GEOM_Object
(face).</p>
<p class="whs4">&nbsp;</p>
<p class="whs4"><b style="font-weight: bold;">TUI Command:</b>
<span style="font-style: italic;"><I>geompy.MakePlane(Point, Vector, TrimSize)</I></span>,
where Point is a point through which &nbsp;the
plane passes, Vector gives a normal of the plane and TrimSize is a half
size of a side of quadrangle face, representing the plane.</p>
<p class="whs4">&nbsp;</p>
<p class="whs4"><b style="font-weight: bold;">Arguments:</b></p>
<ul>
<li class=kadov-p><p class="whs4"><b style="font-weight: bold;">1st
Constructor :</b> Name + 1 vertex + 1 vector &nbsp;+
1 value (to define the size of the plane).</p></li>
<li class=kadov-p><p class="whs4"><b style="font-weight: bold;">2nd
Constructor :</b> Name + 1 vertex + 3 points (for the direction) + 1 value
(to define the size of the plane).</p></li>
<li class=kadov-p><p class="whs4"><b style="font-weight: bold;">3rd
Constructor :</b> Name + 1 selection + 1 value (to define the size of
the plane).</p></li>
</ul>
<p class="whs4">&nbsp;</p>
<p class="whs4"><b style="font-weight: bold;">Dialog Box:</b></p>
<p class="whs4">&nbsp;</p>
<table x-use-null-cells cellspacing="0" width="72.604%" class="whs52">
<col class="whs53">
<col class="whs54">
<col class="whs55">
<tr valign="top" class="whs14">
<td width="32.089%" class="whs56">
<p class="whs4"><img src="../pics/plane1.png" x-maintain-ratio="TRUE" width="312px" height="346px" border="0" class="img_whs33"></td>
<td width="32.008%" class="whs57">
<p class="whs4"><img src="../pics/plane2.png" x-maintain-ratio="TRUE" width="312px" height="385px" border="0" class="img_whs58"></td>
<td width="35.903%" class="whs59">
<p class="whs4"><img src="../pics/plane3.png" x-maintain-ratio="TRUE" width="312px" height="385px" border="0" class="img_whs58"></td></tr>
</table>
<p class="whs4">&nbsp;</p>
<p class="whs4">&nbsp;</p>
<p class="whs4">&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</p>
<p class="whs4">&nbsp;</p>
<p class="whs60"><b><span style="font-weight: bold;"><B>Example:</B></span></b></p>
<p class="whs23">&nbsp;</p>
<p class="whs25"><img src="../image76.jpg" width="150px" height="131px" border="0" class="img_whs61"></p>
<p class="whs4">&nbsp;</p>
<p class="whs4">&nbsp;</p>
<p class="whs6"><b style="font-weight: bold;"><a
NAME=_Toc57604487><span style="font-size: 14pt;"><font size=4 style="font-size:14pt;"><img src="salome2_sp3_basicgui_functions_salome2_sp3_basicgui_functions_image34.gif" width="20px" height="20px" border="0" class="img_whs7"> Working
Plane</font></span></a></b></p>
<p class="whs6">&nbsp;</p>
<p class="whs4"><b style="font-weight: bold;">Description:</b>
Sets the working plane (and the camera position).</p>
<p class="whs4">&nbsp;</p>
<p class="whs4"><b style="font-weight: bold;">Arguments:</b>
</p>
<ul type="disc" class="whs3">
<li class=kadov-p><p class="whs4">Name + 1 selection (face
or planar face), </p></li>
<li class=kadov-p><p class="whs4">Name + &nbsp;2
vectors, </p></li>
<li class=kadov-p><p class="whs4">Name + XYZ coordinate
system</p></li>
</ul>
<p class="whs4">&nbsp;</p>
<p class="whs4">&nbsp;</p>
<p class="whs4"><b style="font-weight: bold;">Dialog Box:</b></p>
<p class="whs4">&nbsp;</p>
<table x-use-null-cells cellspacing="0" width="81.596%" class="whs62">
<col class="whs63">
<col class="whs64">
<col class="whs65">
<tr valign="top" class="whs14">
<td width="33.942%" class="whs66">
<p class="whs4"><img src="../pics/workplane4.png" x-maintain-ratio="TRUE" width="312px" height="231px" border="0" class="img_whs67"></td>
<td width="33.812%" class="whs68">
<p class="whs4"><img src="../pics/workplane5.png" x-maintain-ratio="TRUE" width="312px" height="266px" border="0" class="img_whs69"></td>
<td width="32.246%" class="whs70">
<p class="whs4"><img src="../pics/workplane6.png" x-maintain-ratio="TRUE" width="312px" height="274px" border="0" class="img_whs71"></td></tr>
</table>
<p class="whs4">&nbsp;</p>
<p class="whs49">&nbsp;</p>
<p class="whs22">&nbsp;</p>
<p class="whs38">&nbsp;</p>
<p class="whs72">&nbsp;</p>
<p class="whs72"><a name=_Toc57604489><img src="../image35.gif" width="16px" height="16px" border="0" class="img_whs73"><span
style="font-size: 14pt;"> <font size=4 style="font-size:14pt;"></font></span><b><span style="font-size: 14pt;"><font size=4 style="font-size:14pt;">Local
coordinate system</font></span></b></a></p>
<p class="whs72">&nbsp;</p>
<p class="whs4"><b style="font-weight: bold;">Description:</b>
&nbsp;The user
may manually enter 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 coordinates of origin are automatically
filled in with the coordinates of the selected point. </p>
<p class="whs4">The user then specifies components of X and
Y axes direction.</p>
<p class="whs4">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="whs4">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="whs4">&nbsp;</p>
<p class="whs4">&nbsp;</p>
<p class="whs4"><span style="font-weight: bold;"><B>TUI command:</B></span>
<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
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>
<p class="whs4">&nbsp;</p>
<p class="whs4">&nbsp;</p>
<p class="whs4"><b style="font-weight: bold;">Arguments:</b>
</p>
<ul>
<li class=kadov-p><p class="whs4"><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="whs4"><b style="font-weight: bold;">2nd
Constructor :</b> Name + reference object.</p></li>
<li class=kadov-p><p class="whs4"><b style="font-weight: bold;">3rd
Constructor :</b> Name + 1 point of origin + X axis direction, Y axis
direction.</p></li>
</ul>
<p class="whs4">&nbsp;</p>
<p class="whs4">.</p>
<p class="whs4">&nbsp;</p>
<p class="whs4"><b style="font-weight: bold;">Dialog Box:</b></p>
<p class="whs4">&nbsp;</p>
<table x-use-null-cells cellspacing="0" width="63.512%" class="whs74">
<col class="whs75">
<col class="whs76">
<col class="whs77">
<tr valign="top" class="whs14">
<td width="49.962%" class="whs78">
<p class="whs79"><img src="../pics/neo-localcs1.png" x-maintain-ratio="TRUE" width="312px" height="391px" border="0" class="img_whs80"></td>
<td width="45.348%" class="whs81">
<p class="whs79"><img src="../pics/neo-localcs2.png" x-maintain-ratio="TRUE" width="312px" height="289px" border="0" class="img_whs43"></td>
<td width="4.69%" class="whs82">
<p class="whs79"><img src="../pics/neo-localcs3.png" x-maintain-ratio="TRUE" width="312px" height="359px" border="0" class="img_whs35"></td></tr>
</table>
<p class="whs83">&nbsp;</p>
<p class="whs84"><span style="font-weight: bold;
margin-left: 80px;
text-indent: -80px;
font-size: 12pt;"><font size=3 style="font-size:12pt;"><B>Example:</B></font></span></p>
<p class="whs85">&nbsp;</p>
<p class="whs86"><img src="../image145.jpg" width="200px" height="219px" border="0" class="img_whs87"></p>
<script type="text/javascript" language="javascript1.2">
<!--
if (window.writeIntopicBar)
writeIntopicBar(0);
//-->
</script>
</body>
</html>

View File

@ -18,9 +18,9 @@ h1.whs1 { margin-left:0in; margin-right:0in; margin-top:0px; margin-bottom:0px;
p.whs2 { font-size:12pt; text-indent:2px; margin-left:0in; margin-right:0in; margin-top:0px; margin-bottom:0px; } p.whs2 { font-size:12pt; text-indent:2px; margin-left:0in; margin-right:0in; margin-top:0px; margin-bottom:0px; }
p.whs3 { font-size:12pt; font-weight:normal; } p.whs3 { font-size:12pt; font-weight:normal; }
img_whs4 { border:none; float:none; width:30px; height:30px; border-style:none; } img_whs4 { border:none; float:none; width:30px; height:30px; border-style:none; }
p.whs5 { text-indent:2px; margin-left:0in; margin-right:0in; margin-top:0px; margin-bottom:0px; font-size:12pt; } p.whs5 { font-size:12pt; text-indent:2px; margin-right:0in; margin-top:0px; margin-bottom:0px; margin-left:48px; }
p.whs6 { font-size:12pt; text-indent:2px; margin-left:0in; margin-right:0in; margin-top:0px; margin-bottom:0px; font-weight:normal; } p.whs6 { text-indent:2px; margin-right:0in; margin-top:0px; margin-bottom:0px; font-size:12pt; margin-left:48px; }
p.whs7 { font-size:12pt; text-indent:2px; margin-right:0in; margin-top:0px; margin-bottom:0px; margin-left:48px; } p.whs7 { font-size:12pt; text-indent:2px; margin-left:0in; margin-right:0in; margin-top:0px; margin-bottom:0px; font-weight:normal; }
p.whs8 { margin-left:48px; } p.whs8 { margin-left:48px; }
p.whs9 { font-size:12pt; } p.whs9 { font-size:12pt; }
--> -->
@ -31,9 +31,9 @@ if ((navigator.appName == "Netscape") && (parseInt(navigator.appVersion) == 4))
var strNSS = "<style type='text/css'>"; var strNSS = "<style type='text/css'>";
strNSS += "h1.whs1 {margin-left:1pt;margin-right:1pt;margin-top:1pt;margin-bottom:1pt; }"; strNSS += "h1.whs1 {margin-left:1pt;margin-right:1pt;margin-top:1pt;margin-bottom:1pt; }";
strNSS += "p.whs2 {margin-left:1pt;margin-right:1pt;margin-top:1pt;margin-bottom:1pt; }"; strNSS += "p.whs2 {margin-left:1pt;margin-right:1pt;margin-top:1pt;margin-bottom:1pt; }";
strNSS += "p.whs5 {margin-left:1pt;margin-right:1pt;margin-top:1pt;margin-bottom:1pt; }"; strNSS += "p.whs5 {margin-right:1pt;margin-top:1pt;margin-bottom:1pt; }";
strNSS += "p.whs6 {margin-left:1pt;margin-right:1pt;margin-top:1pt;margin-bottom:1pt; }"; strNSS += "p.whs6 {margin-right:1pt;margin-top:1pt;margin-bottom:1pt; }";
strNSS += "p.whs7 {margin-right:1pt;margin-top:1pt;margin-bottom:1pt; }"; strNSS += "p.whs7 {margin-left:1pt;margin-right:1pt;margin-top:1pt;margin-bottom:1pt; }";
strNSS +="</style>"; strNSS +="</style>";
document.write(strNSS); document.write(strNSS);
} }
@ -69,7 +69,7 @@ if (window.gbWhTopic)
{ {
if (window.addTocInfo) if (window.addTocInfo)
{ {
addTocInfo("GEOM module\nTransforming geometrical objects\nBoolean Operations\nUsing boolean operations"); addTocInfo("Geometry module\nTransforming geometrical objects\nBoolean Operations\nUsing boolean operations");
addButton("show",BTN_TEXT,"Show","","","","",0,0,"","",""); addButton("show",BTN_TEXT,"Show","","","","",0,0,"","","");
} }
@ -97,8 +97,9 @@ else
<p class="whs2">&nbsp;</p> <p class="whs2">&nbsp;</p>
<p class="whs3"><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_whs4">In GEOM for construction of more complex geometrical objects <p class="whs3"><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_whs4"><span style="font-weight: normal;">You can use the following
(2D &amp; 3D elements) you can use the following boolean operations:</b></p> boolean operations for construction of more complex geometrical objects
(2D &amp; 3D elements) :</span></b></p>
<p class="whs3">&nbsp;</p> <p class="whs3">&nbsp;</p>
@ -106,31 +107,31 @@ else
<li style="list-style: disc;" <li style="list-style: disc;"
type=disc type=disc
class=kadov-p><p class="whs2"><a href="../fuse.htm">Fuse</a></p></li> class=kadov-p><p class="whs5"><a href="../fuse.htm">Fuse</a></p></li>
</ul> </ul>
<ul> <ul>
<li style="list-style: disc;" <li style="list-style: disc;"
type=disc type=disc
class=kadov-p><p class="whs2"><a href="../common.htm">Common</a></p></li> class=kadov-p><p class="whs5"><a href="../common.htm">Common</a></p></li>
<li style="list-style: disc;" <li style="list-style: disc;"
type=disc type=disc
class=kadov-p><p class="whs5"><a href="../cut.htm">Cut</a></p></li> class=kadov-p><p class="whs6"><a href="../cut.htm">Cut</a></p></li>
<li style="list-style: disc;" <li style="list-style: disc;"
type=disc type=disc
class=kadov-p><p class="whs2"><a href="../section.htm">Section</a></p></li> class=kadov-p><p class="whs5"><a href="../section.htm">Section</a></p></li>
</ul> </ul>
<p class="whs2">&nbsp;</p> <p class="whs2">&nbsp;</p>
<p class="whs6">There is a general TUI command covering <p class="whs7">There is a general TUI command covering
all these operations, which can be used alongside with separate commands all these operations, which can be used alongside with separate commands
for each operation.</p> for each operation.</p>
<p class="whs7"><span style="font-style: italic;"><I>geompy.MakeBoolean(Shape1, <p class="whs5"><span style="font-style: italic;"><I>geompy.MakeBoolean(Shape1,
Shape2, Operation)</I></span>, where Shape1 is the first argument and Shape2 Shape2, Operation)</I></span>, where Shape1 is the first argument and Shape2
is the second argument of Boolean operation, Operation is a type of the is the second argument of Boolean operation, Operation is a type of the
Boolean operation (1 Common, 2 Cut, 3 Fuse, 4 Section).</p> Boolean operation (1 Common, 2 Cut, 3 Fuse, 4 Section).</p>

View File

@ -1,458 +0,0 @@
<!doctype HTML public "-//W3C//DTD HTML 4.0 Frameset//EN">
<html>
<head>
<title>Titre</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; }
img_whs2 { border:none; float:none; width:30px; height:30px; border-style:none; }
p.whs3 { font-size:12pt; }
p.whs4 { margin-left:40px; }
p.whs5 { font-family:'Times New Roman' , serif; font-size:14pt; }
img_whs6 { width:20px; height:20px; border-style:none; }
ul.whs7 { list-style:disc; }
p.whs8 { font-size:12pt; margin-left:40px; }
img_whs9 { border:none; border-style:none; width:312px; height:283px; float:none; }
p.whs10 { font-family:'Times New Roman' , serif; font-size:14pt; font-style:italic; font-weight:bold; }
img_whs11 { border:none; border-style:none; width:312px; height:324px; float:none; }
img_whs12 { border:none; width:150px; height:102px; border-style:none; }
img_whs13 { border:none; border-style:none; width:312px; height:289px; float:none; }
img_whs14 { border:none; width:150px; height:120px; border-style:none; }
p.whs15 { font-family:'Times New Roman' , serif; font-size:12pt; }
img_whs16 { border:none; border-style:none; width:312px; height:315px; float:none; }
img_whs17 { border:none; width:150px; height:116px; border-style:none; }
img_whs18 { border:none; width:150px; height:131px; border-style:none; }
img_whs19 { border:none; width:150px; height:105px; 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)
{
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><b><span style="font-weight: bold;"><B>B</B></span>uilding geometrical objects</b></h1>
<p class="whs1"><b><span 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">In GEOM you can create basic and advanced geometrical objects
(2D &amp; 3D elements) using the following building functions:</span></b></p>
<p class="whs1">&nbsp;</p>
<ul>
<li class=kadov-p><p class="whs3"><a href="#explode">Explode</a></p></li>
<li class=kadov-p><p class="whs3">Build</p></li>
<ul>
<li class=kadov-p><p class="whs3"><a href="#edge">Edge</a></p></li>
<li class=kadov-p><p class="whs3"><a href="#wire">Wire</a></p></li>
<li class=kadov-p><p class="whs3"><a href="#face">Face</a></p></li>
<li class=kadov-p><p class="whs3"><a href="#shell">Shell</a></p></li>
<li class=kadov-p><p class="whs3"><a href="#solid">Solid</a></p></li>
<li class=kadov-p><p class="whs3"><a href="#compound">Compound</a></p></li>
</ul>
</ul>
<p class="whs3">&nbsp;</p>
<p class="whs3">&nbsp;</p>
<p class=TODO>&nbsp;</p>
<p class=TODO
style="font-family: 'Times New Roman', serif;
font-size: 14pt;
font-weight: bold;">To use Explode:</p>
<p class=TODO
style="font-family: 'Times New Roman', serif;
font-size: 14pt;
font-weight: bold;">&nbsp;</p>
<p class="whs4">In the main menu select <span style="font-weight: bold;"><B>New
Entity &gt; Explode</B></span>.</p>
<p>&nbsp;</p>
<p class="whs5"><b style="font-weight: bold;"><a
NAME=explode><span style="font-size: 14pt;"><font size=4 style="font-size:14pt;"><img src="../salome2_sp3_buildgui_functions_salome2_sp3_buildgui_functions_image13.gif" width="20px" height="20px" border="0" class="img_whs6"> Explode</font></span></a></b></p>
<p class="whs5">&nbsp;</p>
<p class="whs3"><b style="font-weight: bold;">Description:</b>
Returns a list of subshapes (vertices, edges, wires etc.) of the given
shape.</p>
<p class="whs3">&nbsp;</p>
<p class="whs3"><b style="font-weight: bold;">Result :</b>
List of GEOM_Objects.</p>
<p class="whs3">&nbsp;</p>
<p class="whs3"><b style="font-weight: bold;">TUI Command:
</b></p>
<ul type="disc" class="whs7">
<li class=kadov-p><p class="whs3"><span style="font-style: italic;"><I>geompy.SubShape(Shape,
ListOfID)</I></span>, where Shape is a shape whose subshape(s) is (are) retrieved,
ListOfID is a list of requested sub shapes IDs. To get a subshape ID use
method GetSubShapeID().</p></li>
<li class=kadov-p><p class="whs3"><span style="font-style: italic;"><I>geompy.SubShapeAll(Shape,
TypeOfShape)</I></span>, where Shape is a shape to be exploded on sub shapes
of type TypeOfShape.</p></li>
</ul>
<p class="whs3">&nbsp;</p>
<p class="whs3"><b style="font-weight: bold;">Arguments:</b>
1 SHAPE + 1 type of SubShape.</p>
<p class="whs3">&nbsp;</p>
<p class="whs3"><b style="font-weight: bold;">Dialog Box:</b></p>
<p class="whs3">&nbsp;</p>
<p class="whs8"><img src="../pics/neo-obj1.png" x-maintain-ratio="TRUE" width="312px" height="283px" border="0" class="img_whs9"></p>
<p class="whs3">&nbsp;</p>
<p class="whs5">&nbsp;</p>
<p class="whs10">To use building functions:</p>
<p class="whs5">&nbsp;</p>
<p class="whs8">In the main menu select
<span style="font-weight: bold;"><B>New Entity &gt; </B></span><span style="font-weight: bold;"><B>Build
</B></span>submenu.</p>
<p class="whs5">&nbsp;</p>
<p class="whs5"><a NAME=edge><img src="../salome2_sp3_buildgui_functions_salome2_sp3_buildgui_functions_image14.gif" width="20px" height="20px" border="0" class="img_whs6"><b> Edge</b></a></p>
<p class="whs5">&nbsp;</p>
<p class="whs3"><b style="font-weight: bold;">Description:</b>
Creates an edge.</p>
<p class="whs3">&nbsp;</p>
<p class="whs3"><b style="font-weight: bold;">Result:</b> GEOM_Object
(EDGE).</p>
<p class="whs3">&nbsp;</p>
<p class="whs3"><b style="font-weight: bold;">TUI Command:</b><i>
</i><span style="font-style: italic;"><I>geompy.MakeEdge(Vertex1, Vertex2)</I></span>,
where Vertex1 and Vertex2 are correspondingly the first and the last vertex
of the edge.</p>
<p class="whs3">&nbsp;</p>
<p class="whs3"><b style="font-weight: bold;">Arguments:</b>
Name + 2 vertices.</p>
<p class="whs3">&nbsp;</p>
<p class="whs3"><b style="font-weight: bold;">Dialog Box:</b></p>
<p class="whs3">&nbsp;</p>
<p class="whs8"><img src="../pics/neo-obj2.png" x-maintain-ratio="TRUE" width="312px" height="324px" border="0" class="img_whs11"></p>
<p class="whs8">&nbsp;</p>
<p class="whs3"><b style="font-weight: bold;">Example:</b></p>
<p class="whs3">&nbsp;</p>
<p class="whs8"><img src="../image9.gif" width="150px" height="102px" border="0" class="img_whs12"></p>
<p class="whs3">&nbsp;</p>
<p class="whs5"><a NAME=wire><span
style="font-size: 14pt;"><font size=4 style="font-size:14pt;"><img src="../salome2_sp3_buildgui_functions_salome2_sp3_buildgui_functions_image15.gif" width="20px" height="20px" border="0" class="img_whs6"><b style="font-size: 14pt;"> Wire</b></font></span></a></p>
<p class="whs5">&nbsp;</p>
<p class="whs3"><b style="font-weight: bold;">Description:</b>
Creates a wire.</p>
<p class="whs3">&nbsp;</p>
<p class="whs3"><b style="font-weight: bold;">Result:</b> GEOM_Object
(WIRE).</p>
<p class="whs3">&nbsp;</p>
<p class="whs3"><b style="font-weight: bold;">TUI Command :</b><i>
</i><span style="font-style: italic;"><I>geompy.MakeWire(ListOfShape)</I></span>,
where ListOfShape is a list of edges and/or wires from which the wire
to be constructed.</p>
<p class="whs3">&nbsp;</p>
<p class="whs3"><b style="font-weight: bold;">Arguments:</b>
Name + List of connected wires or edges..</p>
<p class="whs3">&nbsp;</p>
<p class="whs3"><b style="font-weight: bold;">Dialog Box:</b></p>
<p class="whs3">&nbsp;</p>
<p class="whs8"><img src="../pics/neo-obj3.png" x-maintain-ratio="TRUE" width="312px" height="289px" border="0" class="img_whs13"></p>
<p class="whs3">&nbsp;</p>
<p class="whs3"><b style="font-weight: bold;">Example:</b></p>
<p class="whs3">&nbsp;</p>
<p class="whs8"><img src="../image11.gif" width="150px" height="120px" border="0" class="img_whs14"></p>
<p class="whs3">&nbsp;</p>
<p class="whs5"><a NAME=face><span
style="font-size: 14pt;"><font size=4 style="font-size:14pt;"><img src="../salome2_sp3_buildgui_functions_salome2_sp3_buildgui_functions_image16.gif" width="20px" height="20px" border="0" class="img_whs6"><b style="font-size: 14pt;"> Face</b></font></span></a></p>
<p class="whs15">&nbsp;</p>
<p class="whs3"><b style="font-weight: bold;">Description:</b>
Creates a face.</p>
<p class="whs3">&nbsp;</p>
<p class="whs3"><b style="font-weight: bold;">Result:</b> GEOM_Object
(FACE).</p>
<p class="whs3">&nbsp;</p>
<p class="whs3"><b style="font-weight: bold;">TUI Command:</b><i>
</i><span style="font-style: italic;"><I>geompy.MakeFace(Wire, WantPlanarFace)</I></span>,
where Wire is a wire and if boolean parameter WantPlanarFace is planar
then only a planar face or no face is constructed.</p>
<p class="whs3">&nbsp;</p>
<p class="whs3"><b style="font-weight: bold;">Arguments:</b>
Name + 1 wire.</p>
<p class="whs3">&nbsp;</p>
<p class="whs3"><b style="font-weight: bold;">Dialog Box:</b></p>
<p class="whs3">&nbsp;</p>
<p class="whs8"><img src="../pics/neo-obj4.png" x-maintain-ratio="TRUE" width="312px" height="315px" border="0" class="img_whs16"></p>
<p class="whs3">&nbsp;</p>
<p class="whs3"><b style="font-weight: bold;">Example:</b></p>
<p class="whs3">&nbsp;</p>
<p class="whs8"><img src="../image12.gif" width="150px" height="116px" border="0" class="img_whs17"></p>
<p class="whs3">&nbsp;</p>
<p class="whs5"><a NAME=shell><span
style="font-size: 14pt;"><font size=4 style="font-size:14pt;"><img src="../salome2_sp3_buildgui_functions_salome2_sp3_buildgui_functions_image17.gif" width="20px" height="20px" border="0" class="img_whs6"><b style="font-size: 14pt;"> Shell</b></font></span></a></p>
<p class="whs5">&nbsp;</p>
<p class="whs3"><b style="font-weight: bold;">Description:</b>
Creates a shell.</p>
<p class="whs3">&nbsp;</p>
<p class="whs3"><b style="font-weight: bold;">Result:</b> GEOM_Object
(SHELL).</p>
<p class="whs3">&nbsp;</p>
<p class="whs3"><b style="font-weight: bold;">TUI Command:</b><i>
</i><span style="font-style: italic;"><I>geompy.MakeShell(ListOfShape)</I></span>,
where ListOfShape is a list of faces and (or) shells from which the shell
is constructed.</p>
<p class="whs3">&nbsp;</p>
<p class="whs3"><b style="font-weight: bold;">Arguments:</b>
Name + <span style="font-size: 12pt;"><font size=3 style="font-size:12pt;">List of faces having connected edges.</font></span></p>
<p class="whs3">&nbsp;</p>
<p class="whs3"><b style="font-weight: bold;">Dialog Box:</b></p>
<p class="whs3">&nbsp;</p>
<p class="whs8"><img src="../pics/neo-obj5.png" x-maintain-ratio="TRUE" width="312px" height="289px" border="0" class="img_whs13"></p>
<p class="whs3">&nbsp;</p>
<p class="whs3"><b style="font-weight: bold;">Example:</b></p>
<p class="whs3">&nbsp;</p>
<p class="whs8"><img src="../image18.jpg" width="150px" height="131px" border="0" class="img_whs18"></p>
<p class="whs3">&nbsp;</p>
<p class="whs5"><a NAME=solid><span
style="font-size: 14pt;"><font size=4 style="font-size:14pt;"><img src="../salome2_sp3_buildgui_functions_salome2_sp3_buildgui_functions_image18.gif" width="20px" height="20px" border="0" class="img_whs6"><b style="font-size: 14pt;"> Solid</b></font></span></a></p>
<p class="whs5">&nbsp;</p>
<p class="whs3"><b style="font-weight: bold;">Description:</b>
Creates a solid - closed geometrical 3D element.</p>
<p class="whs3">&nbsp;</p>
<p class="whs3"><b style="font-weight: bold;">Result:</b> GEOM_<span>Object
(SOLID).</span></p>
<p class="whs3">&nbsp;</p>
<p class="whs3"><b style="font-weight: bold;">TUI Command:</b><i>
</i><span style="font-style: italic;"><I>geompy.MakeSolid(ListOfShape)</I></span>,
where ListOfShape is a list of shells from which the solid is constructed.</p>
<p class="whs3">&nbsp;</p>
<p class="whs3"><b style="font-weight: bold;">Arguments:</b>
Name + A closed shell or a list of shells.</p>
<p class="whs3">&nbsp;</p>
<p class="whs3"><b style="font-weight: bold;">Dialog Box:</b></p>
<p class="whs3">&nbsp;</p>
<p class="whs8"><img src="../pics/neo-obj6.png" x-maintain-ratio="TRUE" width="312px" height="315px" border="0" class="img_whs16"></p>
<p class="whs3">&nbsp;</p>
<p class="whs3">&nbsp;</p>
<p class="whs5"><a NAME=compound><span
style="font-size: 14pt;"><font size=4 style="font-size:14pt;"><img src="../salome2_sp3_buildgui_functions_salome2_sp3_buildgui_functions_image19.gif" width="20px" height="20px" border="0" class="img_whs6"><b style="font-size: 14pt;"> Compound</b></font></span></a></p>
<p class="whs5">&nbsp;</p>
<p class="whs3"><b style="font-weight: bold;">Description:</b>
Creates a compound.</p>
<p class="whs3">&nbsp;</p>
<p class="whs3"><b style="font-weight: bold;">Result:</b> GEOM_Object
(COMPOUND).</p>
<p class="whs3">&nbsp;</p>
<p class="whs3"><b style="font-weight: bold;">TUI Command:</b><i>
</i><span style="font-style: italic;"><I>geompy.MakeCompound(ListOfShape)</I></span>,
where ListOfShape is a list of shapes from which the compound is constructed.</p>
<p class="whs3">&nbsp;</p>
<p class="whs3"><b style="font-weight: bold;">Arguments:</b>
Name + List of shapes.</p>
<p class="whs3">&nbsp;</p>
<p class="whs3"><b style="font-weight: bold;">Dialog Box:</b></p>
<p class="whs3">&nbsp;</p>
<p class="whs8"><img src="../pics/neo-obj7.png" x-maintain-ratio="TRUE" width="312px" height="289px" border="0" class="img_whs13"></p>
<p class="whs8">&nbsp;</p>
<p class="whs3"><b style="font-weight: bold;">Example:</b></p>
<p class="whs3">&nbsp;</p>
<p class="whs8"><img src="../image13.gif" width="150px" height="105px" border="0" class="img_whs19"></p>
<p class="whs8">&nbsp;</p>
<p class="whs8">&nbsp;</p>
<p class="whs3">&nbsp;</p>
<script type="text/javascript" language="javascript1.2">
<!--
if (window.writeIntopicBar)
writeIntopicBar(0);
//-->
</script>
</body>
</html>

View File

@ -1,225 +0,0 @@
<!doctype HTML public "-//W3C//DTD HTML 4.0 Frameset//EN">
<html>
<head>
<title>Titre</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-family:'Times New Roman' , serif; font-size:12pt; font-weight:normal; }
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.whs4 { margin-left:40px; }
p.whs5 { font-family:'Times New Roman' , serif; font-size:14pt; }
img_whs6 { width:20px; height:20px; 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\nDisplaying/hiding objects");
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>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 viewers, OCC and VTK
. These viewers work independently, i.e. visibility of objects and their
graphic attributes may differ in OCC and VTK viewer. It<b><span style="font-weight: normal;">
is reasonable to use the OCC viewer for GEOM module.</span></b></p>
<p class="whs1">&nbsp;</p>
<p class="whs1"><b style="font-weight: normal;">Displaying\hiding
different geometrical objects in the viewer is possible using the following
operations: </b></p>
<p class="whs3">&nbsp;</p>
<ul>
<li class=kadov-p><p class="whs3"><a
href="#DisplayAll">DisplayAll</a></p></li>
<li class=kadov-p><p class="whs3"><a
href="#EraseAll">EraseAll</a></p></li>
<li class=kadov-p><p class="whs3"><a
href="#Display">Display</a></p></li>
<li class=kadov-p><p class="whs3"><a
href="#DisplayOnly">DisplayOnly</a></p></li>
<li class=kadov-p><p class="whs3"><a
href="#EraseOnly">Erase</a></p></li>
</ul>
<p class="whs3">&nbsp;</p>
<p class=TODO>To display\hide one or several objects in the viewer:</p>
<p class=TODO>&nbsp;</p>
<p class="whs4">In the main menu select <span style="font-weight: bold;"><B>View
</B></span>or right-click on the necessary object in the Object Browser and
from the associated pop-up menu choose the required operation.</p>
<p class="whs4">&nbsp;</p>
<p class="whs3">&nbsp;</p>
<p class="whs5"><a NAME=DisplayAll
style="font-size: 14pt;"><img src="salome2_sp3_displaygui_functions_salome2_sp3_displaygui_functions_image52.gif" width="20px" height="20px" border="0" class="img_whs6"><b><font style="font-size: 14pt;"
size=4> DisplayAll</font></b></a>
</p>
<p class="whs5">&nbsp;</p>
<p class="whs3"><b style="font-weight: bold;">Description:</b>
Displays all geometrical objects which have been created or imported in
the current study.</p>
<p class="whs3">&nbsp;</p>
<p class="whs3"><b style="font-weight: bold;">TUI
Command:</b><i> sg.DisplayAll()</i></p>
<p class="whs3">&nbsp;</p>
<p class="whs3">&nbsp;</p>
<p class="whs5"><a NAME=EraseAll
style="font-size: 14pt;"><img src="salome2_sp3_displaygui_functions_salome2_sp3_displaygui_functions_image54.gif" width="20px" height="20px" border="0" class="img_whs6"><b><font style="font-size: 14pt;"
size=4> EraseAll</font></b></a></p>
<p class="whs5">&nbsp;</p>
<p class="whs3"><b style="font-weight: bold;">Description:</b>
Erases all shapes displayed in the viewer.</p>
<p class="whs3">&nbsp;</p>
<p class="whs3"><b style="font-weight: bold;">TUI
Command:</b><i> sg.EraseAll()</i></p>
<p class="whs3">&nbsp;</p>
<p class="whs3">&nbsp;</p>
<p class="whs5"><a NAME=Display
style="font-size: 14pt;"><img src="salome2_sp3_displaygui_functions_salome2_sp3_displaygui_functions_image53.gif" width="20px" height="20px" border="0" class="img_whs6"><b><font style="font-size: 14pt;"
size=4> Display</font></b></a></p>
<p class="whs5">&nbsp;</p>
<p class="whs3"><span
style="font-family: 'Times New Roman', serif; font-size: 12pt;"><font size=3 style="font-size:12pt;"><b style="font-weight: bold;">Description:</b>
Displays an object in 3D viewer.</font></span></p>
<p class="whs3">&nbsp;</p>
<p class="whs3"><b style="font-weight: bold;">TUI
Command:</b><i> </i></p>
<p class="whs3">&nbsp;</p>
<p class="whs3">&nbsp;</p>
<p class="whs5"><a NAME=DisplayOnly
style="font-size: 14pt;"><img src="salome2_sp3_displaygui_functions_salome2_sp3_displaygui_functions_image53.gif" width="20px" height="20px" border="0" class="img_whs6"><b><font style="font-size: 14pt;"
size=4> DisplayOnly</font></b></a></p>
<p class="whs5">&nbsp;</p>
<p class="whs3"><b style="font-weight: bold;">Description:</b>
Displays only the selected geometrical element.</p>
<p class="whs3">&nbsp;</p>
<p class="whs3"><b style="font-weight: bold;">TUI
Command:</b><i> sg.DisplayOnly(ID)</i></p>
<p class="whs3">&nbsp;</p>
<p class="whs3">&nbsp;</p>
<p class="whs5"><a NAME=EraseOnly
style="font-size: 14pt;"><img src="salome2_sp3_displaygui_functions_salome2_sp3_displaygui_functions_image55.gif" width="20px" height="20px" border="0" class="img_whs6"><b><font style="font-size: 14pt;"
size=4> Erase</font></b></a></p>
<p class="whs5">&nbsp;</p>
<p class="whs3"><b style="font-weight: bold;">Description
:</b> Erases only the selected shape.</p>
<p class="whs3">&nbsp;</p>
<p class="whs3"><b style="font-weight: bold;">TUI
Command :</b><i> sg.EraseOnly(ID)</i></p>
<p class="whs3">&nbsp;</p>
<p class="whs3">&nbsp;</p>
<script type="text/javascript" language="javascript1.2">
<!--
if (window.writeIntopicBar)
writeIntopicBar(0);
//-->
</script>
</body>
</html>

View File

@ -1,307 +0,0 @@
<!doctype HTML public "-//W3C//DTD HTML 4.0 Frameset//EN">
<html>
<head>
<title>Titre</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>
<!--
A:link { color:#0000ff; }
-->
</style><style type="text/css">
<!--
p.whs1 { font-size:12pt; }
img_whs2 { border:none; float:none; width:30px; height:30px; border-style:none; }
p.whs3 { margin-left:40px; }
h3.whs4 { font-size:14pt; }
img_whs5 { width:20px; height:20px; border-style:none; }
p.whs6 { font-size:12pt; margin-left:40px; }
img_whs7 { border:none; border-style:none; width:312px; height:350px; float:none; }
img_whs8 { border:none; width:150px; height:116px; border-style:none; }
p.whs9 { font-family:'Times New Roman' , serif; font-size:14pt; }
img_whs10 { border:none; width:150px; height:153px; border-style:none; }
img_whs11 { border:none; border-style:none; width:312px; height:367px; float:none; }
img_whs12 { border:none; width:150px; height:103px; border-style:none; }
p.whs13 { font-family:'Times New Roman' , serif; font-size:12pt; }
img_whs14 { border:none; border-style:none; width:312px; height:324px; float:none; }
img_whs15 { border:none; width:150px; height:117px; 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)
{
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>Generating complex 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>Generation operations in GEOM are used to create advanced
geometrical objects (3D elements). They are:</p>
<p class="whs1">&nbsp;</p>
<ul>
<li class=kadov-p><p class="whs1"><a href="#Prism">Extrusion</a></p></li>
<li class=kadov-p><p class="whs1"><a href="#Revolution">Revolution</a></p></li>
<li class=kadov-p><p class="whs1"><a href="#Filling">Filling</a></p></li>
<li class=kadov-p><p class="whs1"><a href="#Pipe">Pipe
creation</a></p></li>
</ul>
<p class="whs1">&nbsp;</p>
<p class=TODO>To use generation operations:</p>
<p class=TODO>&nbsp;</p>
<p class="whs3">In the main menu select <span style="font-weight: bold;"><B>New
Entity &gt; Generation</B></span><span>.</span></p>
<p class="whs1">&nbsp;</p>
<h3 class="whs4"><b style="font-weight: bold;"><a NAME=Prism><img src="salome2_sp3_generationgui_functions_salome2_sp3_generationgui_functions_image56.gif" width="20px" height="20px" border="0" class="img_whs5"> Extrusion</a></b> </h3>
<p class="whs1"><b style="font-weight: bold;">Description:</b>
Creates an extruded shape.</p>
<p class="whs1">&nbsp;</p>
<p class="whs1"><b style="font-weight: bold;">Result:</b> GEOM_Object
(edge, face, solid or compsolid).</p>
<p class="whs1">&nbsp;</p>
<p class="whs1"><b style="font-weight: bold;">TUI Command :</b><i>
</i><span style="font-style: italic;"><I>geompy.MakePrism(baseShape, Vector,
Height)</I></span>, where baseShape is a basis of the prism, Vector is a normal
of the prism and Height is a height of the prism.</p>
<p class="whs1">&nbsp;</p>
<p class="whs1"><b style="font-weight: bold;">Arguments:</b>
Name + 1 shape (vertex, edge, wire, face or shell) serving as base object
+ 1 vector (for direction) + 1 value (dimension).</p>
<p class="whs1">&nbsp;</p>
<p class="whs1"><b style="font-weight: bold;">Dialog Box:</b></p>
<p class="whs1">&nbsp;</p>
<p class="whs6"><img src="../pics/extrusion.png" x-maintain-ratio="TRUE" width="312px" height="350px" border="0" class="img_whs7"></p>
<p class="whs1">&nbsp;</p>
<p class="whs1"><b style="font-weight: bold;">Example:</b></p>
<p class="whs1">&nbsp;</p>
<p class="whs6"><img src="../image14.gif" width="150px" height="116px" border="0" class="img_whs8"> &nbsp;<img src="../image27.jpg" width="150px" height="116px" border="0" class="img_whs8"></p>
<p class="whs1">&nbsp;</p>
<p class="whs9"><a NAME=Revolution><img src="salome2_sp3_generationgui_functions_salome2_sp3_generationgui_functions_image57.gif" width="20px" height="20px" border="0" class="img_whs5"><b> Revolution</b></a></p>
<p class="whs9"><span><font size=4 style="font-size:14pt;"><b
style="font-weight: bold;"><font style="font-size: 14pt;"
size=4>&#9;</font></b></font></span></p>
<p class="whs1"><b style="font-weight: bold;">Description:</b>
Creates an extruded shape by revolution.</p>
<p class="whs1">&nbsp;</p>
<p class="whs1"><b style="font-weight: bold;">Result:</b> GEOM_Object
(edge, face, solid or compsolid).</p>
<p class="whs1">&nbsp;</p>
<p class="whs1"><b style="font-weight: bold;">TUI Command:</b><i>
</i><span style="font-style: italic;"><I>geompy.MakeRevolution(Shape, Axis,
Angle)</I></span>, where Shape is a shape to rotate, Axis is the axis of the
revolution and Angle is an angle by which Shape has to be rotated around
Axis.</p>
<p class="whs1">&nbsp;</p>
<p class="whs1"><b style="font-weight: bold;">Arguments:</b>
Name + 1 shape (vertex, edge, wire, face or shell) serving as base object
+ 1 vector (for direction) + 1 value (angle).</p>
<p class="whs1">&nbsp;</p>
<p class="whs1"><b style="font-weight: bold;">Dialog Box:</b></p>
<p class="whs1">&nbsp;</p>
<p class="whs6"><img src="../pics/revolution.png" x-maintain-ratio="TRUE" width="312px" height="350px" border="0" class="img_whs7"></p>
<p class="whs6">&nbsp;</p>
<p class="whs1"><b style="font-weight: bold;">Example:</b></p>
<p class="whs1">&nbsp;</p>
<p class="whs6"><img src="../image15.gif" width="150px" height="153px" border="0" class="img_whs10"> &nbsp;<img src="../image52.jpg" width="150px" height="153px" border="0" class="img_whs10"></p>
<p class="whs1">&nbsp;</p>
<p class="whs9"><a NAME=Filling><img src="salome2_sp3_generationgui_functions_salome2_sp3_generationgui_functions_image58.gif" width="20px" height="20px" border="0" class="img_whs5"><b> Filling</b></a></p>
<p class="whs9">&nbsp;</p>
<p class="whs1"><b style="font-weight: bold;">Description:</b>
Creates a curving face using several curves.</p>
<p class="whs1">&nbsp;</p>
<p class="whs1"><b style="font-weight: bold;">Result:</b> GEOM_Object
(face).</p>
<p class="whs1">&nbsp;</p>
<p class="whs1"><b style="font-weight: bold;">TUI Command:</b><i>
</i><span style="font-style: italic;"><I>geompy.MakeFilling(Shape, MinDegree,
MaxDegree, Tol2D, Tol3D, NbIter)</I></span>, where Shape is a shape to fill,
MinDegree and MaxDegree are correspondingly maximal and minimal degree,
Tol2D is a tolerance for 2D and Tol3D is a tolerance for 3D, NbIter is
a number of iterations.</p>
<p class="whs1">&nbsp;</p>
<p class="whs1"><b style="font-weight: bold;">Arguments:</b>
Name + 1 List of edges + 5 Parameters (Min. degree, Max. degree, Number
of iterations, 2D tolerance, 3D tolerance).</p>
<p class="whs1">&nbsp;</p>
<p class="whs1"><b style="font-weight: bold;">Dialog Box:</b></p>
<p class="whs1">&nbsp;</p>
<p class="whs6"><img src="../pics/filling.png" x-maintain-ratio="TRUE" width="312px" height="367px" border="0" class="img_whs11"></p>
<p class="whs1">&nbsp;</p>
<p class="whs1">&nbsp;</p>
<p class="whs1"><b style="font-weight: bold;">Example:</b></p>
<p class="whs1">&nbsp;</p>
<p class="whs6"><img src="../image7.gif" width="150px" height="103px" border="0" class="img_whs12"> &nbsp;<img src="../image11.jpg" width="150px" height="103px" border="0" class="img_whs12"></p>
<p class="whs13">&nbsp;</p>
<p class="whs9"><a NAME=Pipe><img src="salome2_sp3_generationgui_functions_salome2_sp3_generationgui_functions_image59.gif" width="20px" height="20px" border="0" class="img_whs5"><b> Pipe</b></a></p>
<p class="whs13"><span><font size=3 style="font-size:12pt;"><b
style="font-weight: bold;"><font style="font-family: 'Times New Roman', serif; font-size: 12pt;"
face="Times New Roman"
size=4>&#9;</font></b></font></span></p>
<p class="whs1"><b style="font-weight: bold;">Description:</b>
Creates an extruded shape.</p>
<p class="whs1">&nbsp;</p>
<p class="whs1"><b style="font-weight: bold;">Result:</b> GEOM_Object
(edge, face, solid or compsolid).</p>
<p class="whs1">&nbsp;</p>
<p class="whs1"><b style="font-weight: bold;">TUI Command:</b><i>
</i><span style="font-style: italic;"><I>geompy.MakePipe(baseShape, pathShape)</I></span>,
where baseShape is a shape to be extruded, pathShape is a path along which
baseShape is extruded.</p>
<p class="whs1">&nbsp;</p>
<p class="whs1"><b style="font-weight: bold;">Arguments:</b>
Name + 1 shape (vertex, edge, wire, face or shell) serving as base object
+ 1 shape (edge, face or shell) for definition of the path.</p>
<p class="whs1">&nbsp;</p>
<p class="whs1"><b style="font-weight: bold;">Dialog Box:</b></p>
<p class="whs1">&nbsp;</p>
<p class="whs6"><img src="../pics/pipe.png" x-maintain-ratio="TRUE" width="312px" height="324px" border="0" class="img_whs14"></p>
<p class="whs6">&nbsp;</p>
<p class="whs1"><b style="font-weight: bold;">Example:</b></p>
<p class="whs1">&nbsp;</p>
<p class="whs6"><img src="../image8.gif" width="150px" height="117px" border="0" class="img_whs15"> &nbsp;<img src="../image12.jpg" width="150px" height="117px" border="0" class="img_whs15"></p>
<p class="whs6">&nbsp;</p>
<script type="text/javascript" language="javascript1.2">
<!--
if (window.writeIntopicBar)
writeIntopicBar(0);
//-->
</script>
</body>
</html>

View File

@ -17,8 +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; width:557px; height:274px; float:none; border-style:none; } img_whs4 { border:none; width:425px; height:269px; float:none; border-style:none; }
img_whs5 { border:none; width:529px; height:272px; float:none; border-style:none; } img_whs5 { border:none; width:436px; height:269px; float:none; border-style:none; }
--> -->
</style><script type="text/javascript" language="JavaScript" title="WebHelpInlineScript"> </style><script type="text/javascript" language="JavaScript" title="WebHelpInlineScript">
<!-- <!--
@ -50,7 +50,7 @@ if (window.gbWhTopic)
{ {
if (window.addTocInfo) if (window.addTocInfo)
{ {
addTocInfo("GEOM module\nImporting/exporting geometrical objects"); addTocInfo("Geometry module\nImporting/exporting geometrical objects");
addButton("show",BTN_TEXT,"Show","","","","",0,0,"","",""); addButton("show",BTN_TEXT,"Show","","","","",0,0,"","","");
} }
@ -76,8 +76,8 @@ else
</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 Geometry module you
and export geometrical objects from/into BREP, IGES, STEP </span></b><b><span can import and export geometrical objects from/into BREP, IGES, STEP </span></b><b><span
style="font-weight: normal;">files. The mechanisms of import and export style="font-weight: normal;">files. The mechanisms of import and export
are implemented via plug-ins, which gives you the opportunity to expand 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 the range of available formats by adding more plug-ins (for example, CATIA
@ -98,14 +98,14 @@ else
<p class="whs3">&nbsp;</p> <p class="whs3">&nbsp;</p>
<p class="whs3"><img src="../pics/import.png" x-maintain-ratio="TRUE" width="557px" height="274px" border="0" class="img_whs4"></p> <p class="whs3"><img src="../pics/geomimport.png" x-maintain-ratio="TRUE" width="425px" height="269px" border="0" class="img_whs4"></p>
<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>Open</B></span>. Your file will be imported into style="font-weight: bold;"><B>Open</B></span>. Your file will be imported in
GEOM and its contents (geometrical object) will be displayed in the <span the module and its contents (geometrical object) will be displayed in
style="font-weight: bold;"><B>Object Browser</B></span>. </p> the <span style="font-weight: bold;"><B>Object Browser</B></span>. </p>
<p class="whs3">&nbsp;</p> <p class="whs3">&nbsp;</p>
@ -118,13 +118,13 @@ 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>In the opening dialog box<span style="font-weight: bold;"><B>Export. </B></span>In the opening dialog box<span
style="font-weight: bold;"><B> Export </B></span>define the required format the style="font-weight: bold;"><B> Export </B></span>define the required format,
name and the location of the file for exportation.<span style="font-weight: bold;"> the name and the location of the file for exportation.<span style="font-weight: bold;">
<B></B></span></p> <B></B></span></p>
<p class="whs3">&nbsp;</p> <p class="whs3">&nbsp;</p>
<p class="whs3"><img src="../pics/export.png" x-maintain-ratio="TRUE" width="529px" height="272px" border="0" class="img_whs5"></p> <p class="whs3"><img src="../pics/geomexport.png" x-maintain-ratio="TRUE" width="436px" height="269px" border="0" class="img_whs5"></p>
<p class="whs3">&nbsp;</p> <p class="whs3">&nbsp;</p>

View File

@ -85,7 +85,7 @@ if (window.gbWhTopic)
{ {
if (window.addTocInfo) if (window.addTocInfo)
{ {
addTocInfo("GEOM module\nUsing measurement tools"); addTocInfo("Geometry module\nUsing measurement tools");
addButton("show",BTN_TEXT,"Show","","","","",0,0,"","",""); addButton("show",BTN_TEXT,"Show","","","","",0,0,"","","");
} }
@ -185,17 +185,6 @@ else
<p class="whs1">&nbsp;</p> <p class="whs1">&nbsp;</p>
<p class="whs1">&nbsp;</p>
<p class="whs1"><b style="font-weight: bold;">Arguments:</b>
1 point.</p>
<p class="whs1">&nbsp;</p>
<p class="whs1"><b style="font-weight: bold;">Dialog Box:</b></p>
<p class="whs1">&nbsp;</p>
<p class="whs5"><img src="../pics/measures1.png" x-maintain-ratio="TRUE" width="272px" height="303px" border="0" class="img_whs6"></p> <p class="whs5"><img src="../pics/measures1.png" x-maintain-ratio="TRUE" width="272px" height="303px" border="0" class="img_whs6"></p>
<p class="whs1">&nbsp;</p> <p class="whs1">&nbsp;</p>
@ -226,15 +215,6 @@ else
<p class="whs1">&nbsp;</p> <p class="whs1">&nbsp;</p>
<p class="whs1"><b style="font-weight: bold;">Arguments:</b>
1 shape.</p>
<p class="whs1">&nbsp;</p>
<p class="whs1"><b style="font-weight: bold;">Dialog Box:</b></p>
<p class="whs1">&nbsp;</p>
<p class="whs3"><img src="../pics/neo-basicprop.png" x-maintain-ratio="TRUE" width="360px" height="307px" border="0" class="img_whs10"></p> <p class="whs3"><img src="../pics/neo-basicprop.png" x-maintain-ratio="TRUE" width="360px" height="307px" border="0" class="img_whs10"></p>
<p>&nbsp;</p> <p>&nbsp;</p>
@ -263,15 +243,6 @@ else
<p class="whs1">&nbsp;</p> <p class="whs1">&nbsp;</p>
<p class="whs1"><b style="font-weight: bold;">Arguments:</b>
1 shape.</p>
<p class="whs1">&nbsp;</p>
<p class="whs1"><b style="font-weight: bold;">Dialog Box:</b></p>
<p class="whs1">&nbsp;</p>
<p class="whs11"><img src="../pics/measures3.png" x-maintain-ratio="TRUE" width="312px" height="367px" border="0" class="img_whs12"></p> <p class="whs11"><img src="../pics/measures3.png" x-maintain-ratio="TRUE" width="312px" height="367px" border="0" class="img_whs12"></p>
<p class="whs1">&nbsp;</p> <p class="whs1">&nbsp;</p>
@ -310,15 +281,6 @@ else
Shape is a shape for which a matrix of inertia and moment of inertia are Shape is a shape for which a matrix of inertia and moment of inertia are
returned.</p> returned.</p>
<p class="whs1">&nbsp;</p>
<p class="whs1"><b style="font-weight: bold;">Arguments:</b>
1 shape.</p>
<p class="whs1">&nbsp;</p>
<p class="whs1"><b style="font-weight: bold;">Dialog Box:</b></p>
<p class="whs11">&nbsp;</p> <p class="whs11">&nbsp;</p>
<p class="whs11"><img src="../pics/measures4.png" x-maintain-ratio="TRUE" width="360px" height="333px" border="0" class="img_whs14"></p> <p class="whs11"><img src="../pics/measures4.png" x-maintain-ratio="TRUE" width="360px" height="333px" border="0" class="img_whs14"></p>
@ -351,15 +313,6 @@ else
<p class="whs1">&nbsp;</p> <p class="whs1">&nbsp;</p>
<p class="whs1"><b style="font-weight: bold;">Arguments:</b>
1 shape.</p>
<p class="whs1">&nbsp;</p>
<p class="whs1"><b style="font-weight: bold;">Dialog Box:</b></p>
<p class="whs1">&nbsp;</p>
<p class="whs11"><img src="../pics/measures5.png" x-maintain-ratio="TRUE" width="360px" height="328px" border="0" class="img_whs16"></p> <p class="whs11"><img src="../pics/measures5.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>
@ -388,15 +341,6 @@ else
<p class="whs17">&nbsp;</p> <p class="whs17">&nbsp;</p>
<p class="whs1"><b style="font-weight: bold;">Arguments:</b>
2 shapes.</p>
<p class="whs1">&nbsp;</p>
<p class="whs1"><b style="font-weight: bold;">Dialog Box:</b></p>
<p class="whs1">&nbsp;</p>
<p class="whs11"><img src="../pics/distance.png" x-maintain-ratio="TRUE" width="360px" height="290px" border="0" class="img_whs18"></p> <p class="whs11"><img src="../pics/distance.png" x-maintain-ratio="TRUE" width="360px" height="290px" border="0" class="img_whs18"></p>
<p class="whs1">&nbsp;</p> <p class="whs1">&nbsp;</p>
@ -426,15 +370,6 @@ else
<p class="whs1">&nbsp;</p> <p class="whs1">&nbsp;</p>
<p class="whs1"><b style="font-weight: bold;">Arguments:</b>
1 shape.</p>
<p class="whs1">&nbsp;</p>
<p class="whs1"><b style="font-weight: bold;">Dialog Box:</b></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_whs16"></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>
@ -463,15 +398,6 @@ else
<p class="whs1">&nbsp;</p> <p class="whs1">&nbsp;</p>
<p class="whs1"><b style="font-weight: bold;">Arguments:</b>
1 shape.</p>
<p class="whs1">&nbsp;</p>
<p class="whs1"><b style="font-weight: bold;">Dialog Box:</b></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_whs19"></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>
@ -500,15 +426,6 @@ else
<p class="whs1">&nbsp;</p> <p class="whs1">&nbsp;</p>
<p class="whs1"><b style="font-weight: bold;">Arguments:</b>
1 shape.</p>
<p class="whs1">&nbsp;</p>
<p class="whs1"><b style="font-weight: bold;">Dialog Box:</b></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_whs20"></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>
@ -565,20 +482,12 @@ else
<p class="whs1">&nbsp;</p> <p class="whs1">&nbsp;</p>
<p class="whs1"><b>TUI Command:</b><i> </i><span style="font-style: italic;"><I>geompy.CheckCompoundOfBlocks(Compound). <p class="whs1"><b style="font-weight: bold;">TUI Command:</b><i>
</i><span style="font-style: italic;"><I>geompy.CheckCompoundOfBlocks(Compound).
</I></span>Checks if the<span style="font-style: italic;"> <I></I></span>shape is </I></span>Checks if the<span style="font-style: italic;"> <I></I></span>shape is
a valid compound of blocks. If it is true, then the validity flag is returned, a valid compound of blocks. If it is true, then the validity flag is returned,
and encountered errors are printed in the python console.</p> and encountered errors are printed in the python console.</p>
<p class="whs1">&nbsp;</p>
<p class="whs1"><b style="font-weight: bold;">Arguments:</b>
1 shape.</p>
<p class="whs1">&nbsp;</p>
<p class="whs1"><b style="font-weight: bold;">Dialog Box:</b></p>
<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_whs24"></p> <p class="whs11"><img src="../pics/measures10.png" x-maintain-ratio="TRUE" width="329px" height="436px" border="0" class="img_whs24"></p>

View File

@ -1,637 +0,0 @@
<!doctype HTML public "-//W3C//DTD HTML 4.0 Frameset//EN">
<html>
<head>
<title>Titre</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>
<!--
A:link { color:#0000ff; }
-->
</style><style type="text/css">
<!--
p.whs1 { font-family:'Times New Roman' , serif; font-size:12pt; font-weight:normal; }
img_whs2 { border:none; float:none; width:30px; height:30px; border-style:none; }
p.whs3 { font-family:'Times New Roman' , serif; font-size:12pt; }
ul.whs4 { list-style:disc; }
p.whs5 { font-size:12pt; }
p.whs6 { margin-left:40px; }
p.whs7 { font-family:'Times New Roman' , serif; font-size:14pt; }
img_whs8 { width:20px; height:20px; border-style:none; }
p.whs9 { font-size:12pt; margin-left:40px; }
img_whs10 { border:none; border-style:none; width:312px; height:483px; float:none; }
img_whs11 { border:none; border-style:none; width:448px; height:302px; float:none; }
img_whs12 { border:none; width:150px; height:135px; border-style:none; }
img_whs13 { border:none; border-style:none; width:312px; height:367px; float:none; }
img_whs14 { border:none; width:150px; height:131px; border-style:none; }
img_whs15 { border:none; border-style:none; width:312px; height:315px; float:none; }
img_whs16 { border:none; border-style:none; width:312px; height:346px; float:none; }
img_whs17 { border:none; width:150px; height:99px; border-style:none; }
img_whs18 { border:none; border-style:none; width:312px; height:319px; float:none; }
img_whs19 { border:none; border-style:none; width:312px; height:381px; float:none; }
img_whs20 { border:none; width:150px; height:104px; border-style:none; }
img_whs21 { border:none; width:24px; height:22px; border-style:none; }
p.whs22 { font-size:12pt; font-weight:bold; }
ul.whs23 { list-style:circle; }
p.whs24 { font-size:12pt; font-weight:normal; }
table.whs25 { x-cell-content-align:top; width:37.774%; border-spacing:0px; }
col.whs26 { width:48.722%; }
col.whs27 { width:51.278%; }
tr.whs28 { x-cell-content-align:top; }
td.whs29 { width:48.722%; padding-right:10px; padding-left:10px; border-right-style:none; border-left-style:none; border-top-style:none; border-bottom-style:none; }
td.whs30 { width:51.278%; padding-right:10px; padding-left:10px; border-top-style:none; border-bottom-style:none; border-right-style:none; }
img_whs31 { border:none; border-style:none; width:312px; height:494px; float:none; }
p.whs32 { font-weight:bold; }
img_whs33 { border:none; width:250px; height:284px; float:none; border-style:none; }
img_whs34 { border:none; width:271px; height:284px; border-style:none; }
img_whs35 { border:none; width:23px; height:22px; border-style:none; }
img_whs36 { border:none; border-style:none; width:312px; height:372px; float:none; }
p.whs37 { font-size:12pt; margin-left:0px; }
p.whs38 { font-size:12pt; margin-left:0px; font-weight:bold; }
p.whs39 { margin-left:40px; font-size:12pt; }
img_whs40 { border:none; width:300px; height:311px; border-style:none; }
p.whs41 { font-size:12pt; margin-left:36px; text-indent:-36px; }
p.whs42 { font-size:12pt; text-indent:-36px; margin-left:40px; }
img_whs43 { border:none; width:23px; height:21px; border-style:none; }
img_whs44 { border:none; border-style:none; width:312px; height:230px; float:none; }
p.whs45 { font-size:12pt; margin-left:40px; text-indent:-40px; }
p.whs46 { font-size:12pt; margin-left:40px; text-indent:-40px; font-weight:bold; }
p.whs47 { font-size:12pt; text-indent:-40px; font-weight:bold; margin-left:80px; }
img_whs48 { border:none; width:250px; height:236px; border-style:none; }
img_whs49 { border:none; width:250px; height:233px; border-style:none; }
-->
</style><script type="text/javascript" language="JavaScript">
<!--
if ((navigator.appName == "Netscape") && (parseInt(navigator.appVersion) == 4))
{
var strNSS = "<style type='text/css'>";
strNSS += "p.whs37 {margin-left:1pt; }";
strNSS += "p.whs38 {margin-left:1pt; }";
strNSS += "p.whs41 {text-indent:1pt; }";
strNSS += "p.whs42 {text-indent:1pt; }";
strNSS += "p.whs45 {text-indent:1pt; }";
strNSS += "p.whs46 {text-indent:1pt; }";
strNSS += "p.whs47 {text-indent:1pt; }";
strNSS +="</style>";
document.write(strNSS);
}
//-->
</script>
<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)
{
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>Basic operations</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 perform
basic operations with geometrical objects aimed at creation of more complex
shapes. These operations are:</span></b></p>
<p class="whs3">&nbsp;</p>
<ul type="disc" class="whs4">
<li class=kadov-p><p class="whs3"><a
HREF="#_Toc57113143">Partition&#9;</a></p></li>
<li class=kadov-p><p class="whs3"><a
HREF="#_Toc57113144"><font><span style="font-family: 'Times New Roman', serif; font-size: 12pt;"><font size=3 style="font-size:12pt;">Archimede&#9;</font></span></font></a></p></li>
<li class=kadov-p><p class="whs3"><a
HREF="#_Toc57113145"><font><span style="font-family: 'Times New Roman', serif; font-size: 12pt;"><font size=3 style="font-size:12pt;">Fillet&#9;</font></span></font></a></p></li>
<li class=kadov-p><p class="whs3"><a
HREF="#_Toc57113146">Chamfer</a></p></li>
<li class=kadov-p><p class="whs3">Blocks</p></li>
<ul type="disc" class="whs4">
<li class=kadov-p><p class="whs3"><a
href="#Multi-transformation">Multi-transformation</a></p></li>
<li class=kadov-p><p class="whs3"><a
href="#ExplodeOnBlocks">Explode on blocks</a></p></li>
<li class=kadov-p><p class="whs3"><a
href="#Propagate">Propagate</a><a HREF="#_Toc57113146">&#9;</a></p></li>
</ul>
</ul>
<p class="whs5">&nbsp;</p>
<p class=TODO>To perform basic operations on geometrical objects:</p>
<p class=TODO>&nbsp;</p>
<p class="whs6">In the main menu select <span style="font-weight: bold;"><B>Operations</B></span><span>.</span></p>
<p class="whs5">&nbsp;</p>
<p class="whs5">&nbsp;</p>
<p class="whs7"><b style="font-weight: bold;"><a
NAME=_Toc57113143><span style="font-size: 14pt;"><font size=4 style="font-size:14pt;"><img src="salome2_sp3_operationgui_functions_salome2_sp3_operationgui_functions_image87.gif" width="20px" height="20px" border="0" class="img_whs8"><font
style="font-size: 14pt;"
size=4> Partition</font></font></span></a></b></p>
<p class="whs7">&nbsp;</p>
<p class="whs5"><b style="font-weight: bold;">Description:</b>
Builds a shape by intersection.</p>
<p class="whs5">&nbsp;</p>
<p class="whs5"><b style="font-weight: bold;">Result:</b> GEOM_Object.</p>
<p class="whs5">&nbsp;</p>
<p class="whs5"><b style="font-weight: bold;">TUI Command:</b><i>
</i><span style="font-style: italic;"><I>geompy.MakePartition(ListOfShapes,
ListOfTools, ListOfKeepInside, ListOfRemoveInside, Limit, RemoveWebs,
ListOfMaterials)</I></span>, where ListOfShapes is a list of shapes to be
intersected, ListOfTools is a list of shapes to intersect the shapes from
ListOfShapes, ListOfKeepInside is a list of shapes outside which the results
will be deleted, ListOfRemoveInside is a list of shapes inside which the
results will be deleted, Limit is a type of the result shapes, if RemoveWebs
is True the Glue 3D algorithm will be performed on the results, ListOfMaterials
is a list of materials indices for each shape, it makes sense only if
RemoveWebs is True.</p>
<p class="whs5">&nbsp;</p>
<p class="whs5"><b style="font-weight: bold;">Arguments:</b>
Up to 4 shapes + reconstruction limit.</p>
<ul type="disc" class="whs4">
<li class=kadov-p><p class="whs5"><b style="font-weight: bold;">1st
Constructor:</b> Name + 2 shapes (first shape will be intersected by the
second shape) + reconstruction limit.</p></li>
<li class=kadov-p><p class="whs5"><b style="font-weight: bold;">2nd
Constructor:</b> Name + 1 shape which will be intersected + 1 cutting
face.</p></li>
</ul>
<p class="whs5">&nbsp;</p>
<p class="whs5">&nbsp;</p>
<p class="whs5"><b style="font-weight: bold;">Dialog Box:</b></p>
<p class="whs5">&nbsp;</p>
<p class="whs9"><img src="../pics/partition1.png" x-maintain-ratio="TRUE" width="312px" height="483px" border="0" class="img_whs10"> <img src="../pics/partition2.png" x-maintain-ratio="TRUE" width="312px" height="483px" border="0" class="img_whs10"> </p>
<p class="whs9">&nbsp;</p>
<p class="whs9"><img src="../pics/neo-materials.png" x-maintain-ratio="TRUE" width="448px" height="302px" border="0" class="img_whs11"></p>
<p class="whs9">&nbsp;</p>
<p class="whs5"><b style="font-weight: bold;">Example:</b></p>
<p class="whs5">&nbsp;</p>
<p class="whs9"><img src="../image80.jpg" width="150px" height="135px" border="0" class="img_whs12"> &nbsp;<img src="../image81.jpg" width="150px" height="135px" border="0" class="img_whs12"></p>
<p class="whs9">&nbsp;</p>
<p class="whs7"><a NAME=_Toc57113144><span
style="font-size: 14pt;"><font size=4 style="font-size:14pt;"><img src="salome2_sp3_operationgui_functions_salome2_sp3_operationgui_functions_image88.gif" width="20px" height="20px" border="0" class="img_whs8"><b><font style="font-size: 14pt;"
size=4> Archimede</font></b></font></span></a></p>
<p class="whs7">&nbsp;</p>
<p class="whs5"><b style="font-weight: bold;">Description:</b>
Creates a plane corresponding to the modeled water-line of the object
plunged into the water (in Z direction).</p>
<p class="whs5">&nbsp;</p>
<p class="whs5"><b style="font-weight: bold;">Result:</b> GEOM_Object.</p>
<p class="whs5">&nbsp;</p>
<p class="whs5"><b style="font-weight: bold;">TUI Command:
</b><span style="font-style: italic;"><I>geompy.Archimede(Shape,Weight,WaterDensity,MeshingDeflection)</I></span>,
where Shape is a shape to put into the water, Weight is a weight of the
shape, WaterDensity &nbsp;is
density of water, MeshingDeflection is a deflection of the mesh, using
to compute the section.</p>
<p class="whs5">&nbsp;</p>
<p class="whs5"><b style="font-weight: bold;">GUI Arguments:</b>
Name + 1 shape &nbsp;+
3 values (Weight, Water Density &amp; Meshing Deflection).</p>
<p class="whs5">&nbsp;</p>
<p class="whs5"><b style="font-weight: bold;">Dialog Box:</b></p>
<p class="whs5">&nbsp;</p>
<p class="whs9"><img src="../pics/archimede.png" x-maintain-ratio="TRUE" width="312px" height="367px" border="0" class="img_whs13"></p>
<p class="whs5">&nbsp;</p>
<p class="whs5"><b style="font-weight: bold;">Example:</b></p>
<p class="whs5">&nbsp;</p>
<p class="whs9"><img src="../image78.jpg" width="150px" height="131px" border="0" class="img_whs14"> &nbsp;<img src="../image79.jpg" width="150px" height="131px" border="0" class="img_whs14"> &nbsp;<img src="../image22.gif" width="150px" height="131px" border="0" class="img_whs14"></p>
<p class="whs9">&nbsp;</p>
<p class="whs9">&nbsp;</p>
<p class="whs7"><a NAME=_Toc57113145><span
style="font-size: 14pt;"><font size=4 style="font-size:14pt;"><img src="salome2_sp3_operationgui_functions_salome2_sp3_operationgui_functions_image89.gif" width="20px" height="20px" border="0" class="img_whs8"><b><font style="font-size: 14pt;"
size=4> Fillet</font></b></font></span></a></p>
<p class="whs7">&nbsp;</p>
<p class="whs5"><b style="font-weight: bold;">Description:</b>
Make fillets of the edges of a shape.</p>
<p class="whs5">&nbsp;</p>
<p class="whs5"><b style="font-weight: bold;">Result:</b> GEOM_Object.</p>
<p class="whs5">&nbsp;</p>
<p class="whs5"><b style="font-weight: bold;">TUI Command:</b><i>
</i><span style="font-style: italic;"><I>geompy.MakeFillet(Shape, Radius,
ShapeType, ListOfShapeID)</I></span>, where Shape is a shape to create a fillet
on, Radius is a radius of the fillet, ShapeType is a type of shapes to
be processed, ListOfShapeID is a list of subshapes Ids to be processed.</p>
<p class="whs5">&nbsp;</p>
<p class="whs5"><b style="font-weight: bold;">Arguments:</b></p>
<ul type="disc" class="whs4">
<li class=kadov-p><p class="whs5"><b style="font-weight: bold;">1st
Constructor:</b> Name + 1 shape + 1 value (fillet radius).</p></li>
<li class=kadov-p><p class="whs5"><b style="font-weight: bold;">2nd
Constructor:</b> Name + 1 shape + 1 Selection of edges + 1 value (Fillet
radius).</p></li>
<li class=kadov-p><p class="whs5"><b style="font-weight: bold;">3rd
Constructor:</b> Name + 1 shape + 1 Selection of faces + 1 value (Fillet
radius).</p></li>
</ul>
<p class="whs5">&nbsp;</p>
<p class="whs5"><b style="font-weight: bold;">Dialog Box:</b></p>
<p class="whs5">&nbsp;</p>
<p class="whs9"><img src="../pics/fillet1.png" x-maintain-ratio="TRUE" width="312px" height="315px" border="0" class="img_whs15"> &nbsp;<img src="../pics/fillet2.png" x-maintain-ratio="TRUE" width="312px" height="346px" border="0" class="img_whs16"> &nbsp;<img src="../pics/fillet3.png" x-maintain-ratio="TRUE" width="312px" height="346px" border="0" class="img_whs16"></p>
<p class="whs5">&nbsp; </p>
<p class="whs5"><b style="font-weight: bold;">Example:</b></p>
<p class="whs5">&nbsp;</p>
<p class="whs9"><img src="../image82.jpg" width="150px" height="99px" border="0" class="img_whs17"> &nbsp;<img src="../image83.jpg" width="150px" height="99px" border="0" class="img_whs17"></p>
<p class="whs9">&nbsp;</p>
<p class="whs5">&nbsp;</p>
<p class="whs7"><a NAME=_Toc57113146><span
style="font-size: 14pt;"><font size=4 style="font-size:14pt;"><img src="salome2_sp3_operationgui_functions_salome2_sp3_operationgui_functions_image90.gif" width="20px" height="20px" border="0" class="img_whs8"><b><font style="font-size: 14pt;"
size=4> Chamfer</font></b></font></span></a></p>
<p class="whs7">&nbsp;</p>
<p class="whs5"><b style="font-weight: bold;">Description:</b>
Makes chamfer of the edges of a Shape.</p>
<p class="whs5">&nbsp;</p>
<p class="whs5"><b style="font-weight: bold;">Result:</b> GEOM_Object.</p>
<p class="whs5">&nbsp;</p>
<p class="whs5"><b style="font-weight: bold;">TUI Command:</b><i>
</i></p>
<ul type="disc" class="whs4">
<li class=kadov-p><p class="whs5"><span style="font-style: italic;"><I>geompy.MakeChamferEdge(Shape,
D1, D2, Face1, Face2)</I></span>, where Shape is a shape to create a chamfer
on, D1 is a chamfer size along Face1, D2 is a chamfer size along Face2,
Face1 and Face2 are indices of faces in Shape.</p></li>
<li class=kadov-p><p class="whs5"><span style="font-style: italic;"><I>geompy.MakeChamferFace(Shape,
D1, D2, ListOfFaceID)</I></span>, where Shape is a shape to create chamfer
on, D1 is a chamfer size along a face from &nbsp;ListOfFaceID,
&nbsp;D2 is a
chamfer size along two faces connected to the edge to which the chamfer
is applied, ListOfFaceID is a list of indices of faces in Shape.</p></li>
</ul>
<p class="whs5">&nbsp;</p>
<p class="whs5"><b style="font-weight: bold;">Arguments:</b></p>
<p class="whs5">&nbsp;</p>
<ul type="disc" class="whs4">
<li class=kadov-p><p class="whs5"><b style="font-weight: bold;">1st
Constructor :</b> Name + 1 SHAPE + 1 value (Chamfer dimension).</p></li>
<li class=kadov-p><p class="whs5"><b style="font-weight: bold;">2nd
Constructor :</b> Name + 1 SHAPE + 2 faces + 2 values (Chamfer dimensions).</p></li>
<li class=kadov-p><p class="whs5"><b style="font-weight: bold;">3rd
Constructor :</b> Name + 1 SHAPE + 1 Selection of faces + 2 values (Chamfer
dimensions).</p></li>
</ul>
<p class="whs5">&nbsp;</p>
<p class="whs5"><b style="font-weight: bold;">Dialog Box:</b></p>
<p class="whs5">&nbsp;</p>
<p class="whs9"><img src="../pics/chamfer1.png" x-maintain-ratio="TRUE" width="312px" height="319px" border="0" class="img_whs18"> &nbsp;<img src="../pics/chamfer2.png" x-maintain-ratio="TRUE" width="312px" height="381px" border="0" class="img_whs19"> &nbsp;<img src="../pics/chamfer3.png" x-maintain-ratio="TRUE" width="312px" height="381px" border="0" class="img_whs19"></p>
<p class="whs5">&nbsp; </p>
<p class="whs5"><b style="font-weight: bold;">Example:</b></p>
<p class="whs5">&nbsp;</p>
<p class="whs9"><img src="../image84.jpg" width="150px" height="104px" border="0" class="img_whs20"> &nbsp;<img src="../image85.jpg" width="150px" height="104px" border="0" class="img_whs20"></p>
<p class="whs5">&nbsp;</p>
<p class="whs5">&nbsp;</p>
<p class="whs5">&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p><a name=Multi-transformation><img src="../image52.gif" width="24px" height="22px" border="0" class="img_whs21"> <span style="font-size: 14pt; font-weight: bold;"><font size=4 style="font-size:14pt;"><B>Block</B></font></span>
<span style="font-weight: bold; font-size: 14pt;"><font size=4 style="font-size:14pt;"><B>multi-transformation</B></font></span></a></p>
<p>&nbsp;</p>
<p class="whs5"><b style="font-weight: bold;">Description:</b>
Makes several translations of a block (solid) in <span style="font-weight: bold;"><B>one</B></span>
or <span style="font-weight: bold;"><B>two</B></span> directions depending on
the arguments specified by the user.</p>
<p class="whs5">&nbsp;</p>
<p class="whs5"><b style="font-weight: bold;">Result:</b> GEOM_Object.</p>
<p class="whs5">&nbsp;</p>
<p class="whs5"><b style="font-weight: bold;">TUI Command:</b><i>
</i></p>
<ul type="disc" class="whs4">
<li class=kadov-p><p class="whs5"><span style="font-style: italic;"><I>geompy.
MakeMultiTransformation1D(Block, DirFaceID1, DirFaceID2, NbTimes)</I></span>,
where Block is a block to be transformed, DirFaceID1 is an ID of the face
which defines the first direction of transformation, DirFaceID2 is an
ID of the face which defines the second direction of transformation, NbTimes
is a numeber of transformations.</p></li>
<li class=kadov-p><p class="whs5"><span style="font-style: italic;"><I>geompy.
MakeMultiTransformation2D(Block, DirFaceID1U, DirFaceID2U, NbTimesU, DirFaceID1V,
DirFaceID2V, NbTimesV)</I></span>, where Block is a block to be transformed,
DirFaceID1U and DirFace1V are IDs of the faces, which define directions
of the first transformation, DirFaceID1V and DirFaceID2V are IDs of the
faces which define directions of the second transformation, NbTimesU and
NbTimesV are numbers of transformations.</p></li>
</ul>
<p class="whs5">&nbsp;</p>
<p class="whs5"><b style="font-weight: bold;">Arguments:</b></p>
<p class="whs5">&nbsp;</p>
<ul type="disc" class="whs4">
<li class=kadov-p><p class="whs22">1D
transformation: <span style="font-weight: normal;">Name + 1 hexahedral
solid + 1 or 2 faces + 1 integer (number of blocks)</span></p></li>
<li class=kadov-p><p class="whs22">2D
transformation:<span style="font-weight: normal;"> Name + 1 hexahedral
solid + </span></p></li>
<ul type="circle" class="whs23">
<li class=kadov-p><p class="whs24">2
faces and 1 integer, or</p></li>
<li class=kadov-p><p class="whs22"><span
style="font-weight: normal;">3 or 4 faces and 2 integers </span></p></li>
</ul>
</ul>
<p class="whs5">&nbsp;</p>
<p class="whs5"><b style="font-weight: bold;">Dialog Box:</b></p>
<table x-use-null-cells cellspacing="0" width="37.774%" class="whs25">
<col class="whs26">
<col class="whs27">
<tr valign="top" class="whs28">
<td width="48.722%" class="whs29">
<p><img src="../pics/mtransf1.png" x-maintain-ratio="TRUE" width="312px" height="381px" border="0" class="img_whs19"></td>
<td width="51.278%" class="whs30">
<p><img src="../pics/mtransf2.png" x-maintain-ratio="TRUE" width="312px" height="494px" border="0" class="img_whs31"></td></tr>
</table>
<p class="whs5">&nbsp;</p>
<p class="whs32">Example:</p>
<p class="whs32">&nbsp;</p>
<p class="whs32"><img src="../image188.jpg" x-maintain-ratio="TRUE" width="250px" height="284px" border="0" class="img_whs33"> &nbsp;&nbsp;&nbsp;&nbsp;<img src="../image189.jpg" width="271px" height="284px" border="0" class="img_whs34"></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p><a name=ExplodeOnBlocks><img src="../image53.gif" width="23px" height="22px" border="0" class="img_whs35"> <span style="font-weight: bold; font-size: 14pt;"><font size=4 style="font-size:14pt;"><B>Explode
on Blocks</B></font></span></a></p>
<p>&nbsp;</p>
<p class="whs5"><b style="font-weight: bold;">Description:</b>
Returns blocks of the given compound. The user may define the type blocks
to be extracted by setting the minimum and maximum number of faces in
the target block. By checking the corresponding box the user may also
interactively choose the blocks from a compound .</p>
<p class="whs5">&nbsp;</p>
<p class="whs5"><b style="font-weight: bold;">Result:</b> GEOM_Object.</p>
<p class="whs5">&nbsp;</p>
<p class="whs5"><b style="font-weight: bold;">TUI Command:</b><i>
</i><span style="font-style: italic;"><I>geompy.MakeBlockExplode(Compound,
MinNbFaces, MaxNbFaces)</I></span>, where Compound is a compound to be exploded
into the blocks, MinNbFaces, MaxNbFaces are correspondingly the minimal
and &nbsp;the
maximal number of faces of the resulting blocks.</p>
<p class="whs5">&nbsp;</p>
<p class="whs5"><b style="font-weight: bold;">Arguments: <span
style="font-weight: normal;">1 compound + 1 integer (min. and max. number
of faces in the block to be extracted).</span></b></p>
<p class="whs5">&nbsp;</p>
<p class="whs5">&nbsp;</p>
<p class="whs5"><b style="font-weight: bold;">Dialog Box:</b></p>
<p class="whs5">&nbsp;</p>
<p class="whs9"><img src="../pics/mtransf3.png" x-maintain-ratio="TRUE" width="312px" height="372px" border="0" class="img_whs36"></p>
<p class="whs37">&nbsp;</p>
<p class="whs38">Example:</p>
<p class="whs37">&nbsp;</p>
<p class="whs39"><img src="../image191.jpg" width="300px" height="311px" border="0" class="img_whs40"></p>
<p class="whs41">&nbsp;</p>
<p class="whs42">&nbsp;</p>
<p class="whs42">&nbsp;</p>
<p><a name=Propagate><img src="../image3.gif" width="23px" height="21px" border="0" class="img_whs43"> <span style="font-weight: bold; font-size: 14pt;"><font size=4 style="font-size:14pt;"><B>Propagate</B></font></span></a></p>
<p>&nbsp;</p>
<p class="whs5"><b style="font-weight: bold;">Description:</b>
Breaks a multitude of edges of a shape into groups (builds all possible
propagation groups).</p>
<p class="whs5">&nbsp;</p>
<p class="whs5"><b style="font-weight: bold;">Result:</b> List
of GEOM_Objects. Each Geom Object will contain a group of edges.</p>
<p class="whs5">&nbsp;</p>
<p class="whs5"><b style="font-weight: bold;">TUI Command:</b><i>
</i><span style="font-style: italic;"><I>geompy.Propagate(Shape)</I></span>,
where Shape is a shape to build propagation groups on.</p>
<p class="whs5">&nbsp;</p>
<p class="whs5"><b style="font-weight: bold;">Arguments: <span
style="font-weight: normal;">1 Shape.</span></b></p>
<p class="whs5">&nbsp;</p>
<p class="whs5">&nbsp;</p>
<p class="whs5"><b style="font-weight: bold;">Dialog Box: </b></p>
<p class="whs5">&nbsp;</p>
<p class="whs39"><img src="../pics/mtransf4.png" x-maintain-ratio="TRUE" width="312px" height="230px" border="0" class="img_whs44"></p>
<p class="whs45">&nbsp;</p>
<p class="whs46">Example:</p>
<p class="whs46">&nbsp;</p>
<p class="whs47"><img src="../image15.jpg" width="250px" height="236px" border="0" class="img_whs48"> &nbsp;&nbsp;<img src="../image16.jpg" width="250px" height="233px" border="0" class="img_whs49"> &nbsp;&nbsp;</p>
<script type="text/javascript" language="javascript1.2">
<!--
if (window.writeIntopicBar)
writeIntopicBar(0);
//-->
</script>
</body>
</html>

View File

@ -1,395 +0,0 @@
<!doctype HTML public "-//W3C//DTD HTML 4.0 Frameset//EN">
<html>
<head>
<title>Titre</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">
<!--
img_whs1 { border:none; float:none; width:30px; height:30px; border-style:none; }
ul.whs2 { list-style:disc; }
p.whs3 { margin-left:40px; }
p.whs4 { font-size:14pt; }
img_whs5 { width:20px; height:20px; border-style:none; }
img_whs6 { border:none; border-style:none; width:312px; height:324px; float:none; }
img_whs7 { border:none; border-style:none; width:312px; height:332px; float:none; }
img_whs8 { border:none; width:150px; height:129px; border-style:none; }
p.whs9 { font-family:'Times New Roman' , serif; font-size:14pt; }
img_whs10 { border:none; border-style:none; width:312px; height:376px; float:none; }
img_whs11 { border:none; width:150px; height:142px; border-style:none; }
img_whs12 { border:none; border-style:none; width:312px; height:315px; float:none; }
img_whs13 { border:none; width:150px; height:137px; border-style:none; }
p.whs14 { margin-left:40px; font-weight:bold; }
img_whs15 { border:none; width:150px; height:96px; border-style:none; }
img_whs16 { border:none; border-style:none; width:312px; height:402px; float:none; }
p.whs17 { font-size:12pt; margin-left:40px; }
img_whs18 { border:none; width:150px; height:119px; 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)
{
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>Constructing primitives</h1>
<p><span style="font-size: 12pt;"><font size=3 style="font-size:12pt;"><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_whs1"> </font></span><span style="font-size: 12pt; font-weight: normal;"><font size=3 style="font-size:12pt;">In
GEOM you can create different types of primitive geometrical objects </font></span></b>(3D
elements):</p>
<p>&nbsp;</p>
<ul type="disc" class="whs2">
<li class=kadov-p><p><a href="#box">Box</a></p></li>
<li class=kadov-p><p><a href="#cylinder">Cylinder</a></p></li>
<li class=kadov-p><p><a href="#sphere">Sphere</a></p></li>
<li class=kadov-p><p><a href="#torus">Torus</a></p></li>
<li class=kadov-p><p><a href="#cone">Cone</a></p></li>
</ul>
<p>&nbsp;</p>
<p class=TODO>To construct primitive geometrical objects:</p>
<p class=TODO>&nbsp;</p>
<p class="whs3">In the main menu select <span style="font-weight: bold;"><B>New
Entity &gt; Primitives</B></span><span>.</span></p>
<p>&nbsp;</p>
<p class="whs4"><b style="font-weight: bold;"><a NAME=box
style="font-size: 14pt;"><img src="salome2_sp3_primitivegui_functions_salome2_sp3_primitivegui_functions_image99.gif" width="20px" height="20px" border="0" class="img_whs5"><font style="font-size: 14pt;"
size=4> Box</font></a></b></p>
<p class="whs4">&nbsp;</p>
<p><b style="font-weight: bold;">Description:</b> Creates a box.</p>
<p>&nbsp;</p>
<p><b style="font-weight: bold;">Result:</b> GEOM_Object (SOLID).</p>
<p>&nbsp;</p>
<p><b style="font-weight: bold;">TUI Command :</b> <span style="font-style: italic;"><I>geompy.MakeBox(X1,
Y1, Z1, X2, Y2, Z2)</I></span>, &nbsp;where
(X1, Y1, X2) and (X2, Y2, Z2) are coordinates of two points which define
a diagonal of the box.</p>
<p>&nbsp;</p>
<p><b style="font-weight: bold;">Arguments:</b></p>
<ul type="disc" class="whs2">
<li class=kadov-p><p><b style="font-weight: bold;">1st Constructor
:</b> <span style="font-size: 12pt;"><font size=3 style="font-size:12pt;">Name + </font></span>2 vertices (opposite
corners of the box).</p></li>
<li class=kadov-p><p><b style="font-weight: bold;">2nd Constructor
:</b> <span style="font-size: 12pt;"><font size=3 style="font-size:12pt;">Name + </font></span>3 values (dimensions
at origin).</p></li>
</ul>
<p>&nbsp;</p>
<p><b style="font-weight: bold;">Dialog Box:</b></p>
<p>&nbsp;</p>
<p class="whs3"><img src="../pics/box1.png" x-maintain-ratio="TRUE" width="312px" height="324px" border="0" class="img_whs6"> &nbsp;<img src="../pics/box2.png" x-maintain-ratio="TRUE" width="312px" height="332px" border="0" class="img_whs7"></p>
<p>&nbsp;</p>
<p><b style="font-weight: bold;">Example:</b></p>
<p>&nbsp;</p>
<p class="whs3"><img src="../image94.jpg" width="150px" height="129px" border="0" class="img_whs8"></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p class="whs9"><a NAME=cylinder
style="font-size: 14pt;"><img src="salome2_sp3_primitivegui_functions_salome2_sp3_primitivegui_functions_image100.gif" width="20px" height="20px" border="0" class="img_whs5"><b><font style="font-size: 14pt;"
size=4> Cylinder</font></b></a></p>
<p class="whs9">&nbsp;</p>
<p><b style="font-weight: bold;">Description:</b> Creates a cylinder.</p>
<p>&nbsp;</p>
<p><b style="font-weight: bold;">Result:</b> GEOM_Object (solid).</p>
<p>&nbsp;</p>
<p><b style="font-weight: bold;">TUI Command:</b> <span style="font-style: italic;"><I>geompy.MakeCylinder(Point,
Axis, Radius, Height)</I></span>, where Point is a central point of the cylinder
base, Axis (vector value) is an axis of the cylinder, Radius and Height
are correspondingly a radius and a height of the cylinder.</p>
<p>&nbsp;</p>
<p><b style="font-weight: bold;">Arguments:</b></p>
<ul type="disc" class="whs2">
<li class=kadov-p><p><b style="font-weight: bold;">1st Constructor:</b>
<span style="font-size: 12pt;"><font size=3 style="font-size:12pt;">Name + </font></span>1 vertex + 1 vector + 2 values
(Dimensions: radius and height).</p></li>
<li class=kadov-p><p><b style="font-weight: bold;">2nd Constructor:</b>
<span style="font-size: 12pt;"><font size=3 style="font-size:12pt;">Name + </font></span>2 values (Dimensions at origin:
radius and height).</p></li>
</ul>
<p>&nbsp;</p>
<p><b style="font-weight: bold;">Dialog Box:</b></p>
<p>&nbsp;</p>
<p class="whs3"><img src="../pics/cylinder1.png" x-maintain-ratio="TRUE" width="312px" height="376px" border="0" class="img_whs10"> &nbsp;<img src="../pics/cylinder2.png" x-maintain-ratio="TRUE" width="312px" height="376px" border="0" class="img_whs10"></p>
<p>&nbsp;</p>
<p><b style="font-weight: bold;">Example:</b></p>
<p>&nbsp;</p>
<p class="whs3"><img src="../image95.jpg" width="150px" height="142px" border="0" class="img_whs11"></p>
<p class="whs3">&nbsp;</p>
<p>&nbsp;</p>
<p class="whs4"><a NAME=sphere
style="font-size: 14pt;"><img src="salome2_sp3_primitivegui_functions_salome2_sp3_primitivegui_functions_image101.gif" width="20px" height="20px" border="0" class="img_whs5"><b><font style="font-size: 14pt;"
size=4> Sphere</font></b></a></p>
<p class="whs4">&nbsp;</p>
<p><b style="font-weight: bold;">Description:</b> Creates a sphere.</p>
<p>&nbsp;</p>
<p><b style="font-weight: bold;">Result:</b> GEOM_Object (solid).</p>
<p>&nbsp;</p>
<p><b style="font-weight: bold;">TUI Command:</b> <span style="font-style: italic;"><I>geompy.MakeSphere(Point,
Radius)</I></span>, where Point is a center of the sphere and Radius is a
radius of the sphere.</p>
<p>&nbsp;</p>
<p><b style="font-weight: bold;">Arguments:</b></p>
<ul type="disc" class="whs2">
<li class=kadov-p><p><b style="font-weight: bold;">1st Constructor
:</b> <span style="font-size: 12pt;"><font size=3 style="font-size:12pt;">Name + </font></span>1 vertex + 1 value
(Radius).</p></li>
<li class=kadov-p><p><b style="font-weight: bold;">2nd Constructor
:</b> <span style="font-size: 12pt;"><font size=3 style="font-size:12pt;">Name + </font></span>1 &nbsp;value
(Radius from the origin).</p></li>
</ul>
<p>&nbsp;</p>
<p><b style="font-weight: bold;">Dialog Box:</b></p>
<p>&nbsp;</p>
<p class="whs3"><img src="../pics/sphere1.png" x-maintain-ratio="TRUE" width="312px" height="315px" border="0" class="img_whs12"> &nbsp;<img src="../pics/sphere2.png" x-maintain-ratio="TRUE" width="312px" height="315px" border="0" class="img_whs12"></p>
<p>&nbsp;</p>
<p><b style="font-weight: bold;">Example:</b></p>
<p>&nbsp;</p>
<p class="whs3"><img src="../image96.jpg" width="150px" height="137px" border="0" class="img_whs13"></p>
<p class="whs14">&nbsp;</p>
<p>&nbsp;</p>
<p class="whs4"><a NAME=torus
style="font-size: 14pt;"><img src="salome2_sp3_primitivegui_functions_salome2_sp3_primitivegui_functions_image102.gif" width="20px" height="20px" border="0" class="img_whs5"><b><font style="font-size: 14pt;"
size=4> Torus</font></b></a></p>
<p class="whs4">&nbsp;</p>
<p><b style="font-weight: bold;">Description:</b> Creates a torus.</p>
<p>&nbsp;</p>
<p><b style="font-weight: bold;">Result:</b> GEOM_Object (solid).</p>
<p>&nbsp;</p>
<p><b style="font-weight: bold;">TUI Command:</b> <span style="font-style: italic;"><I>geompy.MakeTorus(Point,
Vector, RadiusMajor, RadiusMinor)</I></span>, where Point is a central point
of the torus, Vector is an axis of symmetry, RadiusMajor and RadiusMinor
&nbsp;are correspondingly
a major and minor radiuses of the torus.</p>
<p>&nbsp;</p>
<p><b style="font-weight: bold;">Arguments:</b></p>
<ul type="disc" class="whs2">
<li class=kadov-p><p><b style="font-weight: bold;">1st Constructor:</b>
<span style="font-size: 12pt;"><font size=3 style="font-size:12pt;">Name + </font></span>1 vertex + 1 vector (for
direction) + 2 values (1 &amp; 2 Radius).</p></li>
<li class=kadov-p><p><b style="font-weight: bold;">2nd Constructor:</b>
<span style="font-size: 12pt;"><font size=3 style="font-size:12pt;">Name + </font></span>2 values (1 &amp; 2 Radius
from the origin).</p></li>
</ul>
<p>&nbsp;</p>
<p><b style="font-weight: bold;">Dialog Box:</b></p>
<p>&nbsp;</p>
<p class="whs3"><img src="../pics/torus1.png" x-maintain-ratio="TRUE" width="312px" height="376px" border="0" class="img_whs10"> &nbsp;<img src="../pics/torus2.png" x-maintain-ratio="TRUE" width="312px" height="376px" border="0" class="img_whs10"></p>
<p>&nbsp;</p>
<p><b style="font-weight: bold;">Example:</b></p>
<p class="whs3">&nbsp;</p>
<p class="whs3"><img src="../image97.jpg" width="150px" height="96px" border="0" class="img_whs15"></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p class="whs4"><a NAME=cone
style="font-size: 14pt;"><img src="salome2_sp3_primitivegui_functions_salome2_sp3_primitivegui_functions_image103.gif" width="20px" height="20px" border="0" class="img_whs5"><b><font style="font-size: 14pt;"
size=4> Cone</font></b></a></p>
<p class="whs4">&nbsp;</p>
<p><b style="font-weight: bold;">Description:</b> Creates a cone.</p>
<p>&nbsp;</p>
<p><b style="font-weight: bold;">Result:</b> GEOM_Object (SOLID).</p>
<p>&nbsp;</p>
<p><b style="font-weight: bold;">TUI Command:</b> <span style="font-style: italic;"><I>geompy.MakeCone(Point,
Axis, Radius1, Radius2)</I></span>, where Point is a central point of the
cone base, Axis (vector value) is an axis of the cone, Radius1 and Radius2
are correspondingly the first and the second radiuses of the cone</p>
<p>&nbsp;</p>
<p><b style="font-weight: bold;">Arguments:</b></p>
<ul type="disc" class="whs2">
<li class=kadov-p><p><b style="font-weight: bold;">1st Constructor:</b>
<span style="font-size: 12pt;"><font size=3 style="font-size:12pt;">Name + </font></span>1 vertex + 1 vector (for
direction) + 3 values (Radius of the base part, radius of the upper part,
height).</p></li>
<li class=kadov-p><p><b style="font-weight: bold;">2nd Constructor:</b>
<span style="font-size: 12pt;"><font size=3 style="font-size:12pt;">Name + </font></span>3 values (Radius of the base
part, radius of the upper part, height).</p></li>
</ul>
<p>&nbsp;</p>
<p><b style="font-weight: bold;">Dialog Box:</b></p>
<p>&nbsp;</p>
<p class="whs3"><img src="../pics/cone1.png" x-maintain-ratio="TRUE" width="312px" height="402px" border="0" class="img_whs16"> &nbsp;<img src="../pics/cone2.png" x-maintain-ratio="TRUE" width="312px" height="402px" border="0" class="img_whs16"></p>
<p>&nbsp;</p>
<p><b style="font-weight: bold;">Example:</b></p>
<p>&nbsp;</p>
<p class="whs17"><img src="../image98.jpg" width="150px" height="119px" border="0" class="img_whs18"></p>
<script type="text/javascript" language="javascript1.2">
<!--
if (window.writeIntopicBar)
writeIntopicBar(0);
//-->
</script>
</body>
</html>

View File

@ -1,898 +0,0 @@
<!doctype HTML public "-//W3C//DTD HTML 4.0 Frameset//EN">
<html>
<head>
<title>Titre</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>
<!--
A:link { color:#0000ff; }
-->
</style><style type="text/css">
<!--
p.whs1 { font-family:'Times New Roman' , serif; font-size:12pt; }
img_whs2 { border:none; float:none; width:30px; height:30px; border-style:none; }
ul.whs3 { list-style:disc; }
p.whs4 { font-size:12pt; }
img_whs5 { border:none; width:30px; height:30px; float:none; border-style:none; }
p.whs6 { margin-left:40px; }
img_whs7 { border:none; width:25px; height:24px; border-style:none; }
table.whs8 { x-cell-content-align:top; width:100%; border-spacing:0px; }
col.whs9 { width:8.851%; }
col.whs10 { width:91.149%; }
tr.whs11 { x-cell-content-align:top; }
td.whs12 { width:8.851%; border-left-width:1px; border-left-color:#000000; border-left-style:Solid; border-top-style:Solid; border-top-color:#000000; border-top-width:1px; border-right-width:1px; border-right-color:#000000; border-right-style:Solid; border-bottom-style:Solid; border-bottom-color:#000000; border-bottom-width:1px; padding-right:10px; padding-left:10px; }
td.whs13 { width:91.149%; border-top-style:Solid; border-top-color:#000000; border-top-width:1px; border-right-width:1px; border-right-color:#000000; border-right-style:Solid; border-bottom-style:Solid; border-bottom-color:#000000; border-bottom-width:1px; padding-right:10px; padding-left:10px; }
td.whs14 { width:8.851%; border-left-width:1px; border-left-color:#000000; border-left-style:Solid; border-right-width:1px; border-right-color:#000000; border-right-style:Solid; border-bottom-style:Solid; border-bottom-color:#000000; border-bottom-width:1px; padding-right:10px; padding-left:10px; }
td.whs15 { width:91.149%; border-right-width:1px; border-right-color:#000000; border-right-style:Solid; border-bottom-style:Solid; border-bottom-color:#000000; border-bottom-width:1px; padding-right:10px; padding-left:10px; }
p.whs16 { font-size:12pt; margin-left:40px; }
img_whs17 { border:none; width:403px; height:469px; float:none; border-style:none; }
img_whs18 { border:none; width:300px; height:214px; border-style:none; }
img_whs19 { border:none; width:244px; height:214px; border-style:none; }
p.whs20 { font-family:'Times New Roman' , serif; font-size:14pt; }
img_whs21 { border:none; width:239px; height:214px; border-style:none; }
img_whs22 { width:20px; height:20px; border-style:none; }
img_whs23 { border:none; width:312px; height:289px; float:none; border-style:none; }
img_whs24 { border:none; width:150px; height:131px; border-style:none; }
p.whs25 { font-size:14pt; font-weight:bold; }
p.whs26 { font-size:12pt; margin-left:40px; font-weight:bold; }
img_whs27 { border:none; width:312px; height:397px; float:none; border-style:none; }
p.whs28 { font-size:12pt; font-weight:bold; }
img_whs29 { border:none; width:312px; height:350px; float:none; border-style:none; }
img_whs30 { border:none; width:200px; height:214px; border-style:none; }
img_whs31 { border:none; width:176px; height:214px; border-style:none; }
img_whs32 { border:none; border-style:none; width:343px; height:123px; float:none; }
img_whs33 { border:none; width:312px; height:381px; float:none; border-style:none; }
img_whs34 { border:none; width:150px; height:136px; border-style:none; }
img_whs35 { border:none; width:312px; height:346px; float:none; border-style:none; }
img_whs36 { border:none; width:150px; height:132px; border-style:none; }
img_whs37 { border:none; width:22px; height:22px; border-style:none; }
p.whs38 { font-size:12pt; font-weight:normal; }
p.whs39 { margin-left:40px; font-size:12pt; font-weight:bold; }
img_whs40 { border:none; width:312px; height:388px; float:none; border-style:none; }
p.whs41 { font-size:12pt; margin-left:40px; text-indent:-40px; }
p.whs42 { font-size:12pt; margin-left:40px; text-indent:-40px; font-weight:bold; }
p.whs43 { margin-left:80px; font-size:12pt; text-indent:-40px; }
img_whs44 { border:none; width:200px; height:231px; border-style:none; }
img_whs45 { border:none; width:185px; height:231px; border-style:none; }
p.whs46 { font-size:12pt; text-indent:-68px; margin-left:72px; }
p.whs47 { font-size:12pt; text-indent:-68px; margin-left:112px; }
img_whs48 { border:none; width:312px; height:315px; float:none; border-style:none; }
p.whs49 { font-size:12pt; margin-left:112px; text-indent:-112px; }
p.whs50 { font-size:12pt; text-indent:-112px; margin-left:152px; }
img_whs51 { border:none; width:200px; height:150px; float:none; border-style:none; }
img_whs52 { border:none; width:204px; height:150px; border-style:none; }
p.whs53 { font-size:12pt; text-indent:-40px; margin-left:80px; }
p.whs54 { font-size:12pt; margin-left:80px; text-indent:-80px; }
p.whs55 { font-size:12pt; margin-left:80px; text-indent:-68px; }
img_whs56 { border:none; width:243px; height:203px; float:none; border-style:none; }
p.whs57 { font-size:12pt; margin-left:0px; }
img_whs58 { border:none; width:209px; height:138px; border-style:none; }
img_whs59 { border:none; width:192px; height:138px; border-style:none; }
img_whs60 { border:none; width:191px; height:138px; border-style:none; }
img_whs61 { border:none; width:23px; height:22px; border-style:none; }
img_whs62 { border:none; width:322px; height:163px; float:none; border-style:none; }
-->
</style><script type="text/javascript" language="JavaScript">
<!--
if ((navigator.appName == "Netscape") && (parseInt(navigator.appVersion) == 4))
{
var strNSS = "<style type='text/css'>";
strNSS += "p.whs41 {text-indent:1pt; }";
strNSS += "p.whs42 {text-indent:1pt; }";
strNSS += "p.whs43 {text-indent:1pt; }";
strNSS += "p.whs46 {text-indent:1pt; }";
strNSS += "p.whs47 {text-indent:1pt; }";
strNSS += "p.whs49 {text-indent:1pt; }";
strNSS += "p.whs50 {text-indent:1pt; }";
strNSS += "p.whs53 {text-indent:1pt; }";
strNSS += "p.whs54 {text-indent:1pt; }";
strNSS += "p.whs55 {text-indent:1pt; }";
strNSS += "p.whs57 {margin-left:1pt; }";
strNSS +="</style>";
document.write(strNSS);
}
//-->
</script>
<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)
{
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>Repairing 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;">Repairing operations are
used for adjustment and modification of created geometrical shapes. The
are:</span> </b></p>
<p class="whs1"><a HREF="#sewing">&nbsp;</a></p>
<ul type="disc" class="whs3">
<li class=kadov-p><p class="whs1">&nbsp;<a
href="#Shape">Shape processing</a></p></li>
<li class=kadov-p><p class="whs1">&nbsp;<a
HREF="#_Toc57113182">Suppress faces&#9;</a></p></li>
<li class=kadov-p><p class="whs1">&nbsp;<a
href="#CloseContour">Close contour</a></p></li>
<li class=kadov-p><p class="whs1">&nbsp;<a
href="#SuppressInternalWires">Suppress internal
wires</a><a HREF="#sewing">&#9;</a></p></li>
<li class=kadov-p><p class="whs1"><a
HREF="#_Toc57113181">&nbsp;<a HREF="#_Toc57113183">Suppress
holes&#9;</a></a></p></li>
<li class=kadov-p><p class="whs1"><a
HREF="#_Toc57113182">&nbsp;</a><a HREF="#sewing">Sewing</a></p></li>
<li class=kadov-p><p class="whs1">&nbsp;<a
href="#Glue_faces">Glue faces</a></p></li>
<li class=kadov-p><p class="whs1"><a
HREF="#_Toc57113183">&nbsp;</a><a href="#AddPointOnEdge">Add
point on edge</a></p></li>
<li class=kadov-p><p class="whs1">&nbsp;<a
href="#CheckFreeBound">Check free boundaries</a></p></li>
<li class=kadov-p><p class="whs1">&nbsp;<a
href="#Check_free_faces">Check free faces</a><a
HREF="#_Toc57113183">&#9;</a></p></li>
</ul>
<p class="whs4">&nbsp;</p>
<p class="whs4"><img src="../i_blue.jpg" x-maintain-ratio="TRUE" width="30px" height="30px" border="0" class="img_whs5"> The operations <span style="font-weight: bold;"><B>Suppress
faces, Close contour, Suppress internal wires, Suppress holes </B></span><span>and
</span><span style="font-weight: bold;"><B>Add point on edge </B></span><span>are
available only if you are using </span><span style="font-weight: bold;"><B>OCC
viewer</B></span><span>. </span></p>
<p class="whs4">&nbsp;</p>
<p class=TODO>To apply repairing operations:</p>
<p class=TODO>&nbsp;</p>
<p class="whs6">In the main menu select <span style="font-weight: bold;"><B>Repair
</B></span>submenu.</p>
<p class="whs4">&nbsp;</p>
<p class="whs4"><a name=Shape><img src="../image41.gif" width="25px" height="24px" border="0" class="img_whs7"> <span style="font-size: 14pt; font-weight: bold;"><font size=4 style="font-size:14pt;"><B>Shape
processing</B></font></span></a></p>
<p class="whs4">&nbsp;</p>
<p class="whs4"><span style="font-size: 12pt;"><font size=3 style="font-size:12pt;"><b style="font-weight: bold;">Description:</b>
Processes a shape using various operators.</font></span></p>
<p class="whs4">&nbsp;</p>
<p class="whs4"><b style="font-weight: bold;">Result:</b> GEOM_Object.</p>
<p class="whs4">&nbsp;</p>
<p class="whs4"><b style="font-weight: bold;">TUI Command:</b><i>
</i><span style="font-style: italic;"><I>geompy.ProcessShape(Shape, Operators,
Parameters, Values)</I></span>, where Shape is a processed shape, Operators
is a list of names of operators (&quot;FixShape&quot;, &quot;SplitClosedFaces&quot;,
etc.), Parameters is a list of names of parameters (“FixShape.Tolerance3d”,
etc), Values is a list of values of parameters in the same order as the
Parameters list.</p>
<p class="whs4">&nbsp;</p>
<p class="whs4"><b style="font-weight: bold;">Arguments:</b>
1 or more shapes.</p>
<table x-use-null-cells cellspacing="0" width="100%" class="whs8">
<script language='JavaScript'><!--
if ((navigator.appName == "Netscape") && (parseInt(navigator.appVersion) == 4)) document.write("</table><table x-use-null-cells cellspacing='0' width='100%' border='1' bordercolor='black' bordercolorlight='black' bordercolordark='black'>");
//--></script>
<col class="whs9">
<col class="whs10">
<tr valign="top" class="whs11">
<td width="8.851%" class="whs12">
<p>1</td>
<td width="91.149%" class="whs13">
<p class="whs4"><span style="font-size: 12pt;"><font size=3 style="font-size:12pt;">SplitAngle
this operator is intended for splitting faces based on conical surfaces,
surfaces of revolution and cylindrical surfaces by angle</font></span></p>
<p class="whs4">SplitAngle.Angle angle (in radians) defining
size of result segments.</p>
<p class="whs4">SplitAngle.MaxTolerance maximal possible
tolerance on result shape</td></tr>
<tr valign="top" class="whs11">
<td width="8.851%" class="whs14">
<p>2</td>
<td width="91.149%" class="whs15">
<p class="whs4"><span style="font-size: 12pt;"><font size=3 style="font-size:12pt;">SplitClosedFaces
this operator is intended for dividing all closed faces in the shape
according to the number of points.</font></span></p>
<p class="whs4">SplitClosedFaces.NbSplitPoints number of
points for cutting each closed faces.</td></tr>
<tr valign="top" class="whs11">
<td width="8.851%" class="whs14">
<p>3</td>
<td width="91.149%" class="whs15">
<p class="whs4"><span style="font-size: 12pt;"><font size=3 style="font-size:12pt;">FixFaceSize
this operator is intended for removing small faces (case of the spot
face and strip face)</font></span></p>
<p class="whs4">FixFaceSize.Tolerance work tolerance defining
which faces will be removed.</td></tr>
<tr valign="top" class="whs11">
<td width="8.851%" class="whs14">
<p>4</td>
<td width="91.149%" class="whs15">
<p class="whs4"><span style="font-size: 12pt;"><font size=3 style="font-size:12pt;">DropSmallEdges
this operator is intended for removing small edges or merging with neigbour.
&nbsp;</font></span></p>
<p class="whs4">DropSmallEdges.Tolerance3d work tolerance
for detection and removing small edges.</td></tr>
<tr valign="top" class="whs11">
<td width="8.851%" class="whs14">
<p>5</td>
<td width="91.149%" class="whs15">
<p class="whs4"><span style="font-size: 12pt;"><font size=3 style="font-size:12pt;">BsplineRestriction
this operator is intended for re-approximation BSplines curves and surfaces
or conversion of the curves and surfaces to BSplines with specified parameters.
</font></span></p>
<p class="whs4">BSplineRestriction.SurfaceMode - mode of approximation
of surfaces if restriction is necessary</p>
<p class="whs4">BSplineRestriction.Curve3dMode -mode of conversion
of any 3D curve to BSpline and approximation.</p>
<p class="whs4">BSplineRestriction.Curve2dMode - mode of conversion
of any 2D curve to BSpline and approximation</p>
<p class="whs4">BSplineRestriction.Tolerance3d work tolerance
for definition of the possibility of the approximation of the surfaces
and 3D curves with specified parameters.</p>
<p class="whs4">BSplineRestriction.Tolerance2d - work tolerance
for definition of the possibility of the approximation of the 2D curves
with specified parameters.</p>
<p class="whs4">BSplineRestriction.Continuity3d desired continuity
of the resultant surfaces and 3D curves.</p>
<p class="whs4">BSplineRestriction.Continuity2d desired continuity
of the resultant 2D curves.</p>
<p class="whs4">BSplineRestriction.RequiredDegree - required
degree of the resultant BSplines</p>
<p class="whs4">BSplineRestriction.RequiredNbSegments - required
maximum number of segments of resultant BSp<span style="font-size: 12pt;"><font size=3 style="font-size:12pt;">lines.</font></span></td></tr>
<tr valign="top" class="whs11">
<td width="8.851%" class="whs14">
<p>6</td>
<td width="91.149%" class="whs15">
<p class="whs4"><span style="font-size: 12pt;"><font size=3 style="font-size:12pt;">SplitContinuity
this operator is intended for splitting shapes to achieve continuities
of curves and surfaces less than specified ones. </font></span></p>
<p class="whs4">SplitContinuity.Tolerance3d - 3D tolerance
for correction of geometry.</p>
<p class="whs4">SplitContinuity.SurfaceContinuity - required
continuity for surfaces.</p>
<p class="whs4">SplitContinuity.CurveContinuity - required
continuity for curves.</td></tr>
<tr valign="top" class="whs11">
<td width="8.851%" class="whs14">
<p>7</td>
<td width="91.149%" class="whs15">
<p class="whs4"><span style="font-size: 12pt;"><font size=3 style="font-size:12pt;">ToBezier - this
operator is intended for conversion of the curves and surfaces of the
all types into Bezier curves and surfaces. </font></span></p>
<p class="whs4">ToBezier.SurfaceMode - mode of conversion of
the surfaces.</p>
<p class="whs4">ToBezier.Curve3dMode mode for conversion
of the 3D curves.</p>
<p class="whs4">ToBezier.Curve2dMode mode for conversion
of the 2D curves.</p>
<p class="whs4">ToBezier.MaxTolerance max possible tolerance
on the resultant shape.</td></tr>
<tr valign="top" class="whs11">
<td width="8.851%" class="whs14">
<p>8</td>
<td width="91.149%" class="whs15">
<p class="whs4"><span style="font-size: 12pt;"><font size=3 style="font-size:12pt;">FixShape this
operator is intended for correction of the invalid shapes </font></span></p>
<p class="whs4">FixShape.Tolerance3d work tolerance for detection
of the problems and correction of them.</p>
<p class="whs4">FixShape.MaxTolerance3d - maximal possible
tolerance of the shape after correction.</td></tr>
<tr valign="top" class="whs11">
<td width="8.851%" class="whs14">
<p>9</td>
<td width="91.149%" class="whs15">
<p class="whs4"><span style="font-size: 12pt;"><font size=3 style="font-size:12pt;">SameParameter
this operator is intended for fixing edges having not same parameter
2D and 3D curves. </font></span></p>
<p class="whs4">SameParameter.Tolerance3d tolerance for detection
and fix problems. </td></tr>
<script language='JavaScript'><!--
if ((navigator.appName == "Netscape") && (parseInt(navigator.appVersion) == 4)) document.write("</table></table><table>");
//--></script>
</table>
<p class="whs4">&nbsp;</p>
<p class="whs4">&nbsp;</p>
<p class="whs4"><b style="font-weight: bold;">Dialog Box:</b></p>
<p class="whs4">&nbsp;</p>
<p class="whs16"><img src="../pics/repair1.png" x-maintain-ratio="TRUE" width="403px" height="469px" border="0" class="img_whs17"> &nbsp;</p>
<p class="whs4">&nbsp;</p>
<p class="whs4"><b style="font-weight: bold;">Example:</b></p>
<p>&nbsp;</p>
<p class="whs4">Shape before applying Shape Processing (FixShape
operator).</p>
<p class="whs4">&nbsp;</p>
<p class="whs16"><img src="../image154.jpg" width="300px" height="214px" border="0" class="img_whs18"> &nbsp;&nbsp;&nbsp;<img src="../image156.jpg" width="244px" height="214px" border="0" class="img_whs19"></p>
<p class="whs20">&nbsp;</p>
<p class="whs1">The
same shape after applying Shape Processing.</p>
<p class="whs20">&nbsp;</p>
<p class="whs16"><img src="../image160.jpg" width="239px" height="214px" border="0" class="img_whs21"></p>
<p class="whs20">&nbsp;</p>
<p class="whs20">&nbsp;</p>
<p class="whs20"><a NAME=_Toc57113182><img src="salome2_sp3_repairgui_functions_salome2_sp3_repairgui_functions_image121.gif" width="20px" height="20px" border="0" class="img_whs22"><b> Suppress faces</b></a></p>
<p class="whs1">&nbsp;</p>
<p class="whs4"><b style="font-weight: bold;">Description:</b>
Suppresses a face of a shape.</p>
<p class="whs4">&nbsp;</p>
<p class="whs4"><b style="font-weight: bold;">Result:</b> GEOM_Object
(ListOfGeomShapes).</p>
<p class="whs4">&nbsp;</p>
<p class="whs4"><b style="font-weight: bold;">TUI Command:</b><i>
</i><span style="font-style: italic;"><I>geompy.SuppressFaces(Shape, ListOfID)</I></span>,
where Shape is a shape to be processed, ListOfID is a list of faces ID's
to be removed.</p>
<p class="whs4">&nbsp;</p>
<p class="whs4"><b style="font-weight: bold;">Arguments:</b>
Name + Faces which should be removed (you can select them in the 3D viewer).</p>
<p class="whs4">&nbsp;</p>
<p class="whs4"><b style="font-weight: bold;">Dialog Box:</b></p>
<p class="whs4">&nbsp;</p>
<p class="whs16"><img src="../pics/repair2.png" x-maintain-ratio="TRUE" width="312px" height="289px" border="0" class="img_whs23"></p>
<p class="whs16">&nbsp;</p>
<p class="whs4"><b style="font-weight: bold;">Example:</b></p>
<p class="whs4">&nbsp;</p>
<p class="whs16"><img src="../image53.jpg" width="150px" height="131px" border="0" class="img_whs24"> &nbsp;<img src="../image54.jpg" width="150px" height="131px" border="0" class="img_whs24"></p>
<p class="whs4">&nbsp;</p>
<p class="whs25"><a name=CloseContour><img src="salome2_sp3_repairgui_functions_salome2_sp3_repairgui_functions_image121.gif" width="20px" height="20px" border="0" class="img_whs22"> Close contour</a></p>
<p class="whs4">&nbsp;</p>
<p class="whs4"><b style="font-weight: bold;">Description :</b>
Closes an open contour and modifies the underlying face (if needed) in
accordance with user specified mode:</p>
<ul type="disc" class="whs3">
<li class=kadov-p><p class="whs4">By common vertex a
vertex is created between the end points of the contour and its tolerance
is increased to a value of the gap between the ends of the contour;</p></li>
<li class=kadov-p><p class="whs4">By new edge a new edge
is inserted between the end points of the contour.</p></li>
</ul>
<p class="whs4">&nbsp;</p>
<p class="whs4"><b style="font-weight: bold;">Result:</b> GEOM_Object.</p>
<p class="whs4">&nbsp;</p>
<p class="whs4"><b style="font-weight: bold;">TUI Command:</b><i>
</i><span style="font-style: italic;"><I>geompy.CloseContour(Shape, Wires,
IsCommonVertex)</I></span>, where Shape is a shape to be processed, Wires
is a list of edges or wires IDs which has to be closed within the shape
(if the list contains only one element = -1, the shape itself is considered
as a wire), &nbsp;IsCommonVertex
if this parameter is True a closure has to be done by creation of a common
vertex, otherwise an edge is added between the end vertices.</p>
<p class="whs4">&nbsp;</p>
<p class="whs4"><b style="font-weight: bold;">Arguments: <span
style="font-weight: normal;">Name + 1 shape + contour</span> <span style="font-weight: normal;">(</span></b>Wire,
or a set of Edges) + mode of closure (by vertex or by edge)</p>
<p class="whs4">&nbsp;</p>
<p class="whs4"><b style="font-weight: bold;">Dialog Box:</b></p>
<p class="whs4">&nbsp;</p>
<p class="whs26"><img src="../pics/repair3.png" x-maintain-ratio="TRUE" width="312px" height="397px" border="0" class="img_whs27"></p>
<p class="whs28">&nbsp;</p>
<p class="whs28">Example:</p>
<p class="whs4">&nbsp;</p>
<p class="whs4"><span style="font-size: 14pt; font-weight: bold;"><font size=4 style="font-size:14pt;"><B><a
name=SuppressInternalWires><img src="salome2_sp3_repairgui_functions_salome2_sp3_repairgui_functions_image121.gif" width="20px" height="20px" border="0" class="img_whs22"></B></font></span> <span style="font-size: 14pt; font-weight: bold;"><font size=4 style="font-size:14pt;"><B>Suppress
internal wires</B></font></span></a></p>
<p class="whs4">&nbsp;</p>
<p class="whs4"><b style="font-weight: bold;">Description :</b>
Removes all internal wires or specified internal wires from user specified
faces.</p>
<p class="whs4">&nbsp;</p>
<p class="whs4"><b style="font-weight: bold;">Result:</b> GEOM_Object.</p>
<p class="whs4">&nbsp;</p>
<p class="whs4"><b style="font-weight: bold;">TUI Command:</b><i>
</i><span style="font-style: italic;"><I>geompy.SuppressInternalWires(Shape,
Wires)</I></span>, where Shape is a shape where wires are to be removed, Wires
is a list of wires IDs to be removed; if the list is empty then all internal
wires are removed.</p>
<p class="whs4">&nbsp;</p>
<p class="whs4">&nbsp;</p>
<p class="whs4"><b style="font-weight: bold;">Arguments:</b></p>
<ul type="disc" class="whs3">
<li class=kadov-p><p class="whs4">Name of the resulting
object</p></li>
<li class=kadov-p><p class="whs4">User specified face</p></li>
<li class=kadov-p><p class="whs4">User specified internal
wires (lying on this face except for its boundary), or, in case the <span
style="font-weight: bold;"><B>Remove all internal wires</B></span> box is checked,
all internal wires</p></li>
</ul>
<p class="whs4">&nbsp;</p>
<p class="whs4"><b style="font-weight: bold;">Dialog Box:</b></p>
<p class="whs4">&nbsp;</p>
<p class="whs16"><img src="../pics/repair4.png" x-maintain-ratio="TRUE" width="312px" height="350px" border="0" class="img_whs29"></p>
<p class="whs4">&nbsp;</p>
<p class="whs28">Example:</p>
<p class="whs4">&nbsp;</p>
<p class="whs16"><img src="../image163.jpg" width="200px" height="214px" border="0" class="img_whs30"> &nbsp;&nbsp;&nbsp;<img src="../image164.jpg" width="176px" height="214px" border="0" class="img_whs31"></p>
<p class="whs4">&nbsp;</p>
<p class="whs4">&nbsp;</p>
<p class="whs20"><span
style="font-family: 'Times New Roman', serif;"><a NAME=_Toc57113183><span
style="font-size: 14pt;"><font size=4 style="font-size:14pt;"><img src="salome2_sp3_repairgui_functions_salome2_sp3_repairgui_functions_image122.gif" width="20px" height="20px" border="0" class="img_whs22"><b style="font-size: 14pt;"> Suppress
holes</b></a> </font></span></span></p>
<p class="whs1">&nbsp;</p>
<p class="whs4"><b style="font-weight: bold;">Description :</b>
</p>
<ul>
<li class=kadov-p><p class="whs4"><b style="font-weight: bold;">1st
Constructor :</b> Suppresses a hole in a shape.</p></li>
<li class=kadov-p><p class="whs4"><b style="font-weight: bold;">2nd
Constructor :</b> Suppresses a hole in a face.</p></li>
</ul>
<p class="whs4">&nbsp;</p>
<p class="whs4"><b style="font-weight: bold;">Result:</b> GEOM_Object.</p>
<p class="whs4">&nbsp;</p>
<p class="whs4"><b style="font-weight: bold;">TUI Command:</b><i>
</i><span style="font-size: 12pt; font-style: italic;"><font size=3 style="font-size:12pt;"><I>geompy.SuppressHoles(Shape,
ListOfWireID)</I></font></span><span style="font-size: 12pt;"><font size=3 style="font-size:12pt;">, where Shape is a
shape where holes must be removed, ListOfWireID is a list of wire sub
shapes IDs. If it is empty, then all holes are removed.</font></span></p>
<p class="whs4">&nbsp;</p>
<p class="whs4"><b style="font-weight: bold;">Arguments: </b>Name
+ 1 shape + Wires which should be removed.</p>
<p class="whs4"><span style="font-weight: bold;"><B>Remove all
holes </B></span>checkbox allows to fill all holes of a definite shape.</p>
<p class="whs4"><span style="font-weight: bold;"><B>Detect </B></span>button
allows to display the number of free boundaries in your shape:</p>
<p class="whs16">&nbsp;</p>
<p class="whs16"><img src="../pics/neo-detect2.png" x-maintain-ratio="TRUE" width="343px" height="123px" border="0" class="img_whs32"></p>
<p class="whs4">&nbsp;</p>
<p class="whs4"><b style="font-weight: bold;">Dialog Box:</b></p>
<p class="whs4">&nbsp;</p>
<p class="whs16">&nbsp;<img src="../pics/repair5.png" x-maintain-ratio="TRUE" width="312px" height="381px" border="0" class="img_whs33"></p>
<p class="whs16">&nbsp;&nbsp;</p>
<p class="whs4"><b style="font-weight: bold;">Example:</b></p>
<p class="whs16">&nbsp;</p>
<p class="whs16">&nbsp;<img src="../image109.jpg" width="150px" height="136px" border="0" class="img_whs34"> &nbsp;<img src="../image110.jpg" width="150px" height="136px" border="0" class="img_whs34"></p>
<p class="whs4">&nbsp;</p>
<p class="whs4">&nbsp;</p>
<p class="whs4">&nbsp;</p>
<p class="whs1"><b style="font-weight: bold;"><a
NAME=sewing
style="font-size: 14pt;"><img src="salome2_sp3_repairgui_functions_salome2_sp3_repairgui_functions_image119.gif" width="20px" height="20px" border="0" class="img_whs22"> Sewing</a></b> </p>
<p class="whs1">&nbsp;</p>
<p class="whs4"><b style="font-weight: bold;">Description:</b>
Sew several &nbsp;shapes.</p>
<p class="whs4">&nbsp;</p>
<p class="whs4"><b style="font-weight: bold;">Result:</b> GEOM_Object.</p>
<p class="whs4">&nbsp;</p>
<p class="whs4"><b style="font-weight: bold;">TUI Command :</b><i>
</i><span style="font-style: italic;"><I>geompy.MakeSewing(ListOfShape, Precision)</I></span>,
where ListOfShape is list of shapes to be sewed, Precision is a precision
for sewing.</p>
<p class="whs4">&nbsp;</p>
<p class="whs4"><b style="font-weight: bold;">Arguments:</b>
Name + 1 or more shapes + 1 value (sew precision).</p>
<p class="whs4"><span style="font-size: 12pt;"><font size=3 style="font-size:12pt;"><span style="font-weight: bold;"><B>Detect
</B></span>button allows to display the number of free boundaries in your
shape:</font></span></p>
<p class="whs16">&nbsp;</p>
<p class="whs16"><img src="../pics/neo-detect2.png" x-maintain-ratio="TRUE" width="343px" height="123px" border="0" class="img_whs32"></p>
<p class="whs4">&nbsp;</p>
<p class="whs4">&nbsp;</p>
<p class="whs4"><b style="font-weight: bold;">Dialog Box:</b></p>
<p class="whs4">&nbsp;</p>
<p class="whs16"><img src="../pics/repair6.png" x-maintain-ratio="TRUE" width="312px" height="346px" border="0" class="img_whs35"></p>
<p class="whs4">&nbsp;</p>
<p class="whs4"><b style="font-weight: bold;">Example:</b></p>
<p class="whs4">&nbsp;</p>
<p class="whs16"><img src="../image112.jpg" width="150px" height="132px" border="0" class="img_whs36"> &nbsp;<img src="../image113.jpg" width="150px" height="132px" border="0" class="img_whs36"></p>
<p class="whs4">&nbsp;</p>
<p class="whs4">&nbsp;</p>
<p class="whs4">&nbsp;</p>
<p class="whs4"><a name=AddPointOnEdge><img src="../image42.gif" width="22px" height="22px" border="0" class="img_whs37"> <span
style="font-size: 14pt; font-weight: bold;"><font size=4 style="font-size:14pt;"><B>Add point on edge</B></font></span></a></p>
<p class="whs4">&nbsp;</p>
<p class="whs4"><b style="font-weight: bold;">Description:</b>
Splits an edge in two in accordance with the specified mode (by length
or by parameter) and a value specifying the position of the point on edge
(for example val =0.5; mode = Length). </p>
<p class="whs4">&nbsp;</p>
<p class="whs4"><b style="font-weight: bold;">Result:</b> GEOM_Object.</p>
<p class="whs4">&nbsp;</p>
<p class="whs4"><b style="font-weight: bold;">TUI Command :</b><i>
</i><span style="font-style: italic;"><I>geompy.DivideEdge(Shape, EdgeID,
Value, IsByParameter)</I></span>, where Shape is a shape which contains an
edge to be divided, EdgeID is the ID of the edge to be divided, if it
= -1, then Shape is an edge, Value is a paramter on the edge or a length.
IsByParameter if it is True then Value is the edge parameter in the range
[0:1] otherwise it is a length of the edge in the range [0:1]</p>
<p class="whs4">&nbsp;</p>
<p class="whs4"><b style="font-weight: bold;">Arguments:</b>
Name + 1 Edge + 1 value setting the position of the point according to
one of the selected modes</p>
<p class="whs4">&nbsp;</p>
<p class="whs38"><b style="font-weight: bold;">Dialog
Box:</b></p>
<p class="whs38">&nbsp;</p>
<p class="whs39"><img src="../pics/repair8.png" x-maintain-ratio="TRUE" width="312px" height="388px" border="0" class="img_whs40"></p>
<p class="whs41">&nbsp;</p>
<p class="whs42">Example:</p>
<p class="whs41">&nbsp;</p>
<p class="whs43"><img src="../image167.jpg" width="200px" height="231px" border="0" class="img_whs44"> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<img src="../image168.jpg" width="185px" height="231px" border="0" class="img_whs45"></p>
<p class="whs46">&nbsp;</p>
<p class="whs46">&nbsp;</p>
<p class="whs46">&nbsp;</p>
<p class="whs46"><a name=Glue_faces><img src="../image61.gif" width="25px" height="24px" border="0" class="img_whs7"><span
style="font-size: 14pt; font-weight: bold;"><font size=4 style="font-size:14pt;"><B> Glue faces</B></font></span></a></p>
<p class="whs46">&nbsp;</p>
<p class="whs46"><b style="font-weight: bold;">Description:</b>
Glues faces that are coincident with respect to the given tolerance </p>
<p class="whs46">value.</p>
<p class="whs46">&nbsp;</p>
<p class="whs46"><span style="font-size: 12pt;"><font size=3 style="font-size:12pt;"><b style="font-weight: bold;">Result:</b>
GEOM_Object.</font></span></p>
<p class="whs46">&nbsp;</p>
<p class="whs46"><b style="font-weight: bold;">TUI Command
: </b><span style="font-style: italic;"><I>geompy.MakeGlueFaces(theShape,
theTolerance)</I></span>, where theShape is a compound of shapesto be glued,
theTolerance is a maximum distance between two faces, which can be considered
as coincident.</p>
<p class="whs46"><i><span style="font-style: italic;"><I>&nbsp;</I></span></i></p>
<p class="whs46"><b style="font-weight: bold;">Arguments:
<span style="font-weight: normal;">Name +</span> </b>1 <i><span style="font-style: normal;">Compound
+ Tolerance value</span></i></p>
<p class="whs46">&nbsp;</p>
<p class="whs46"><b style="font-weight: bold;">Dialog Box:</b></p>
<p class="whs46">&nbsp;</p>
<p class="whs47"><img src="../pics/repair7.png" x-maintain-ratio="TRUE" width="312px" height="315px" border="0" class="img_whs48"></p>
<p class="whs49">&nbsp;</p>
<p class="whs49"><b style="font-weight: bold;">Example:</b></p>
<p class="whs49">&nbsp;</p>
<p class="whs50"><img src="../image201.jpg" x-maintain-ratio="TRUE" width="200px" height="150px" border="0" class="img_whs51"> &nbsp;&nbsp;<img src="../image202.jpg" width="204px" height="150px" border="0" class="img_whs52"></p>
<p class="whs53">&nbsp;</p>
<p class="whs53">&nbsp;</p>
<p class="whs53">&nbsp;</p>
<p class="whs54"><a name=CheckFreeBound><img src="../image44.gif" width="22px" height="22px" border="0" class="img_whs37"> <span
style="font-size: 14pt; font-weight: bold;"><font size=4 style="font-size:14pt;"><B>Check free boundaries</B></font></span></a></p>
<p class="whs55">&nbsp;</p>
<p class="whs4"><b style="font-weight: bold;">Description:</b>
Detects wires and edges that correspond to the shape's boundary, and highlights
it</p>
<p class="whs4">&nbsp;</p>
<p class="whs4"><b style="font-weight: bold;">Result:</b> GEOM_Object.
</p>
<p class="whs4">&nbsp;</p>
<p class="whs4"><b style="font-weight: bold;">TUI Command :</b><i><span
style="font-style: italic;"> <I></i>(NoError, ClosedWires, OpenWires) = geompy.GetFreeBoundary(Shape)</I></span>,
where Shape is a shape to be checked, NoError is false if an error occurred
while checking free boundaries, ClosedWires is a list of closed free boundary
wires, OpenWires is a list of open free boundary wires.</p>
<p class="whs4">&nbsp;</p>
<p class="whs4"><b style="font-weight: bold;">Arguments:</b>
Shape</p>
<p class="whs4">&nbsp;</p>
<p class="whs38"><b style="font-weight: bold;">Dialog
Box:</b></p>
<p class="whs38">&nbsp;</p>
<p class="whs26"><img src="../pics/repair9.png" x-maintain-ratio="TRUE" width="243px" height="203px" border="0" class="img_whs56"></p>
<p class="whs57">&nbsp;</p>
<p class="whs57"><b style="font-weight: bold;">Example:</b></p>
<p class="whs57">&nbsp;</p>
<p class="whs57"><img src="../image170.jpg" width="209px" height="138px" border="0" class="img_whs58"> &nbsp;<img src="../image171.jpg" width="192px" height="138px" border="0" class="img_whs59">&nbsp; <img src="../image172.jpg" width="191px" height="138px" border="0" class="img_whs60"></p>
<p class="whs57">&nbsp;</p>
<p class="whs57">&nbsp;</p>
<p class="whs57">&nbsp;</p>
<p class="whs57"><a name=Check_free_faces><img src="../image10.gif" width="23px" height="22px" border="0" class="img_whs61"> <span style="font-size: 14pt; font-weight: bold;"><font size=4 style="font-size:14pt;"><B>Check free
faces</B></font></span></a></p>
<p class="whs57">&nbsp;</p>
<p class="whs4"><b style="font-weight: bold;">Description:
</b>Retrieves all free faces from a given shape.<span> A free face is
a face not shared between two shells of the shape. </span></p>
<p class="whs4">&nbsp;</p>
<p class="whs4"><b style="font-weight: bold;">Result:</b> GEOM_Object.
Returns a list of IDs of all free faces, contained in the shape.</p>
<p class="whs4">&nbsp;</p>
<p class="whs4"><b style="font-weight: bold;">TUI Command :</b><i><span
style="font-style: italic;"> <I></i>GetFreeFacesIDs(Shape)</I></span>, where
Shape is a shape to be checked.</p>
<p class="whs4">&nbsp;</p>
<p class="whs4"><b style="font-weight: bold;">Arguments:</b>
Shape</p>
<p class="whs4">&nbsp;</p>
<p class="whs38"><b style="font-weight: bold;">Dialog
Box:</b></p>
<p class="whs38">&nbsp;</p>
<p class="whs16"><img src="../pics/repair10.png" x-maintain-ratio="TRUE" width="322px" height="163px" border="0" class="img_whs62"></p>
<p class="whs41">&nbsp;</p>
<p class="whs41">&nbsp;</p>
<script type="text/javascript" language="javascript1.2">
<!--
if (window.writeIntopicBar)
writeIntopicBar(0);
//-->
</script>
</body>
</html>

View File

@ -1,669 +0,0 @@
<!doctype HTML public "-//W3C//DTD HTML 4.0 Frameset//EN">
<html>
<head>
<title>Titre</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>
<!--
A:visited { color:#800080; }
A:link { color:#0000ff; }
-->
</style><style type="text/css">
<!--
p.whs1 { font-size:12pt; }
img_whs2 { border:none; float:none; width:30px; height:30px; border-style:none; }
ul.whs3 { list-style:disc; }
p.whs4 { font-family:'Times New Roman' , serif; font-size:12pt; }
p.whs5 { font-family:'Times New Roman' , serif; font-size:14pt; }
img_whs6 { width:20px; height:20px; border-style:none; }
p.whs7 { font-size:12pt; margin-left:40px; }
img_whs8 { border:none; border-style:none; width:312px; height:393px; float:none; }
img_whs9 { border:none; border-style:none; width:312px; height:385px; float:none; }
p.whs10 { margin-left:40px; }
img_whs11 { border:none; width:150px; height:163px; border-style:none; }
img_whs12 { border:none; border-style:none; width:312px; height:376px; float:none; }
img_whs13 { border:none; width:150px; height:145px; border-style:none; }
p.whs14 { margin-left:48px; text-indent:-48px; }
p.whs15 { margin-left:48px; text-indent:-48px; font-size:14pt; font-weight:bold; }
img_whs16 { border:none; width:25px; height:22px; border-style:none; }
img_whs17 { border:none; border-style:none; width:312px; height:350px; float:none; }
p.whs18 { font-size:12pt; margin-left:40px; text-indent:-40px; }
p.whs19 { font-size:12pt; text-indent:-40px; margin-left:80px; }
img_whs20 { border:none; width:200px; height:209px; border-style:none; }
img_whs21 { border:none; width:150px; height:127px; border-style:none; }
p.whs22 { margin-left:40px; font-size:12pt; }
img_whs23 { border:none; width:150px; height:153px; border-style:none; }
img_whs24 { border:none; width:24px; height:22px; border-style:none; }
p.whs25 { font-size:12pt; margin-left:40px; font-weight:bold; }
img_whs26 { border:none; border-style:none; width:312px; height:315px; float:none; }
p.whs27 { font-size:12pt; font-weight:bold; }
img_whs28 { border:none; width:200px; height:191px; border-style:none; }
img_whs29 { border:none; border-style:none; width:312px; height:398px; float:none; }
img_whs30 { border:none; border-style:none; width:312px; height:509px; float:none; }
img_whs31 { border:none; width:150px; height:123px; border-style:none; }
img_whs32 { border:none; border-style:none; width:312px; height:346px; float:none; }
img_whs33 { border:none; border-style:none; width:312px; height:450px; float:none; }
img_whs34 { border:none; width:150px; height:128px; border-style:none; }
img_whs35 { border:none; width:150px; height:113px; border-style:none; }
-->
</style><script type="text/javascript" language="JavaScript">
<!--
if ((navigator.appName == "Netscape") && (parseInt(navigator.appVersion) == 4))
{
var strNSS = "<style type='text/css'>";
strNSS += "p.whs14 {text-indent:1pt; }";
strNSS += "p.whs15 {text-indent:1pt; }";
strNSS += "p.whs18 {text-indent:1pt; }";
strNSS += "p.whs19 {text-indent:1pt; }";
strNSS +="</style>";
document.write(strNSS);
}
//-->
</script>
<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)
{
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>Using transformation operations</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 there is a set
of operations allowing to transform the initial geometrical object into
other objects, which will be also created. These operations are</span></b></p>
<p class="whs1">&nbsp;</p>
<ul type="disc" class="whs3">
<li class=kadov-p><p class="whs4"><a
HREF="#_Toc57113210"><font><span style="font-family: 'Times New Roman', serif; font-size: 12pt;"><font size=3 style="font-size:12pt;">Translation&#9;</font></span></font></a></p></li>
<li class=kadov-p><p class="whs4"><a
HREF="#_Toc57113211">Rotation</a></p></li>
<li class=kadov-p><p class="whs4"><a
href="#_Toc57113217">Modify the location</a><a HREF="#_Toc57113211">&#9;</a></p></li>
<li class=kadov-p><p class="whs4"><a
HREF="#_Toc57113212"><span style="font-family: 'Times New Roman', serif; font-size: 12pt;"><font size=3 style="font-size:12pt;">Mirror
image&#9;</font></span></a></p></li>
<li class=kadov-p><p class="whs4"><a
HREF="#_Toc57113213">Scale transform</a></p></li>
<li class=kadov-p><p class="whs4"><a
href="#_Toc57113216">Offset surface</a><a HREF="#_Toc57113213">&#9;</a></p></li>
<li class=kadov-p><p class="whs4"><a
HREF="#_Toc57113214"><span style="font-family: 'Times New Roman', serif; font-size: 12pt;"><font size=3 style="font-size:12pt;">Multi-Translation
(Pattern)&#9;</font></span></a></p></li>
<li class=kadov-p><p class="whs4"><a
HREF="#_Toc57113215">Multi-Rotation (Pattern)</a></p></li>
</ul>
<p class="whs1">&nbsp;</p>
<p class="whs1">All these operations are accessible in the
main menu, via <span style="font-style: italic;"><I>Operations / Transformation.</I></span></p>
<p class="whs1">&nbsp;</p>
<p class="whs5"><b style="font-weight: bold;"><a
NAME=_Toc57113210><span style="font-size: 14pt;"><font size=4 style="font-size:14pt;"><img src="salome2_sp3_transformationgui_functions_salome2_sp3_transformationgui_functions_image128.gif" width="20px" height="20px" border="0" class="img_whs6"><font
style="font-size: 14pt;"
size=4> Translation</font></a></b> </font></span></p>
<p class="whs5">&nbsp;</p>
<p class="whs1"><b style="font-weight: bold;">Description:</b>
Makes a translation of a shape.</p>
<p class="whs1">&nbsp;</p>
<p class="whs1"><b style="font-weight: bold;">Result:</b> GEOM_Object.</p>
<p class="whs1">&nbsp;</p>
<p class="whs1"><b style="font-weight: bold;">TUI Command:</b><i>
</i><span style="font-style: italic;"><I>geompy.MakeTranslation(Shape, DX,
DY, DZ)</I></span>, where Shape is a shape to be translated, DX, DY, DZ are
components of translation vector.</p>
<p class="whs1">&nbsp;</p>
<p class="whs1"><b style="font-weight: bold;">Arguments:</b>
</p>
<ul type="disc" class="whs3">
<li class=kadov-p><p class="whs1"><b style="font-weight: bold;">1st
Constructor: <span style="font-weight: normal;">Name + </span></b>1 shape
+ 3 values (coordinates).</p></li>
<li class=kadov-p><p class="whs1"><b style="font-weight: bold;">2st
Constructor: <span style="font-weight: normal;">Name + </span></b>1 shape
+ 2 vertices.</p></li>
<li class=kadov-p><p class="whs1"><b style="font-weight: bold;">3st
Constructor: <span style="font-weight: normal;">Name + </span></b>1 shape
+ 1 vector.</p></li>
</ul>
<p class="whs1">&nbsp;</p>
<p class="whs1"><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="whs1">&nbsp;</p>
<p class="whs1"><b style="font-weight: bold;">Dialog Box:</b></p>
<p class="whs1">&nbsp;</p>
<p class="whs7"><img src="../pics/transformation1.png" x-maintain-ratio="TRUE" width="312px" height="393px" border="0" class="img_whs8"> &nbsp;<img src="../pics/transformation2.png" x-maintain-ratio="TRUE" width="312px" height="393px" border="0" class="img_whs8"> &nbsp;<img src="../pics/transformation3.png" x-maintain-ratio="TRUE" width="312px" height="385px" border="0" class="img_whs9"></p>
<p class="whs7">&nbsp;</p>
<p class="whs1"><b style="font-weight: bold;">Example:</b></p>
<p class="whs1">&nbsp;</p>
<p class="whs10"><img src="../image6.gif" width="150px" height="163px" border="0" class="img_whs11"> &nbsp;<img src="../image8.jpg" width="150px" height="163px" border="0" class="img_whs11"></p>
<p class="whs10">&nbsp;</p>
<p class="whs5"><a NAME=_Toc57113211><span
style="font-size: 14pt;"><font size=4 style="font-size:14pt;"><img src="salome2_sp3_transformationgui_functions_salome2_sp3_transformationgui_functions_image129.gif" width="20px" height="20px" border="0" class="img_whs6"><b><font style="font-size: 14pt;"
size=4> Rotation</font></b></a>
</font></span></p>
<p class="whs5">&nbsp;</p>
<p class="whs1"><b style="font-weight: bold;">Description:</b>
Rotates the initial shape.</p>
<p class="whs1">&nbsp;</p>
<p class="whs1"><b style="font-weight: bold;">Result:</b> GEOM_Object.</p>
<p class="whs1">&nbsp;</p>
<p class="whs1"><b style="font-weight: bold;">TUI Command:</b><i>
</i><span style="font-style: italic;"><I>geompy.MakeRotation(Shape, Axis,
Angle)</I></span>, where Shape is a shape to be rotated, Axis is an axis of
rotation, Angle is an angle of rotation.</p>
<p class="whs1">&nbsp;</p>
<p class="whs1"><b style="font-weight: bold;">Arguments:</b>
1 shape + 1 vector for direction of rotation + 1 angle.</p>
<p class="whs1"><span style="font-weight: bold;"><B>Reverse </B></span>checkbox
allows to specify the direction of rotation.</p>
<p class="whs1"><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="whs1">&nbsp;</p>
<p class="whs1"><b style="font-weight: bold;">Dialog Box:</b></p>
<p class="whs7">&nbsp;</p>
<p class="whs7"><img src="../pics/transformation4.png" x-maintain-ratio="TRUE" width="312px" height="376px" border="0" class="img_whs12"></p>
<p class="whs7">&nbsp;</p>
<p class="whs1"><b style="font-weight: bold;">Example:</b></p>
<p class="whs1">&nbsp;</p>
<p class="whs10"><img src="../image9.jpg" width="150px" height="145px" border="0" class="img_whs13"> &nbsp;<img src="../image10.jpg" width="150px" height="145px" border="0" class="img_whs13"></p>
<p class="whs10">&nbsp;</p>
<p class="whs14">&nbsp;</p>
<p class="whs15"><a name=_Toc57113217
style="font-size: 14pt; font-weight: bold;"><img src="../image59.gif" width="25px" height="22px" border="0" class="img_whs16"> Modify the Location</a></p>
<p class="whs14">&nbsp;</p>
<p class="whs1"><span style="font-size: 12pt;"><font size=3 style="font-size:12pt;"><b style="font-weight: bold;">Description:</b>
Modification of location of an object.</font></span></p>
<p class="whs1">&nbsp;</p>
<p class="whs1"><b style="font-weight: bold;">Result:</b> GEOM_Object.</p>
<p class="whs1">&nbsp;</p>
<p class="whs1"><b style="font-weight: bold;">TUI Command:</b><i>
geompy.MakePosition(theObject, theStartLCS, theEndLCS), </i>where&nbsp;theObject
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>
<p class="whs1">&nbsp;</p>
<p class="whs1"><b style="font-weight: bold;">Arguments:</b>
Name + 1 GEOM_Object + [Starting Coordinate System] + End Coordinate System.</p>
<p class="whs1"><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="whs1">&nbsp;</p>
<p class="whs1"><b style="font-weight: bold;">Dialog Box:</b></p>
<p class="whs1">&nbsp;</p>
<p class="whs7"><img src="../pics/transformation5.png" x-maintain-ratio="TRUE" width="312px" height="350px" border="0" class="img_whs17"> &nbsp;&nbsp;<img src="../pics/transformation6.png" x-maintain-ratio="TRUE" width="312px" height="385px" border="0" class="img_whs9"></p>
<p class="whs18">&nbsp;</p>
<p class="whs18"><b style="font-weight: bold;">Example:</b></p>
<p class="whs18">&nbsp;</p>
<p class="whs19"><img src="../image197.jpg" width="200px" height="209px" border="0" class="img_whs20"></p>
<p class="whs18">&nbsp;</p>
<p class="whs18">&nbsp;</p>
<p class="whs18">&nbsp;</p>
<p class="whs5"><a NAME=_Toc57113212><span
style="font-size: 14pt;"><font size=4 style="font-size:14pt;"><img src="salome2_sp3_transformationgui_functions_salome2_sp3_transformationgui_functions_image130.gif" width="20px" height="20px" border="0" class="img_whs6"><b style="font-size: 14pt;"> Mirror</b></a>
</font></span></p>
<p class="whs4">&nbsp;</p>
<p class="whs1"><b style="font-weight: bold;">Description:</b>
Symmetrical copy of a shape.</p>
<p class="whs1">&nbsp;</p>
<p class="whs1"><b style="font-weight: bold;">Result:</b> GEOM_Object.</p>
<p class="whs1">&nbsp;</p>
<p class="whs1"><b style="font-weight: bold;">TUI Command:</b><i>
</i><span style="font-style: italic;"><I>geompy.MakeMirrorByPlane(Shape,
Plane)</I></span>, where Shape is a shape to be mirrored, Plane is a plane
of symmetry.</p>
<p class="whs1">&nbsp;</p>
<p class="whs1"><b style="font-weight: bold;">Arguments:</b>
</p>
<ul type="disc" class="whs3">
<li class=kadov-p><p class="whs1"><b style="font-weight: bold;">1st
Constructor: <span style="font-weight: normal;">Name + </span></b>1 shape
+ 1 vertex.</p></li>
<li class=kadov-p><p class="whs1"><b style="font-weight: bold;">2st
Constructor: <span style="font-weight: normal;">Name + </span></b>1 shape
+ 1 vector.</p></li>
<li class=kadov-p><p class="whs1"><b style="font-weight: bold;">3st
Constructor: <span style="font-weight: normal;">Name + </span></b>1 shape
+ 1 plane.</p></li>
</ul>
<p class="whs1"><span style="font-weight: bold;"><B>Create a copy
</B></span><span>checkbox allows to keep the initial object, otherwise it
will be removed.</span></p>
<p class="whs1">&nbsp;</p>
<p class="whs1"><b style="font-weight: bold;">Dialog Box:</b></p>
<p class="whs1">&nbsp;</p>
<p class="whs7"><img src="../pics/transformation7.png" x-maintain-ratio="TRUE" width="312px" height="350px" border="0" class="img_whs17"> <img src="../pics/transformation8.png" x-maintain-ratio="TRUE" width="312px" height="350px" border="0" class="img_whs17"> <img src="../pics/transformation9.png" x-maintain-ratio="TRUE" width="312px" height="350px" border="0" class="img_whs17"></p>
<p class="whs1">&nbsp;</p>
<p class="whs1"><b style="font-weight: bold;">Example:</b></p>
<p class="whs1">&nbsp;</p>
<p class="whs7"><img src="../image121.jpg" width="150px" height="127px" border="0" class="img_whs21"> &nbsp;<img src="../image122.jpg" width="150px" height="127px" border="0" class="img_whs21"></p>
<p class="whs7">&nbsp;</p>
<p class="whs5"><a NAME=_Toc57113213><span
style="font-size: 14pt;"><font size=4 style="font-size:14pt;"><img src="salome2_sp3_transformationgui_functions_salome2_sp3_transformationgui_functions_image131.gif" width="20px" height="20px" border="0" class="img_whs6"><b><font style="font-size: 14pt;"
size=4> Scale transform</a>
</font></b></font></span></p>
<p class="whs5">&nbsp;</p>
<p class="whs1"><b style="font-weight: bold;">Description:</b>
Creates a scaled shape basing on the initial shape.</p>
<p class="whs1">&nbsp;</p>
<p class="whs1"><b style="font-weight: bold;">Result:</b> GEOM_Object.</p>
<p class="whs1">&nbsp;</p>
<p class="whs1"><b style="font-weight: bold;">TUI Command:</b><i>
</i><span style="font-style: italic;"><I>geompy.MakeScaleTransform(Shape,
CenterOfScale, Factor)</I></span>, where Shape is a shape to be scaled, CenterOfScale
is a center point of scale, Factor is a factor of the scale.</p>
<p class="whs1">&nbsp;</p>
<p class="whs1"><b style="font-weight: bold;">Arguments:</b>
Name + 1 shape(s) + 1 vertex + 1 Scale Factor.</p>
<p class="whs1">&nbsp;</p>
<p class="whs1"><b style="font-weight: bold;">Dialog Box:</b></p>
<p class="whs1">&nbsp;</p>
<p class="whs7"><img src="../pics/transformation10.png" x-maintain-ratio="TRUE" width="312px" height="350px" border="0" class="img_whs17"></p>
<p class="whs7">&nbsp;</p>
<p class="whs1"><b style="font-weight: bold;">Example:</b></p>
<p class="whs1">&nbsp;</p>
<p class="whs22"><img src="../image23.gif" width="150px" height="153px" border="0" class="img_whs23"> &nbsp;<img src="../image124.jpg" width="150px" height="153px" border="0" class="img_whs23"></p>
<p class="whs7">&nbsp;</p>
<p class="whs18"><a name=_Toc57113216><img src="../image37.gif" width="24px" height="22px" border="0" class="img_whs24"> <span
style="font-size: 14pt; font-weight: bold;"><font size=4 style="font-size:14pt;"><B>Offset surface</B></font></span></a></p>
<p class="whs18">&nbsp;</p>
<p class="whs1"><b style="font-weight: bold;">Description:</b>
Each point is translated along a local normal by a given distance (signed
number, negative value meaning inner offset). Offset operation is applicable
to faces, shells and solids.</p>
<p class="whs1">&nbsp;</p>
<p class="whs1"><b style="font-weight: bold;">Result:</b> GEOM_Object
</p>
<p class="whs1">&nbsp;</p>
<p class="whs1"><b style="font-weight: bold;">TUI Command:
</b><span style="font-style: italic;"><I>geompy.MakeOffset(Shape, Offset)</I></span>,
where Shape is a shape which has to be an offset, Offset is a value of
the offset.</p>
<p class="whs1">&nbsp;</p>
<p class="whs1"><b style="font-weight: bold;">Arguments:</b></p>
<ul type="disc" class="whs3">
<li class=kadov-p><p class="whs1"><span><font size=3 style="font-size:12pt;">Name of the resulting
object</font></span></p></li>
<li class=kadov-p><p class="whs1">GEOM_Object (face, shell,
solid, compound) </p></li>
<li class=kadov-p><p class="whs1">offset value </p></li>
</ul>
<p class="whs1">&nbsp;</p>
<p class="whs1"><b style="font-weight: bold;">Dialog Box:</b></p>
<p class="whs1">&nbsp;</p>
<p class="whs25"><img src="../pics/transformation11.png" x-maintain-ratio="TRUE" width="312px" height="315px" border="0" class="img_whs26"></p>
<p class="whs1">&nbsp;</p>
<p class="whs27">Example:</p>
<p class="whs7"><img src="../image151.jpg" width="200px" height="191px" border="0" class="img_whs28"></p>
<p class="whs7">&nbsp;</p>
<p class="whs7">&nbsp;</p>
<p class="whs5"><a NAME=_Toc57113214><span
style="font-size: 14pt;"><font size=4 style="font-size:14pt;"><img src="salome2_sp3_transformationgui_functions_salome2_sp3_transformationgui_functions_image132.gif" width="20px" height="20px" border="0" class="img_whs6"><b><font style="font-size: 14pt;"
size=4> Multi-Translation</font></b></font></span></a></p>
<p class="whs5">&nbsp;</p>
<p class="whs1"><b style="font-weight: bold;">Description:</b>
Makes several translations of a shape in <span style="font-weight: bold;"><B>one</B></span>
or <span style="font-weight: bold;"><B>two</B></span> directions.</p>
<p class="whs1">&nbsp;</p>
<p class="whs1"><b style="font-weight: bold;">Result:</b> GEOM_Object
(compound).</p>
<p class="whs1">&nbsp;</p>
<p class="whs1"><b style="font-weight: bold;">TUI Command:</b></p>
<ul>
<li class=kadov-p><p class="whs1"><span style="font-style: italic;"><I>geompy.MakeMultiTranslation1D(Shape,
Dir, Step, NbTimes)</I></span>, where Shape is a shape to be translated, Dir
is a direction of translation, Step is a step of the translation, NbTimes
is a number of times the shape must be moved.</p></li>
<li class=kadov-p><p class="whs1"><span style="font-style: italic;"><I>geompy.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></li>
</ul>
<p class="whs1">&nbsp;</p>
<p class="whs1"><b style="font-weight: bold;">Arguments:</b></p>
<ul>
<li class=kadov-p><p class="whs1"><b style="font-weight: bold;">1st
Constructor <span style="font-weight: normal;">(in one direction):</span></b>
Name + 1 shape + 1 vector (for direction) + 1 step value + 1 value (repetition).</p></li>
<li class=kadov-p><p class="whs1"><b style="font-weight: bold;">2nd
Constructor<span style="font-weight: normal;"> (in two directions):</span></b>
Name + 1 shape + 2 vectors defining the direction + 2 step values + 2
values (repetitions).</p></li>
</ul>
<p class="whs1">&nbsp;</p>
<p class="whs1"><b style="font-weight: bold;">Dialog Box:</b></p>
<p class="whs1">&nbsp;</p>
<p class="whs7"><img src="../pics/mtrans1.png" x-maintain-ratio="TRUE" width="312px" height="398px" border="0" class="img_whs29"> &nbsp;<img src="../pics/mtrans2.png" x-maintain-ratio="TRUE" width="312px" height="509px" border="0" class="img_whs30"></p>
<p class="whs1">&nbsp;</p>
<p class="whs1"><b style="font-weight: bold;">Example:</b></p>
<p class="whs1">&nbsp;</p>
<p class="whs1">One direction:</p>
<p class="whs1">&nbsp;</p>
<p class="whs7"><img src="../image24.gif" width="150px" height="123px" border="0" class="img_whs31"> &nbsp;<img src="../image128.jpg" width="150px" height="123px" border="0" class="img_whs31"></p>
<p class="whs1">&nbsp;</p>
<p class="whs1">Two directions:</p>
<p class="whs1">&nbsp;</p>
<p class="whs7"><img src="../image24.gif" width="150px" height="123px" border="0" class="img_whs31"> &nbsp;<img src="../image127.jpg" width="150px" height="123px" border="0" class="img_whs31"></p>
<p class="whs1">&nbsp;</p>
<p class="whs4">&nbsp;</p>
<p class="whs5"><a NAME=_Toc57113215><span
style="font-size: 14pt;"><font size=4 style="font-size:14pt;"><img src="salome2_sp3_transformationgui_functions_salome2_sp3_transformationgui_functions_image133.gif" width="20px" height="20px" border="0" class="img_whs6"><b style="font-size: 14pt;"> Multi-Rotation</b></font></span></a></p>
<p class="whs4">&nbsp;</p>
<p class="whs1"><b style="font-weight: bold;">Description:</b>
Creates several rotated geometrical objects in <span style="font-weight: bold;"><B>one
</B></span><span>or </span><span style="font-weight: bold;"><B>two </B></span><span>directions
basing on the initial geometrical object</span>.</p>
<p class="whs1">&nbsp;</p>
<p class="whs1"><b style="font-weight: bold;">Result:</b> GEOM_Object
(compound).</p>
<p class="whs1">&nbsp;</p>
<p class="whs1"><b style="font-weight: bold;">TUI Command:</b></p>
<ul>
<li class=kadov-p><p class="whs1"><span style="font-style: italic;"><I>geompy.MakeMultiRotation1D(Shape,
Axis, NbTimes)</I></span>, where Shape is a shape to be rotated, Axis is an
Axis of rotation, NbTimes is a number of the shape must be rotated.</p></li>
<li class=kadov-p><p class="whs1"><span style="font-style: italic;"><I>geompy.MakeMultiRotation2D(Shape,
Axis, Angle, NbTimes1, Step, NbTimes2)</I></span>, where Shape is a shape
to be rotated, Axis is an axis of rotation, Angle is an angle of rotation,
NbTimes1 is a number of rotation, Step is a step of translation, NbTimes2
is a number of translation.</p></li>
</ul>
<p class="whs1">&nbsp;</p>
<p class="whs1"><b style="font-weight: bold;">Arguments:</b></p>
<ul>
<li class=kadov-p><p class="whs1"><b style="font-weight: bold;">1st
Constructor <span style="font-weight: normal;">(in one direction):</span></b>
Name + 1 shape + 1 vector for direction + 1 value (repetition).</p></li>
<li class=kadov-p><p class="whs1"><b style="font-weight: bold;">2nd
Constructor <span style="font-weight: normal;">(in two directions):</span></b>
Name + 1 shape + 1 vector for direction + 1 angle + 1 value (repetition)
+ 1 step value + 1 value (repetition); <span style="font-weight: bold;"><B>Reverse
</B></span><span>checkbox allows to set the direction of rotation</span>.</p></li>
</ul>
<p class="whs1">&nbsp;</p>
<p class="whs1"><b style="font-weight: bold;">Dialog Box:</b></p>
<p class="whs1">&nbsp;</p>
<p class="whs7"><img src="../pics/neo-mrot1.png" x-maintain-ratio="TRUE" width="312px" height="346px" border="0" class="img_whs32"> &nbsp;<img src="../pics/neo-mrot2.png" x-maintain-ratio="TRUE" width="312px" height="450px" border="0" class="img_whs33"></p>
<p class="whs7">&nbsp;</p>
<p class="whs1"><span style="font-size: 12pt;"><font size=3 style="font-size:12pt;"><b style="font-weight: bold;"><b
style="font-weight: bold;">E</b>xample:</b></font></span></p>
<p>&nbsp;</p>
<p class="whs1"><span style="font-size: 12pt;"><font size=3 style="font-size:12pt;">One direction:</font></span></p>
<p class="whs1">&nbsp;</p>
<p class="whs7"><img src="../image129.jpg" width="150px" height="128px" border="0" class="img_whs34"> &nbsp;<img src="../image130.jpg" width="150px" height="128px" border="0" class="img_whs34"></p>
<p class="whs1">&nbsp;</p>
<p class="whs1">Two directions:</p>
<p class="whs1">&nbsp;</p>
<p class="whs7"><img src="../image25.gif" width="150px" height="113px" border="0" class="img_whs35"> &nbsp;<img src="../image133.jpg" width="150px" height="113px" border="0" class="img_whs35"></p>
<p>&nbsp;</p>
<p class="whs1">&nbsp;</p>
<script type="text/javascript" language="javascript1.2">
<!--
if (window.writeIntopicBar)
writeIntopicBar(0);
//-->
</script>
</body>
</html>

View File

@ -16,10 +16,10 @@ 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:315px; float:none; border-style:none; } p.whs3 { font-size:12pt; margin-left:40px; }
p.whs4 { font-size:12pt; margin-left:0px; } img_whs4 { border:none; width:312px; height:315px; float:none; border-style:none; }
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; }
p.whs6 { font-size:12pt; font-style:italic; } p.whs6 { font-size:12pt; font-style:italic; margin-left:40px; }
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:250px; float:none; border-style:none; } img_whs9 { border:none; width:220px; height:250px; float:none; border-style:none; }
@ -30,7 +30,6 @@ p.whs10 { list-style:disc; margin-left:0in; margin-right:0in; margin-top:0px; ma
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.whs4 {margin-left:1pt; }";
strNSS += "p.whs10 {margin-left:1pt;margin-right:1pt;margin-top:1pt;margin-bottom:1pt; }"; strNSS += "p.whs10 {margin-left:1pt;margin-right:1pt;margin-top:1pt;margin-bottom:1pt; }";
strNSS +="</style>"; strNSS +="</style>";
document.write(strNSS); document.write(strNSS);
@ -67,7 +66,7 @@ if (window.gbWhTopic)
{ {
if (window.addTocInfo) if (window.addTocInfo)
{ {
addTocInfo("GEOM module\nTransforming geometrical objects\nTransformation Operations\nFillet"); addTocInfo("Geometry module\nTransforming geometrical objects\nTransformation Operations\nFillet");
addButton("show",BTN_TEXT,"Show","","","","",0,0,"","",""); addButton("show",BTN_TEXT,"Show","","","","",0,0,"","","");
} }
@ -122,16 +121,15 @@ else
<p class="whs2">&nbsp;</p> <p class="whs2">&nbsp;</p>
<p class="whs2"><img src="pics/fillet1.png" x-maintain-ratio="TRUE" width="312px" height="315px" border="0" class="img_whs3"></p> <p class="whs3"><img src="pics/fillet1.png" x-maintain-ratio="TRUE" width="312px" height="315px" border="0" class="img_whs4"></p>
<p class="whs2">&nbsp;</p> <p class="whs2">&nbsp;</p>
<p class="whs2">To create fillets &nbsp;on <p class="whs2">To create fillets on the specified edges or
the specified edges or faces of the given shape, &nbsp;you 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 OCC
browser or in the OCC Viewer and define the &nbsp;<span 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>
<p class="whs2"><span style="font-style: italic;"><I><b style="font-weight: bold; font-style: normal;">TUI <p class="whs2"><span style="font-style: italic;"><I><b style="font-weight: bold; font-style: normal;">TUI
@ -144,7 +142,7 @@ else
<p class="whs2">&nbsp;</p> <p class="whs2">&nbsp;</p>
<p class="whs4"><img src="pics/fillet2.png" x-maintain-ratio="TRUE" width="312px" height="346px" border="0" class="img_whs5"> &nbsp;<img src="pics/fillet3.png" x-maintain-ratio="TRUE" width="312px" height="346px" border="0" class="img_whs5"></p> <p class="whs3"><img src="pics/fillet2.png" x-maintain-ratio="TRUE" width="312px" height="346px" border="0" class="img_whs5"> &nbsp;<img src="pics/fillet3.png" x-maintain-ratio="TRUE" width="312px" height="346px" border="0" class="img_whs5"></p>
<p class="whs2">&nbsp; </p> <p class="whs2">&nbsp; </p>
@ -158,7 +156,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="250px" border="0" class="img_whs9"></font></span></p> <p class="whs3"><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

@ -16,23 +16,11 @@ 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; margin-left:0px; } p.whs3 { font-size:12pt; margin-left:40px; }
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; } img_whs5 { border:none; float:none; width:260px; height:230px; border-style:none; }
img_whs6 { border:none; float:none; width:260px; height:230px; border-style:none; }
--> -->
</style><script type="text/javascript" language="JavaScript"> </style><script type="text/javascript" language="JavaScript" title="WebHelpInlineScript">
<!--
if ((navigator.appName == "Netscape") && (parseInt(navigator.appVersion) == 4))
{
var strNSS = "<style type='text/css'>";
strNSS += "p.whs3 {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)
@ -62,7 +50,7 @@ if (window.gbWhTopic)
{ {
if (window.addTocInfo) if (window.addTocInfo)
{ {
addTocInfo("GEOM module\nCreating geometrical objects\nGeneration of Complex Objects\nFilling"); addTocInfo("Geometry module\nCreating geometrical objects\nCreating Complex Objects\nFilling");
addButton("show",BTN_TEXT,"Show","","","","",0,0,"","",""); addButton("show",BTN_TEXT,"Show","","","","",0,0,"","","");
} }
@ -132,9 +120,9 @@ 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="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="whs3"><img src="pics/filling_compoundsn.png" x-maintain-ratio="TRUE" width="260px" height="230px" border="0" class="img_whs5"> <img src="pics/fillingsn.png" x-maintain-ratio="TRUE" width="260px" height="230px" border="0" class="img_whs5"> &nbsp;</p>
<p class="whs5">&nbsp;</p> <p class="whs3">&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 creation of <a href="complex_objects.htm#bookmark2">Complex Geometric of creation of <a href="complex_objects.htm#bookmark2">Complex Geometric

View File

@ -65,7 +65,7 @@ if (window.gbWhTopic)
{ {
if (window.addTocInfo) if (window.addTocInfo)
{ {
addTocInfo("GEOM module\nTransforming geometrical objects\nBoolean Operations\nFuse"); addTocInfo("Geometry module\nTransforming geometrical objects\nBoolean Operations\nFuse");
addButton("show",BTN_TEXT,"Show","","","","",0,0,"","",""); addButton("show",BTN_TEXT,"Show","","","","",0,0,"","","");
} }
@ -92,8 +92,9 @@ else
<h1><span style="font-size: 14pt;"><font size=4 style="font-size:14pt;"><img src="files/salome2_sp3_booleangui_functions_salome2_sp3_booleangui_functions_image3.gif" width="20px" height="20px" border="0" class="img_whs1"> </font></span>Fuse</h1> <h1><span style="font-size: 14pt;"><font size=4 style="font-size:14pt;"><img src="files/salome2_sp3_booleangui_functions_salome2_sp3_booleangui_functions_image3.gif" width="20px" height="20px" border="0" class="img_whs1"> </font></span>Fuse</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>Fuse</B></span> in the Main Menu select a <span style="font-weight: bold;"><B>Fuse</B></span> operation in the Main Menu
<span style="font-weight: bold;"><B>Operations - &gt; Boolean - &gt; Fuse</B></span></p> select <span style="font-weight: bold;"><B>Operations - &gt; Boolean - &gt;
Fuse</B></span></p>
<p class="whs3">&nbsp;</p> <p class="whs3">&nbsp;</p>

View File

@ -136,14 +136,12 @@ arc.htm
archimede.htm archimede.htm
basic_geometrical_objects.htm basic_geometrical_objects.htm
basic_operations.htm basic_operations.htm
blocks.htm
blocks_operations.htm blocks_operations.htm
boolean_operations.htm boolean_operations.htm
box.htm box.htm
building_by_blocks.htm building_by_blocks.htm
chamfer.htm chamfer.htm
changing_display_parameters.htm changing_display_parameters.htm
changing_displaying_parameters.htm
check_free_boundaries.htm check_free_boundaries.htm
check_free_faces.htm check_free_faces.htm
circle.htm circle.htm
@ -163,17 +161,9 @@ explode_on_blocks.htm
extrusion.htm extrusion.htm
face.htm face.htm
files\introduction_to_geom.htm files\introduction_to_geom.htm
files\salome2_sp3_basicgui_functions.htm
files\salome2_sp3_booleangui_functions.htm files\salome2_sp3_booleangui_functions.htm
files\salome2_sp3_buildgui_functions.htm
files\salome2_sp3_displaygui_functions.htm
files\salome2_sp3_generationgui_functions.htm
files\salome2_sp3_geomtoolsgui_functions.htm files\salome2_sp3_geomtoolsgui_functions.htm
files\salome2_sp3_measuregui_functions.htm files\salome2_sp3_measuregui_functions.htm
files\salome2_sp3_operationgui_functions.htm
files\salome2_sp3_primitivegui_functions.htm
files\salome2_sp3_repairgui_functions.htm
files\salome2_sp3_transformationgui_functions.htm
fillet.htm fillet.htm
filling.htm filling.htm
fuse.htm fuse.htm
@ -190,6 +180,7 @@ multi_rotation.htm
multi_transformation.htm multi_transformation.htm
multi_translation.htm multi_translation.htm
newentity_blocks.htm newentity_blocks.htm
occ_viewer.htm
offset_surface.htm offset_surface.htm
partition.htm partition.htm
pipe_creation.htm pipe_creation.htm
@ -217,6 +208,7 @@ translation.htm
transparency.htm transparency.htm
turus.htm turus.htm
vector.htm vector.htm
viewing_geometrical_objects.htm
wire.htm wire.htm
wireframe_and_shading.htm wireframe_and_shading.htm
working_plane.htm working_plane.htm
@ -224,24 +216,23 @@ working_with_groups.htm
ehelp.xml ehelp.xml
geom.glo geom.glo
default.css default.css
pics\image86.gif
pics\image103.gif
pics\image97.gif
pics\chamfer_all.png pics\chamfer_all.png
pics\edgesn.png pics\edgesn.png
pics\boxes.png pics\boxes.png
pics\mtrans1.png pics\mtrans1.png
pics\transformation3.png pics\transformation3.png
pics\mtransf2.png pics\mtransf2.png
pics\export.png
image15.jpg image15.jpg
image204.jpg image204.jpg
image56.gif image56.gif
image149.jpg
image127.jpg
image23.gif
image12.gif
files\salome2_sp3_measuregui_functions_salome2_sp3_measuregui_functions_image73.gif files\salome2_sp3_measuregui_functions_salome2_sp3_measuregui_functions_image73.gif
files\salome2_sp3_displaygui_functions_salome2_sp3_displaygui_functions_image55.gif
files\salome2_sp3_booleangui_functions_salome2_sp3_booleangui_functions_image4.gif files\salome2_sp3_booleangui_functions_salome2_sp3_booleangui_functions_image4.gif
salome2_sp3_buildgui_functions_salome2_sp3_buildgui_functions_image17.gif salome2_sp3_buildgui_functions_salome2_sp3_buildgui_functions_image17.gif
pics\clipping.png
pics\image98.gif
pics\archimedesn1.png pics\archimedesn1.png
pics\neo-basicprop.png pics\neo-basicprop.png
pics\mtrans2.png pics\mtrans2.png
@ -251,12 +242,12 @@ pics\plane1.png
image16.jpg image16.jpg
image57.gif image57.gif
image35.gif image35.gif
image128.jpg
image24.gif
image27.jpg
image13.gif
files\salome2_sp3_measuregui_functions_salome2_sp3_measuregui_functions_image74.gif files\salome2_sp3_measuregui_functions_salome2_sp3_measuregui_functions_image74.gif
salome2_sp3_buildgui_functions_salome2_sp3_buildgui_functions_image18.gif salome2_sp3_buildgui_functions_salome2_sp3_buildgui_functions_image18.gif
pics\image105.gif
pics\image99.gif
pics\image88.gif
pics\image77.gif
pics\suppress_faces1.png pics\suppress_faces1.png
pics\mirror_axissn1.png pics\mirror_axissn1.png
pics\archimedesn2.png pics\archimedesn2.png
@ -267,12 +258,13 @@ pics\transformation5.png
pics\mtransf4.png pics\mtransf4.png
pics\plane2.png pics\plane2.png
image206.jpg image206.jpg
image25.gif
image129.jpg
image14.gif
files\salome2_sp3_measuregui_functions_salome2_sp3_measuregui_functions_image75.gif files\salome2_sp3_measuregui_functions_salome2_sp3_measuregui_functions_image75.gif
files\salome2_sp3_basicgui_functions_salome2_sp3_basicgui_functions_image30.gif files\salome2_sp3_basicgui_functions_salome2_sp3_basicgui_functions_image30.gif
salome2_sp3_buildgui_functions_salome2_sp3_buildgui_functions_image19.gif salome2_sp3_buildgui_functions_salome2_sp3_buildgui_functions_image19.gif
image26.gif
image1.jpg
pics\image106.gif
pics\image89.gif
pics\suppress_faces2.png pics\suppress_faces2.png
pics\multi_translation1dsn.png pics\multi_translation1dsn.png
pics\mirror_axissn2.png pics\mirror_axissn2.png
@ -282,15 +274,11 @@ pics\wiresn.png
pics\transformation11.png pics\transformation11.png
pics\transformation6.png pics\transformation6.png
pics\block1.png pics\block1.png
pics\creategroup.png
pics\pipe.png pics\pipe.png
pics\torus1.png pics\torus1.png
pics\plane3.png pics\plane3.png
image59.gif image59.gif
image37.gif image37.gif
image15.gif
image18.jpg
files\salome2_sp3_transformationgui_functions_salome2_sp3_transformationgui_functions_image130.gif
files\salome2_sp3_operationgui_functions_salome2_sp3_operationgui_functions_image87.gif files\salome2_sp3_operationgui_functions_salome2_sp3_operationgui_functions_image87.gif
files\salome2_sp3_measuregui_functions_salome2_sp3_measuregui_functions_image76.gif files\salome2_sp3_measuregui_functions_salome2_sp3_measuregui_functions_image76.gif
files\salome2_sp3_basicgui_functions_salome2_sp3_basicgui_functions_image31.gif files\salome2_sp3_basicgui_functions_salome2_sp3_basicgui_functions_image31.gif
@ -304,11 +292,9 @@ pics\transformation7.png
pics\block2.png pics\block2.png
pics\torus2.png pics\torus2.png
image27.gif image27.gif
image191.jpg
image180.jpg image180.jpg
image49.gif image49.gif
image109.jpg image109.jpg
image16.gif
files\salome2_sp3_transformationgui_functions_salome2_sp3_transformationgui_functions_image131.gif files\salome2_sp3_transformationgui_functions_salome2_sp3_transformationgui_functions_image131.gif
files\salome2_sp3_repairgui_functions_salome2_sp3_repairgui_functions_image119.gif files\salome2_sp3_repairgui_functions_salome2_sp3_repairgui_functions_image119.gif
files\salome2_sp3_operationgui_functions_salome2_sp3_operationgui_functions_image88.gif files\salome2_sp3_operationgui_functions_salome2_sp3_operationgui_functions_image88.gif
@ -329,14 +315,14 @@ pics\repair2.png
pics\transformation8.png pics\transformation8.png
pics\block3.png pics\block3.png
image181.jpg image181.jpg
image170.jpg
image80.jpg
image17.gif
files\salome2_sp3_transformationgui_functions_salome2_sp3_transformationgui_functions_image132.gif files\salome2_sp3_transformationgui_functions_salome2_sp3_transformationgui_functions_image132.gif
files\salome2_sp3_operationgui_functions_salome2_sp3_operationgui_functions_image89.gif files\salome2_sp3_operationgui_functions_salome2_sp3_operationgui_functions_image89.gif
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
image18.gif
image1.gif
pics\geomimport.png
pics\neo-isos.png pics\neo-isos.png
pics\glue_faces2.png pics\glue_faces2.png
pics\supp_int_wires2.png pics\supp_int_wires2.png
@ -356,11 +342,10 @@ pics\block4.png
pics\sphere1.png pics\sphere1.png
image193.jpg image193.jpg
image29.gif image29.gif
image171.jpg
image160.jpg image160.jpg
image81.jpg
files\salome2_sp3_transformationgui_functions_salome2_sp3_transformationgui_functions_image133.gif files\salome2_sp3_transformationgui_functions_salome2_sp3_transformationgui_functions_image133.gif
files\salome2_sp3_basicgui_functions_salome2_sp3_basicgui_functions_image34.gif files\salome2_sp3_basicgui_functions_salome2_sp3_basicgui_functions_image34.gif
image2.gif
pics\chamfer_faces.png pics\chamfer_faces.png
pics\fillet_prism.png pics\fillet_prism.png
pics\rotationsn1.png pics\rotationsn1.png
@ -378,11 +363,6 @@ pics\partition2.png
pics\block5.png pics\block5.png
pics\sphere2.png pics\sphere2.png
pics\point1.png pics\point1.png
pics\import.png
image172.jpg
image150.jpg
image82.jpg
image19.gif
pics\rotationsn2.png pics\rotationsn2.png
pics\disp_mode2sn.png pics\disp_mode2sn.png
pics\neo-detect2.png pics\neo-detect2.png
@ -398,10 +378,8 @@ pics\arc.png
pics\ellipse.png pics\ellipse.png
pics\circle1.png pics\circle1.png
image3.gif image3.gif
image151.jpg
image94.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
image4.gif
pics\isos_u12_v12sn.png pics\isos_u12_v12sn.png
pics\free_boudaries1.png pics\free_boudaries1.png
pics\multi_rotation1d1.png pics\multi_rotation1d1.png
@ -419,11 +397,8 @@ pics\cone1.png
pics\circle2.png pics\circle2.png
pics\point3.png pics\point3.png
image185.jpg image185.jpg
image163.jpg
image130.jpg
image95.jpg
image84.jpg
files\salome2_sp3_generationgui_functions_salome2_sp3_generationgui_functions_image57.gif files\salome2_sp3_generationgui_functions_salome2_sp3_generationgui_functions_image57.gif
image5.gif
pics\free_boudaries2.png pics\free_boudaries2.png
pics\multi_rotation2d1.png pics\multi_rotation2d1.png
pics\multi_rotation1d2.png pics\multi_rotation1d2.png
@ -435,14 +410,9 @@ pics\measures5.png
pics\repair7.png pics\repair7.png
pics\chamfer3.png pics\chamfer3.png
pics\cone2.png pics\cone2.png
image197.jpg
image164.jpg
image96.jpg
image85.jpg
image52.jpg
image8.jpg
files\salome2_sp3_generationgui_functions_salome2_sp3_generationgui_functions_image58.gif files\salome2_sp3_generationgui_functions_salome2_sp3_generationgui_functions_image58.gif
files\salome2_sp3_basicgui_functions_salome2_sp3_basicgui_functions_image27.gif files\salome2_sp3_basicgui_functions_salome2_sp3_basicgui_functions_image27.gif
pics\image91.gif
pics\chamfer_edge.png pics\chamfer_edge.png
pics\fillet_edge.png pics\fillet_edge.png
pics\multi_rotation2d2.png pics\multi_rotation2d2.png
@ -458,14 +428,8 @@ pics\cylinder1.png
pics\vector1.png pics\vector1.png
image61.gif image61.gif
image154.jpg image154.jpg
image121.jpg
image110.jpg image110.jpg
image97.jpg
image53.jpg
image9.jpg
image6.gif
files\salome2_sp3_generationgui_functions_salome2_sp3_generationgui_functions_image59.gif files\salome2_sp3_generationgui_functions_salome2_sp3_generationgui_functions_image59.gif
files\salome2_sp3_basicgui_functions_salome2_sp3_basicgui_functions_image28.gif
pics\scale_transformsn2.png pics\scale_transformsn2.png
pics\translationsn1.png pics\translationsn1.png
pics\facesn1.png pics\facesn1.png
@ -473,15 +437,7 @@ pics\neo-mrot2.png
pics\repair9.png pics\repair9.png
pics\cylinder2.png pics\cylinder2.png
pics\vector2.png pics\vector2.png
image188.jpg
image51.gif image51.gif
image133.jpg
image122.jpg
image98.jpg
image76.jpg
image54.jpg
image7.gif
image10.jpg
files\salome2_sp3_transformationgui_functions_salome2_sp3_transformationgui_functions_image128.gif files\salome2_sp3_transformationgui_functions_salome2_sp3_transformationgui_functions_image128.gif
files\salome2_sp3_repairgui_functions_salome2_sp3_repairgui_functions_image121.gif files\salome2_sp3_repairgui_functions_salome2_sp3_repairgui_functions_image121.gif
files\salome2_sp3_operationgui_functions_salome2_sp3_operationgui_functions_image90.gif files\salome2_sp3_operationgui_functions_salome2_sp3_operationgui_functions_image90.gif
@ -499,22 +455,19 @@ pics\measures8.png
pics\fillet1.png pics\fillet1.png
pics\archimede.png pics\archimede.png
pics\workplane4.png pics\workplane4.png
image189.jpg
image52.gif image52.gif
image167.jpg image167.jpg
image156.jpg image156.jpg
image41.gif image41.gif
image145.jpg image145.jpg
image112.jpg image112.jpg
files\salome2_sp3_displaygui_functions_salome2_sp3_displaygui_functions_image51.gif
image8.gif
image11.jpg
files\salome2_sp3_transformationgui_functions_salome2_sp3_transformationgui_functions_image129.gif files\salome2_sp3_transformationgui_functions_salome2_sp3_transformationgui_functions_image129.gif
files\salome2_sp3_repairgui_functions_salome2_sp3_repairgui_functions_image122.gif files\salome2_sp3_repairgui_functions_salome2_sp3_repairgui_functions_image122.gif
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\image100.gif
pics\geomcreategroup.png
pics\commonsn.png pics\commonsn.png
pics\free_faces2.png pics\free_faces2.png
pics\mirror_planesn1.png pics\mirror_planesn1.png
@ -528,21 +481,14 @@ pics\neo-transparency.png
pics\measures9.png pics\measures9.png
pics\fillet2.png pics\fillet2.png
pics\workplane5.png pics\workplane5.png
image201.jpg
image53.gif image53.gif
image168.jpg image168.jpg
image42.gif image42.gif
image124.jpg
image113.jpg image113.jpg
image78.jpg
image20.gif
image67.jpg
image9.gif
image12.jpg
files\salome2_sp3_primitivegui_functions_salome2_sp3_primitivegui_functions_image101.gif files\salome2_sp3_primitivegui_functions_salome2_sp3_primitivegui_functions_image101.gif
files\salome2_sp3_displaygui_functions_salome2_sp3_displaygui_functions_image52.gif
files\salome2_sp3_booleangui_functions_salome2_sp3_booleangui_functions_image1.gif files\salome2_sp3_booleangui_functions_salome2_sp3_booleangui_functions_image1.gif
salome2_sp3_buildgui_functions_salome2_sp3_buildgui_functions_image14.gif salome2_sp3_buildgui_functions_salome2_sp3_buildgui_functions_image14.gif
pics\image95.gif
pics\mirror_planesn2.png pics\mirror_planesn2.png
pics\neo-scetcher2.png pics\neo-scetcher2.png
pics\transformation1.png pics\transformation1.png
@ -552,16 +498,15 @@ pics\workplane6.png
pics\curve.png pics\curve.png
pics\line.png pics\line.png
image10.gif image10.gif
image202.jpg
image147.jpg
image32.gif image32.gif
image79.jpg
image21.gif
files\salome2_sp3_primitivegui_functions_salome2_sp3_primitivegui_functions_image102.gif files\salome2_sp3_primitivegui_functions_salome2_sp3_primitivegui_functions_image102.gif
files\salome2_sp3_measuregui_functions_salome2_sp3_measuregui_functions_image71.gif files\salome2_sp3_measuregui_functions_salome2_sp3_measuregui_functions_image71.gif
files\salome2_sp3_displaygui_functions_salome2_sp3_displaygui_functions_image53.gif
files\salome2_sp3_booleangui_functions_salome2_sp3_booleangui_functions_image2.gif files\salome2_sp3_booleangui_functions_salome2_sp3_booleangui_functions_image2.gif
salome2_sp3_buildgui_functions_salome2_sp3_buildgui_functions_image15.gif salome2_sp3_buildgui_functions_salome2_sp3_buildgui_functions_image15.gif
image33.gif
pics\image102.gif
pics\image96.gif
pics\geomexport.png
pics\multi_translation_initialsn.png pics\multi_translation_initialsn.png
pics\plane_on_face.png pics\plane_on_face.png
pics\bezier.png pics\bezier.png
@ -572,11 +517,8 @@ pics\editgroup.png
pics\extrusion.png pics\extrusion.png
pics\box2.png pics\box2.png
image44.gif image44.gif
image22.gif
image11.gif
files\salome2_sp3_primitivegui_functions_salome2_sp3_primitivegui_functions_image103.gif files\salome2_sp3_primitivegui_functions_salome2_sp3_primitivegui_functions_image103.gif
files\salome2_sp3_measuregui_functions_salome2_sp3_measuregui_functions_image72.gif files\salome2_sp3_measuregui_functions_salome2_sp3_measuregui_functions_image72.gif
files\salome2_sp3_displaygui_functions_salome2_sp3_displaygui_functions_image54.gif
files\salome2_sp3_booleangui_functions_salome2_sp3_booleangui_functions_image3.gif files\salome2_sp3_booleangui_functions_salome2_sp3_booleangui_functions_image3.gif
salome2_sp3_buildgui_functions_salome2_sp3_buildgui_functions_image16.gif salome2_sp3_buildgui_functions_salome2_sp3_buildgui_functions_image16.gif
ehlpdhtm.js ehlpdhtm.js
@ -607,7 +549,6 @@ 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
@ -635,6 +576,7 @@ whgdata\whlstfl22.htm
whgdata\whlstfl23.htm whgdata\whlstfl23.htm
whgdata\whlstfl24.htm whgdata\whlstfl24.htm
whgdata\whlstfl25.htm whgdata\whlstfl25.htm
whgdata\whlstfl26.htm
whgdata\whlstf0.htm whgdata\whlstf0.htm
whgdata\whlstf1.htm whgdata\whlstf1.htm
whgdata\whlstf2.htm whgdata\whlstf2.htm
@ -649,8 +591,6 @@ whgdata\whlstf10.htm
whgdata\whlstf11.htm whgdata\whlstf11.htm
whgdata\whlstf12.htm whgdata\whlstf12.htm
whgdata\whlstf13.htm whgdata\whlstf13.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

@ -47,7 +47,7 @@ if (window.gbWhTopic)
{ {
if (window.addTocInfo) if (window.addTocInfo)
{ {
addTocInfo("GEOM module\nTUI Scripts\nCreation of Geometric Objects\nAdvanced Geometrical Objects"); addTocInfo("Geometry module\nTUI Scripts\nCreating Geometric Objects\nAdvanced Geometrical Objects");
addButton("show",BTN_TEXT,"Show","","","","",0,0,"","",""); addButton("show",BTN_TEXT,"Show","","","","",0,0,"","","");
} }

View File

@ -73,7 +73,7 @@ if (window.gbWhTopic)
{ {
if (window.addTocInfo) if (window.addTocInfo)
{ {
addTocInfo("GEOM module\nTransforming geometrical objects\nRepairing Operations\nGlue Faces"); addTocInfo("Geometry module\nTransforming geometrical objects\nRepairing Operations\nGlue Faces");
addButton("show",BTN_TEXT,"Show","","","","",0,0,"","",""); addButton("show",BTN_TEXT,"Show","","","","",0,0,"","","");
} }
@ -110,11 +110,13 @@ else
<p class="whs4">&nbsp;</p> <p class="whs4">&nbsp;</p>
<p class="whs4"><span style="font-size: 12pt;"><font size=3 style="font-size:12pt;"><b style="font-weight: bold;">Result:</b> <p class="whs2"><b><span style="font-weight: normal;">T</span></b><b><span
GEOM_Object.</font></span></p> style="font-weight: normal;">he</span> Result <span style="font-weight: normal;">will
be a</span></b><b> <span style="font-weight: bold;"><B>GEOM_Object. </B></span></b></p>
<p class="whs4"><b style="font-weight: bold;">TUI Command <p class="whs2">&nbsp;</p>
: </b><span style="font-style: italic;"><I>geompy.MakeGlueFaces(theShape,
<p class="whs4"><b>TUI Command : </b><span style="font-style: italic;"><I>geompy.MakeGlueFaces(theShape,
theTolerance)</I></span>, where theShape is a compound of shapes to 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

@ -46,7 +46,7 @@ if (window.gbWhTopic)
{ {
if (window.addTocInfo) if (window.addTocInfo)
{ {
addTocInfo("GEOM module\nTUI Scripts\nCreation of Geometric Objects\nWorking with Groups"); addTocInfo("Geometry module\nTUI Scripts\nCreating Geometric Objects\nWorking with Groups");
addButton("show",BTN_TEXT,"Show","","","","",0,0,"","",""); addButton("show",BTN_TEXT,"Show","","","","",0,0,"","","");
} }

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

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.1 KiB

BIN
doc/salome/gui/GEOM/image1.jpg Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 21 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 10 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 8.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 7.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.9 KiB

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

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.0 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 18 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 24 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 20 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 9.1 KiB

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

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.4 KiB

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