Functions | |
| def | geompy.MakeFilletAll |
| Perform a fillet on all edges of the given shape. | |
| def | geompy.MakeFillet |
| Perform a fillet on the specified edges/faces of the given shape. | |
| def | geompy.MakeFilletR1R2 |
| The same that MakeFillet but with two Fillet Radius R1 and R2. | |
| def | geompy.MakeFillet1D |
| Perform a fillet on the specified edges of the given shape. | |
| def | geompy.MakeFillet2D |
| Perform a fillet on the specified edges/faces of the given shape. | |
| def | geompy.MakeChamferAll |
| Perform a symmetric chamfer on all edges of the given shape. | |
| def | geompy.MakeChamferEdge |
| Perform a chamfer on edges, common to the specified faces, with distance D1 on the Face1. | |
| def | geompy.MakeChamferEdgeAD |
| The Same that MakeChamferEdge but with params theD is chamfer length and theAngle is Angle of chamfer (angle in radians or a name of variable which defines angle in degrees). | |
| def | geompy.MakeChamferFaces |
| Perform a chamfer on all edges of the specified faces, with distance D1 on the first specified face (if several for one edge). | |
| def | geompy.MakeChamferFacesAD |
| The Same that MakeChamferFaces but with params theD is chamfer lenght and theAngle is Angle of chamfer (angle in radians or a name of variable which defines angle in degrees). | |
| def | geompy.MakeChamferEdges |
| Perform a chamfer on edges, with distance D1 on the first specified face (if several for one edge). | |
| def | geompy.MakeChamferEdgesAD |
| The Same that MakeChamferEdges but with params theD is chamfer lenght and theAngle is Angle of chamfer (angle in radians or a name of variable which defines angle in degrees). | |
| def | geompy.MakeChamfer |
| Shortcut to MakeChamferEdge() and MakeChamferFaces(). | |
| def geompy.MakeFilletAll | ( | self, | ||
| theShape, | ||||
| theR | ||||
| ) |
| def geompy.MakeFillet | ( | self, | ||
| theShape, | ||||
| theR, | ||||
| theShapeType, | ||||
| theListShapes | ||||
| ) |
Perform a fillet on the specified edges/faces of the given shape.
| theShape | Shape, to perform fillet on. | |
| theR | Fillet radius. | |
| theShapeType | Type of shapes in theListShapes. | |
| theListShapes | Global indices of edges/faces to perform fillet on. |
| def geompy.MakeFilletR1R2 | ( | self, | ||
| theShape, | ||||
| theR1, | ||||
| theR2, | ||||
| theShapeType, | ||||
| theListShapes | ||||
| ) |
The same that MakeFillet but with two Fillet Radius R1 and R2.
| def geompy.MakeFillet1D | ( | self, | ||
| theShape, | ||||
| theR, | ||||
| theListOfVertexes | ||||
| ) |
Perform a fillet on the specified edges of the given shape.
| theShape | - Wire Shape to perform fillet on. | |
| theR | - Fillet radius. | |
| theListOfVertexes | Global indices of vertexes to perform fillet on. |
| def geompy.MakeFillet2D | ( | self, | ||
| theShape, | ||||
| theR, | ||||
| theListOfVertexes | ||||
| ) |
Perform a fillet on the specified edges/faces of the given shape.
| theShape | - Face Shape to perform fillet on. | |
| theR | - Fillet radius. | |
| theListOfVertexes | Global indices of vertexes to perform fillet on. |
| def geompy.MakeChamferAll | ( | self, | ||
| theShape, | ||||
| theD | ||||
| ) |
| def geompy.MakeChamferEdge | ( | self, | ||
| theShape, | ||||
| theD1, | ||||
| theD2, | ||||
| theFace1, | ||||
| theFace2 | ||||
| ) |
Perform a chamfer on edges, common to the specified faces, with distance D1 on the Face1.
| theShape | Shape, to perform chamfer on. | |
| theD1 | Chamfer size along theFace1. | |
| theD2 | Chamfer size along theFace2. | |
| theFace1,theFace2 | Global indices of two faces of theShape. |
| def geompy.MakeChamferEdgeAD | ( | self, | ||
| theShape, | ||||
| theD, | ||||
| theAngle, | ||||
| theFace1, | ||||
| theFace2 | ||||
| ) |
The Same that MakeChamferEdge but with params theD is chamfer length and theAngle is Angle of chamfer (angle in radians or a name of variable which defines angle in degrees).
| def geompy.MakeChamferFaces | ( | self, | ||
| theShape, | ||||
| theD1, | ||||
| theD2, | ||||
| theFaces | ||||
| ) |
Perform a chamfer on all edges of the specified faces, with distance D1 on the first specified face (if several for one edge).
| theShape | Shape, to perform chamfer on. | |
| theD1 | Chamfer size along face from theFaces. If both faces, connected to the edge, are in theFaces, theD1 will be get along face, which is nearer to theFaces beginning. | |
| theD2 | Chamfer size along another of two faces, connected to the edge. | |
| theFaces | Sequence of global indices of faces of theShape. |
| def geompy.MakeChamferFacesAD | ( | self, | ||
| theShape, | ||||
| theD, | ||||
| theAngle, | ||||
| theFaces | ||||
| ) |
The Same that MakeChamferFaces but with params theD is chamfer lenght and theAngle is Angle of chamfer (angle in radians or a name of variable which defines angle in degrees).
| def geompy.MakeChamferEdges | ( | self, | ||
| theShape, | ||||
| theD1, | ||||
| theD2, | ||||
| theEdges | ||||
| ) |
Perform a chamfer on edges, with distance D1 on the first specified face (if several for one edge).
| theShape | Shape, to perform chamfer on. | |
| theD1,theD2 | Chamfer size | |
| theEdges | Sequence of edges of theShape. |
| def geompy.MakeChamferEdgesAD | ( | self, | ||
| theShape, | ||||
| theD, | ||||
| theAngle, | ||||
| theEdges | ||||
| ) |
The Same that MakeChamferEdges but with params theD is chamfer lenght and theAngle is Angle of chamfer (angle in radians or a name of variable which defines angle in degrees).
| def geompy.MakeChamfer | ( | self, | ||
| aShape, | ||||
| d1, | ||||
| d2, | ||||
| aShapeType, | ||||
| ListShape | ||||
| ) |
Shortcut to MakeChamferEdge() and MakeChamferFaces().