mirror of
https://git.salome-platform.org/gitpub/modules/geom.git
synced 2024-11-12 00:29:18 +05:00
7961b83044
This reverts commit 3cd92817cb
.
16 lines
365 B
Python
16 lines
365 B
Python
# Detect Self-intersections
|
|
|
|
import salome
|
|
salome.salome_init()
|
|
import GEOM
|
|
from salome.geom import geomBuilder
|
|
geompy = geomBuilder.New(salome.myStudy)
|
|
|
|
# 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"
|