Source code of Windows XP (NT5)
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.
|
|
/******************************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);
|