Functions | |
| def | geompy.MakeBoolean |
| Perform one of boolean operations on two given shapes. | |
| def | geompy.MakeCommon |
| Shortcut to MakeBoolean(s1, s2, 1) | |
| def | geompy.MakeCut |
| Shortcut to MakeBoolean(s1, s2, 2) | |
| def | geompy.MakeFuse |
| Shortcut to MakeBoolean(s1, s2, 3) | |
| def | geompy.MakeSection |
| Shortcut to MakeBoolean(s1, s2, 4) | |
| def geompy.MakeBoolean | ( | self, | |
| theShape1, | |||
| theShape2, | |||
| theOperation | |||
| ) |
Perform one of boolean operations on two given shapes.
| theShape1 | First argument for boolean operation. |
| theShape2 | Second argument for boolean operation. |
| theOperation | Indicates the operation to be done: 1 - Common, 2 - Cut, 3 - Fuse, 4 - Section. |