From: ouv Date: Tue, 14 Jul 2009 12:03:17 +0000 (+0000) Subject: Fix of bug 0020420: Bad links in Documentation X-Git-Tag: V5_1_3rc1~73 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=4612039b465ff3758a3739d33ae707ac4a36ec10;p=modules%2Fgeom.git Fix of bug 0020420: Bad links in Documentation --- diff --git a/doc/salome/gui/GEOM/input/tui_notebook_geom.doc b/doc/salome/gui/GEOM/input/tui_notebook_geom.doc new file mode 100644 index 000000000..629ce6329 --- /dev/null +++ b/doc/salome/gui/GEOM/input/tui_notebook_geom.doc @@ -0,0 +1,29 @@ +/*! + +\page tui_notebook_geom_page Using SALOME NoteBook + +\anchor tui_notebook_geom + +\code +import geompy +import salome +import salome_notebook +gg = salome.ImportComponentGUI("GEOM") + +# set variables +notebook = salome_notebook.notebook +notebook.set("Length", 150) +notebook.set("Width", 100) + +# create box +box = geompy.MakeBoxDXDYDZ("Length", "Width", 200) + +# add object in the study +id_box = geompy.addToStudy(box,"Box") + +# display the boxes +gg.createAndDisplayGO(id_box) +gg.setDisplayMode(id_box,1) +\endcode + +*/