00001 /* 00002 * PROPRIETARY INFORMATION. This software is proprietary to 00003 * Side Effects Software Inc., and is not to be reproduced, 00004 * transmitted, or disclosed in any way without written permission. 00005 * 00006 * Produced by: 00007 * Mark Elendt 00008 * Side Effects 00009 * 477 Richmond Street West 00010 * Toronto, Ontario 00011 * Canada M5V 3E7 00012 * 416-504-9876 00013 * 00014 * NAME: GU library (C++) 00015 * 00016 * COMMENTS: Superquadric creation 00017 * 00018 */ 00019 00020 #ifndef __GU_SuperQuad_h__ 00021 #define __GU_SuperQuad_h__ 00022 00023 #include "GU_API.h" 00024 #include <UT/UT_Matrix4.h> 00025 #include <GEO/GEO_SurfaceType.h> 00026 00027 class GU_API GU_SuperQuadParms { 00028 public: 00029 GU_SuperQuadParms(); 00030 00031 UT_Matrix4 xform; // Quadric transform 00032 int rows, cols; // For mesh 00033 float xyexp, zexp; 00034 GEO_SurfaceType type; 00035 unsigned doPolys; // Make polys instead of mesh 00036 int uniquePoles; 00037 }; 00038 00039 #endif
1.5.9