fmeobjects.FMETriangleFan.appendPointsXYZ

FMETriangleFan.appendPointsXYZ()

appendPointXYZ(x, y, z)

appendPointsXYZ(points)

Appends coordinates to the end of the coordinate list that defines the triangle fan. This operation effectively appends new triangles to the triangle fan. After the append operation, coordinates at indices 0, i + 1, and i + 2 define the ith triangle.

Parameters:

points (list[tuple[float]]) – The list of points to be added. The points are represented as (x, y, z) tuples.

Return type:

None