mirror of
https://git.salome-platform.org/gitpub/modules/geom.git
synced 2024-11-16 02:28:35 +05:00
16 lines
201 B
Plaintext
16 lines
201 B
Plaintext
|
/*!
|
||
|
|
||
|
\page tui_whatis_page What Is
|
||
|
|
||
|
\code
|
||
|
import geompy
|
||
|
|
||
|
# create a box
|
||
|
box = geompy.MakeBoxDXDYDZ(100,30,100)
|
||
|
Descr = geompy.WhatIs(box)
|
||
|
print "\nBox 100x30x100 description:"
|
||
|
print Descr
|
||
|
\endcode
|
||
|
|
||
|
*/
|