Polygon Crucher SDK - Documentation
Documentation
Loading...
Searching...
No Matches
UVWFace.h
Go to the documentation of this file.
1//! @file UVWFace.h: interface for the CUVWFace class.
2//! @brief CUVWFace is a face that refers to an UV in a CUVWPointList
3//!
4//////////////////////////////////////////////////////////////////////
5
6#if !defined(AFX_UVWFACE_H__87AE9F03_44D4_11D3_A382_B19716B5FB20__INCLUDED_)
7#define AFX_UVWFACE_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 CUVWFace
18//! @brief CUVWFace is a face which indexes refer to an UVW point stored in a CUVWPointList
19class DLL_3DFUNCTION CUVWFace : public CFace
20{
21 friend CUVWFaceList;
22
23public:
24};
25
26END_MOOTOOLS_NAMESPACE
27
28#endif // !defined(AFX_UVWFACE_H__87AE9F03_44D4_11D3_A382_B19716B5FB20__INCLUDED_)
A CFace contains the information related to a given face in a CFaceList.
Definition Face.h:97
CUVWFace is a face which indexes refer to an UVW point stored in a CUVWPointList.
Definition UVWFace.h:20
CUVWFaceList is a CFaceList that contains CUVWFace. It usually belongs to a CUVWChannel.
Definition UVWFaceList.h:21