MeshCurvilinearTriangle
A curvilinear triangle in 3D space defined by three corner points and three midpoints halfway along each side. Exists as part of a mesh.
Example
app = pf.GetApplication() app:NewProject() app:OpenFile(FEKO_HOME.."/shared/Resources/Automation/RCS_of_a_Curvilinear_Dielectric_Sphere.fek") sConf = app.Models["RCS_of_a_Curvilinear_Dielectric_Sphere"].Configurations[1] mesh = sConf.Mesh -- Get the vertices of a 'MeshCurvilinearTriangle' vertices = mesh.CurvilinearTriangleFaces[1].CurvilinearTriangles[1].VertexIndices
Property List
- Type
- The object type string. (Read only string)
- VertexIndices
- Returns a list of the vertex indices of the triangle. The first three [1 to 3] indices are corner indices. The next three indices are midpoints. Index 4 references the midpoint between the points referenced by indices 1 and 2, index 5 is between 2 and 3, while index 6 is between 3 and 1. (Read only List of number)
Property Details
- Type
- The object type string.
- Type
- string
- Access
- Read only
- VertexIndices
- Returns a list of the vertex indices of the triangle. The first three [1 to 3] indices are corner indices. The next three indices are midpoints. Index 4 references the midpoint between the points referenced by indices 1 and 2, index 5 is between 2 and 3, while index 6 is between 3 and 1.
- Access
- Read only