mirror of
https://git.salome-platform.org/gitpub/modules/geom.git
synced 2025-01-03 21:30:35 +05:00
16 lines
384 B
Python
16 lines
384 B
Python
# Detect Self-intersections fast
|
|
|
|
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.CheckSelfIntersectionsFast(box, 0.002, 0)
|
|
if IsValid == 0:
|
|
raise RuntimeError, "Box with self-intersections created"
|
|
else:
|
|
print "\nBox is valid"
|