]> SALOME platform Git repositories - modules/geom.git/commitdiff
Salome HOME
Fix of bug 0020420: Bad links in Documentation
authorouv <ouv@opencascade.com>
Tue, 14 Jul 2009 12:03:17 +0000 (12:03 +0000)
committerouv <ouv@opencascade.com>
Tue, 14 Jul 2009 12:03:17 +0000 (12:03 +0000)
doc/salome/gui/GEOM/input/tui_notebook_geom.doc [new file with mode: 0644]

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 (file)
index 0000000..629ce63
--- /dev/null
@@ -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
+
+*/