Functions | |
def | QuadToTri |
Splits quadrangles into triangles. | |
def | QuadToTriObject |
Splits quadrangles into triangles. | |
def | SplitQuad |
Splits quadrangles into triangles. | |
def | SplitQuadObject |
Splits quadrangles into triangles. | |
def | BestSplit |
Finds a better splitting of the given quadrangle. | |
def | SplitVolumesIntoTetra |
Splits volumic elements into tetrahedrons. |
def QuadToTri | ( | self, | |
IDsOfElements, | |||
theCriterion | |||
) |
Splits quadrangles into triangles.
IDsOfElements | the faces to be splitted. |
theCriterion | FT_...; used to choose a diagonal for splitting. |
References Mesh.GetElementsId().
def QuadToTriObject | ( | self, | |
theObject, | |||
theCriterion | |||
) |
Splits quadrangles into triangles.
theObject | the object from which the list of elements is taken, this is mesh, submesh or group |
theCriterion | FT_...; used to choose a diagonal for splitting. |
def SplitQuad | ( | self, | |
IDsOfElements, | |||
Diag13 | |||
) |
Splits quadrangles into triangles.
IDsOfElements | the faces to be splitted |
Diag13 | is used to choose a diagonal for splitting. |
References Mesh.GetElementsId().
def SplitQuadObject | ( | self, | |
theObject, | |||
Diag13 | |||
) |
Splits quadrangles into triangles.
theObject | the object from which the list of elements is taken, this is mesh, submesh or group |
Diag13 | is used to choose a diagonal for splitting. |
def BestSplit | ( | self, | |
IDOfQuad, | |||
theCriterion | |||
) |
Finds a better splitting of the given quadrangle.
IDOfQuad | the ID of the quadrangle to be splitted. |
theCriterion | FT_...; a criterion to choose a diagonal for splitting. |
def SplitVolumesIntoTetra | ( | self, | |
elemIDs, | |||
method = Hex_5Tet |
|||
) |
Splits volumic elements into tetrahedrons.
elemIDs | either list of elements or mesh or group or submesh |
method | flags passing splitting method: Hex_5Tet, Hex_6Tet, Hex_24Tet Hex_5Tet - split the hexahedron into 5 tetrahedrons, etc |