mirror of
https://git.salome-platform.org/gitpub/modules/geom.git
synced 2024-11-12 00:29:18 +05:00
22 lines
515 B
Python
22 lines
515 B
Python
# Detect Self-intersections
|
|
|
|
import salome
|
|
salome.salome_init()
|
|
import GEOM
|
|
from salome.geom import geomBuilder
|
|
geompy = geomBuilder.New()
|
|
|
|
# create a box
|
|
box = geompy.MakeBoxDXDYDZ(100,100,100)
|
|
# create a cylinder
|
|
cylinder = geompy.MakeCylinderRH(100, 300)
|
|
# make a compound
|
|
compound = geompy.MakeCompound([box, cylinder])
|
|
|
|
# check self-intersection
|
|
IsValid = geompy.CheckSelfIntersections(compound)
|
|
if not IsValid:
|
|
print "Shape is self-intersected!"
|
|
else:
|
|
print "No self-intersection detected in a shape"
|