mirror of https://github.com/tongzx/nt5src
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
575 B
15 lines
575 B
/******************************Module*Header*******************************\
|
|
* Module Name: mesh.h
|
|
*
|
|
* Declaration of the mesh routines.
|
|
*
|
|
* Copyright (c) 1994 Microsoft Corporation
|
|
*
|
|
\**************************************************************************/
|
|
|
|
extern void newMesh(MESH *mesh, int numFaces, int numPts);
|
|
extern void delMesh(MESH *mesh);
|
|
extern void revolveSurface(MESH *mesh, POINT3D *curve, int steps);
|
|
extern void updateObject(MESH *mesh, BOOL bSmooth);
|
|
extern void updateObject2(MESH *mesh, BOOL bSmooth);
|
|
extern void MakeList(GLuint listID, MESH *mesh);
|