geom/doc/salome/gui/GEOM/input/tui_bounding_box.doc

18 lines
338 B
Plaintext
Raw Normal View History

2012-08-09 13:58:02 +06:00
/*!
\page tui_bounding_box_page Bounding Box
\code
import geompy
# create a box
box = geompy.MakeBoxDXDYDZ(100,30,100)
bb = geompy.BoundingBox(box)
print "\nBounding Box of box 100x30x100:"
print " Xmin = ", bb[0], ", Xmax = ", bb[1]
print " Ymin = ", bb[2], ", Ymax = ", bb[3]
print " Zmin = ", bb[4], ", Zmax = ", bb[5]
\endcode
*/