NAME
          DtShapeGetNormal - Get a normal for the given shape and
          normal index.


     SYNOPSIS
          #include <Dt.h>


          int  DtShapeGetNormal( int shapeID, int index, DtVec3f *normal )


     DESCRIPTION
          DtShapeGetNormal() returns a normal for the shape indicated
          by the given shapeID and index. The noraml is returned via
          the pointer to the vertex parameter.  C programmers can
          access the components of the vertex vector as though it were
          a simple structure as follows:

                    typedef struct DtVec3f { float vec[3];};

                    DtVec3f norm;
                    x = norm.vec[0];
                    y = norm.vec[1];
                    z = norm.vec[2];



     DIAGNOSTICS
          DtShapeGetNormal() returns one on success and zero on
          failure.


     FILES
          Link with -lDtOMio