add_triangle method

add_triangle(self, a, b, c)

Add a new triangle


def add_triangle(self, a, b, c):
    ...
ParameterTypeDescription
aintThe index of first vertex
bintThe index of second vertex
cintThe index of third vertex

See Also