Salome HOME
Mantis issue 0021703: [CEA 577] Boolean operations on groups.
[modules/geom.git] / doc / salome / gui / GEOM / input / tui_check_self_intersections.doc
1 /*!
2
3 \page tui_check_self_intersections_page Detect Self-intersections
4
5 \code
6 import geompy
7
8 # create a box
9 box = geompy.MakeBoxDXDYDZ(100,30,100)
10 IsValid = geompy.CheckSelfIntersections(box)
11 if IsValid == 0:
12     raise RuntimeError, "Box with self-intersections created"
13 else:
14     print "\nBox is valid"
15 \endcode
16
17 */