Salome HOME
Correction of documentation
[modules/geom.git] / doc / salome / gui / GEOM / input / tui_bounding_box.doc
1 /*!
2
3 \page tui_bounding_box_page Bounding Box
4
5 \code
6 import geompy
7
8 # create a box
9 box = geompy.MakeBoxDXDYDZ(100,30,100)
10 bb = geompy.BoundingBox(box)
11 print "\nBounding Box of box 100x30x100:"
12 print " Xmin = ", bb[0], ", Xmax = ", bb[1]
13 print " Ymin = ", bb[2], ", Ymax = ", bb[3]
14 print " Zmin = ", bb[4], ", Zmax = ", bb[5]
15 \endcode
16
17 */