Q3Triangle_SetVertexPosition
You can use theQ3Triangle_SetVertexPositionfunction to set the position of a vertex of a triangle.
TQ3Status Q3Triangle_SetVertexPosition ( TQ3GeometryObject triangle, unsigned long index, const TQ3Point3D *point);
triangle- A triangle.
index- An index into the
verticesarray of the specified triangle. This parameter should have the value 0, 1, or 2.point- The desired position of the specified vertex.
DESCRIPTION
TheQ3Triangle_SetVertexPositionfunction sets the position of the vertex having the index specified by theindexparameter in theverticesarray of the triangle specified by thetriangleparameter to that specified in thepointparameter.