mirror of
https://git.salome-platform.org/gitpub/modules/geom.git
synced 2024-11-12 00:29:18 +05:00
14 lines
255 B
Python
14 lines
255 B
Python
# What Is
|
|
|
|
import salome
|
|
salome.salome_init()
|
|
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)
|