mirror of
https://git.salome-platform.org/gitpub/modules/geom.git
synced 2024-11-14 09:38:34 +05:00
12 lines
213 B
Python
12 lines
213 B
Python
|
# Check Shape
|
||
|
|
||
|
import geompy
|
||
|
|
||
|
# create a box
|
||
|
box = geompy.MakeBoxDXDYDZ(100,30,100)
|
||
|
IsValid = geompy.CheckShape(box)
|
||
|
if IsValid == 0:
|
||
|
raise RuntimeError, "Invalid box created"
|
||
|
else:
|
||
|
print "\nBox is valid"
|