|
Functions | |
| def | smeshDC::Mesh.MoveClosestNodeToPoint |
| Finds the node closest to a point and moves it to a point location. | |
| def | smeshDC::Mesh.FindNodeClosestTo |
| Finds the node closest to a point. | |
| def | smeshDC::Mesh.FindElementsByPoint |
| Finds the elements where a point lays IN or ON. | |
| def | smeshDC::Mesh.MeshToPassThroughAPoint |
| Finds the node closest to a point and moves it to a point location. | |
| def smeshDC.Mesh.FindElementsByPoint | ( | self, | |
| x, | |||
| y, | |||
| z, | |||
elementType = SMESH.ALL |
|||
| ) | [inherited] |
Finds the elements where a point lays IN or ON.
| x | the X coordinate of a point |
| y | the Y coordinate of a point |
| z | the Z coordinate of a point |
| elementType | type of elements to find (SMESH.ALL type means elements of any type excluding nodes and 0D elements) |
Definition at line 2701 of file smeshDC.py.
| def smeshDC.Mesh.FindNodeClosestTo | ( | self, | |
| x, | |||
| y, | |||
| z | |||
| ) | [inherited] |
Finds the node closest to a point.
| x | the X coordinate of a point |
| y | the Y coordinate of a point |
| z | the Z coordinate of a point |
Definition at line 2688 of file smeshDC.py.
| def smeshDC.Mesh.MeshToPassThroughAPoint | ( | self, | |
| x, | |||
| y, | |||
| z | |||
| ) | [inherited] |
Finds the node closest to a point and moves it to a point location.
| x | the X coordinate of a point |
| y | the Y coordinate of a point |
| z | the Z coordinate of a point |
Definition at line 2716 of file smeshDC.py.
| def smeshDC.Mesh.MoveClosestNodeToPoint | ( | self, | |
| x, | |||
| y, | |||
| z, | |||
| NodeID | |||
| ) | [inherited] |
Finds the node closest to a point and moves it to a point location.
| x | the X coordinate of a point |
| y | the Y coordinate of a point |
| z | the Z coordinate of a point |
| NodeID | if specified (>0), the node with this ID is moved, otherwise, the node closest to point (x,y,z) is moved |
Definition at line 2677 of file smeshDC.py.