NAME
DtShapeGetVerticesAnimated - Get a list of vertex indices
that have animation applied to them for a given shape.
SYNOPSIS
#include <Dt.h>
int DtShapeGetVerticesAnimated( int shapeID, int *count, int **vertices )
DESCRIPTION
DtShapeGetVerticesAnimated() returns a list of vertex
indices for the given shapeID. The number of vertices is
returned in count. A pointer to a list of the indices
is placed in the variable pointed to by vertices.
It is the responsibility for the caller to deallocate the memory
using the call: delete [] vertices. These indices
refer to vertices stored in the list returned from
DtShapeGetVertices or can be used to access a vertex
directly using DtShapeGetVertex.
DIAGNOSTICS
DtShapeGetVerticesAnimated() returns one on success and zero on
failure.
FILES
Link with -lDtOMio