Salome HOME
Merge from V6_main 11/02/2013
[modules/geom.git] / doc / salome / examples / whatis.py
1 # What Is
2
3 import geompy
4
5 # create a box
6 box = geompy.MakeBoxDXDYDZ(100,30,100)
7 Descr = geompy.WhatIs(box)
8 print "\nBox 100x30x100 description:"
9 print Descr