Polygon Crucher SDK - Documentation
Documentation
Loading...
Searching...
No Matches
VCFace.h
Go to the documentation of this file.
1//! @file VCFace.h: interface for the CUVWFace class.
2//! @brief CVCFace is a face that refers to a vertex color in a CVCPointList
3//!
4//////////////////////////////////////////////////////////////////////
5
6#if !defined(AFX_VCFACE_H__87AE9F03_44D4_11D3_A382_B19716B5FB20__INCLUDED_)
7#define AFX_VCFACE_H__87AE9F03_44D4_11D3_A382_B19716B5FB20__INCLUDED_
8
9#ifdef _MSC_VER
10#pragma once
11#endif // _MSC_VER
12
13#include "Face.h"
14
15BEGIN_MOOTOOLS_NAMESPACE
16
17//! @class CVCFace
18//! @brief CVCFace is a face which indexes refer to a color point stored in a CVCPointList
19class DLL_3DFUNCTION CVCFace : public CFace
20{
21 friend CVCFaceList;
22public:
23};
24
25END_MOOTOOLS_NAMESPACE
26
27#endif // !defined(AFX_VCFACE_H__87AE9F03_44D4_11D3_A382_B19716B5FB20__INCLUDED_)
A CFace contains the information related to a given face in a CFaceList.
Definition Face.h:97
CVCFace is a face which indexes refer to a color point stored in a CVCPointList.
Definition VCFace.h:20
CVCFaceList is a CFaceList that contains CVCFace. It usually belongs to a CVCChannel.
Definition VCFaceList.h:21