mirror of
https://git.salome-platform.org/gitpub/modules/geom.git
synced 2024-12-28 18:30:36 +05:00
10 lines
157 B
Python
10 lines
157 B
Python
|
# What Is
|
||
|
|
||
|
import geompy
|
||
|
|
||
|
# create a box
|
||
|
box = geompy.MakeBoxDXDYDZ(100,30,100)
|
||
|
Descr = geompy.WhatIs(box)
|
||
|
print "\nBox 100x30x100 description:"
|
||
|
print Descr
|