Modules | |
| Check and Improve | |
Functions | |
| def | geompy.MakeQuad |
| Create a quadrangle face from four edges. | |
| def | geompy.MakeQuad2Edges |
| Create a quadrangle face on two edges. | |
| def | geompy.MakeQuad4Vertices |
| Create a quadrangle face with specified corners. | |
| def | geompy.MakeHexa |
| Create a hexahedral solid, bounded by the six given faces. | |
| def | geompy.MakeHexa2Faces |
| Create a hexahedral solid between two given faces. | |
| def geompy.MakeQuad | ( | self, | |
| E1, | |||
| E2, | |||
| E3, | |||
| E4 | |||
| ) |
Order of Edges is not important. It is not necessary that edges share the same vertex.
| E1,E2,E3,E4 | Edges for the face bound. |
Example
| def geompy.MakeQuad2Edges | ( | self, | |
| E1, | |||
| E2 | |||
| ) |
The missing edges will be built by creating the shortest ones.
| E1,E2 | Two opposite edges for the face. |
Example
| def geompy.MakeQuad4Vertices | ( | self, | |
| V1, | |||
| V2, | |||
| V3, | |||
| V4 | |||
| ) |
The missing edges will be built by creating the shortest ones.
| V1,V2,V3,V4 | Corner vertices for the face. |
Example 1
Example 2
| def geompy.MakeHexa | ( | self, | |
| F1, | |||
| F2, | |||
| F3, | |||
| F4, | |||
| F5, | |||
| F6 | |||
| ) |
Order of faces is not important. It is not necessary that Faces share the same edge.
| F1,F2,F3,F4,F5,F6 | Faces for the hexahedral solid. |
Example 1
Example 2
| def geompy.MakeHexa2Faces | ( | self, | |
| F1, | |||
| F2 | |||
| ) |
The missing faces will be built by creating the smallest ones.
| F1,F2 | Two opposite faces for the hexahedral solid. |
Example 1
Example 2