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