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 * Berj Bannayan 00008 * Side Effects Software Inc. 00009 * 477 Richmond St. West 00010 * Toronto, Ontario, M5V 2M5 00011 * Canada 00012 * 416-504-9876 00013 * 00014 * NAME: GU_Grid.h 00015 * 00016 * COMMENTS: 00017 * 00018 */ 00019 00020 #ifndef __GU_GRID__ 00021 #define __GU_GRID__ 00022 00023 #include "GU_API.h" 00024 #include "GU_Detail.h" 00025 00026 class GU_API GU_GridParms { 00027 public: 00028 GU_GridParms(); 00029 00030 int rows, cols; 00031 float xsize, ysize; 00032 float xcenter, ycenter, zcenter; 00033 GU_OrientationType plane; 00034 GEO_SurfaceType type; 00035 int interpEndsU, interpEndsV; 00036 int orderU, orderV; 00037 }; 00038 00039 #endif
1.5.9