mirror of
https://git.salome-platform.org/gitpub/modules/geom.git
synced 2024-11-13 17:18:36 +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"
|