geom/doc/salome/examples/whatis.py
2021-08-12 08:45:03 +02:00

14 lines
271 B
Python

# What Is
import salome
salome.salome_init_without_session()
import GEOM
from salome.geom import geomBuilder
geompy = geomBuilder.New()
# create a box
box = geompy.MakeBoxDXDYDZ(100,30,100)
Descr = geompy.WhatIs(box)
print("\nBox 100x30x100 description:")
print(Descr)