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 * Jeff Lait 00008 * Side Effects 00009 * 477 Richmond Street West 00010 * Toronto, Ontario 00011 * Canada M5V 3E7 00012 * 416-504-9876 00013 * 00014 * NAME: stitched polygons (C++) 00015 * 00016 * COMMENTS: 00017 */ 00018 00019 #ifndef __GQ_Stitch_h__ 00020 #define __GQ_Stitch_h__ 00021 00022 #include "GQ_API.h" 00023 class GB_PointGroup; 00024 00025 class GQ_API GQ_StitchParms 00026 { 00027 public: 00028 GQ_StitchParms(); 00029 ~GQ_StitchParms(); 00030 00031 const GB_PointGroup *corners; 00032 float tol3d; 00033 int clamp; 00034 int consolidate; 00035 int findcorners; 00036 float angle; 00037 }; 00038 00039 00040 #endif 00041 00042
1.5.9