Functions | |
| def | geompy.CheckCompoundOfBlocks |
| Check, if the compound of blocks is given. | |
| def | geompy.RemoveExtraEdges |
| Remove all seam and degenerated edges from theShape. | |
| def | geompy.CheckAndImprove |
| Check, if the given shape is a blocks compound. | |
| def geompy.CheckCompoundOfBlocks | ( | self, | |
| theCompound | |||
| ) |
To be considered as a compound of blocks, the given shape must satisfy the following conditions:
| theCompound | The compound to check. |
| def geompy.RemoveExtraEdges | ( | self, | |
| theShape, | |||
doUnionFaces = False |
|||
| ) |
Unite faces and edges, sharing one surface. It means that this faces must have references to one C++ surface object (handle).
| theShape | The compound or single solid to remove irregular edges from. |
| doUnionFaces | If True, then unite faces. If False (the default value), do not unite faces. |
Example
| def geompy.CheckAndImprove | ( | self, | |
| theShape | |||
| ) |
Fix all detected errors.
| theShape | The compound to check and improve. |
Example