Defines the degree of the variables in the equation that describes a curve.
typedef enum D3DDEGREETYPE
{
D3DDEGREE_LINEAR = 1,
D3DDEGREE_QUADRATIC = 2,
D3DDEGREE_CUBIC = 3,
D3DDEGREE_QUINTIC = 5,
D3DCULL_FORCE_DWORD = 0x7fffffff,
} D3DDEGREETYPE, *LPD3DDEGREETYPE;
The values in this enumeration are used to describe the curves used by rectangle and triangle patches. For more information, see D3DRS_CULLMODE.