Fix of bug 0020420: Bad links in Documentation

This commit is contained in:
ouv 2009-07-14 12:03:17 +00:00
parent ab4a0f0a87
commit 4612039b46

View File

@ -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
*/