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