fmeobjects.FMETriangleStrip.appendPointsXYZ

FMETriangleStrip.appendPointsXYZ()

appendPointXYZ(x, y, z)

appendPointsXYZ(points)

Appends coordinates to the end of the coordinate list that defines the triangle strip. This operation effectively appends new triangles to the triangle strip. 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