00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025 #ifndef __GD_PrimType_h__
00026 #define __GD_PrimType_h__
00027
00028 #include <GB/GB_Defines.h>
00029
00030
00031
00032 #define GDFACE 0x0000000f
00033 #define GDPRIMPOLY 0x00000001 // Polygon
00034 #define GDPRIMPOLYN "Poly"
00035 #define GDPRIMNURBCURVE 0x00000002 // NURB Curve
00036 #define GDPRIMNURBCURVEN "NURBCurve"
00037 #define GDPRIMBEZCURVE 0x00000004 // Rational Bezier Curve
00038 #define GDPRIMBEZCURVEN "BezierCurve"
00039
00040 #define GDCURVE (GDPRIMNURBCURVE|GDPRIMBEZCURVE)
00041
00042 #define GDPRIMALL GBPRIMALL // All primitive types
00043
00044 #endif