00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019 #ifndef __GU_UVProjectGeom_h__
00020 #define __GU_UVProjectGeom_h__
00021
00022 #include "GU_API.h"
00023 class GU_Detail;
00024 class UT_Matrix4;
00025
00026 class GU_API GU_UVProjectGeom
00027 {
00028 public:
00029 GU_UVProjectGeom();
00030 ~GU_UVProjectGeom();
00031
00032 static void buildOrtho(GU_Detail &gdp);
00033 static void buildPolar(GU_Detail &gdp);
00034 static void buildCylindrical(GU_Detail &gdp);
00035 static void buildToroidal(GU_Detail &gdp, float innerrad);
00036 static void buildPlasticWrap(GU_Detail &gdp);
00037 };
00038
00039 #endif