geom/doc/salome/examples/check_self_intersections.py

12 lines
255 B
Python

# Detect Self-intersections
import geompy
# create a box
box = geompy.MakeBoxDXDYDZ(100,30,100)
IsValid = geompy.CheckSelfIntersections(box)
if IsValid == 0:
raise RuntimeError, "Box with self-intersections created"
else:
print "\nBox is valid"